| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2022, Andreas Kling <kling@serenityos.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <AK/HashMap.h>
 | 
					
						
							| 
									
										
										
										
											2022-09-03 19:44:37 +02:00
										 |  |  | #include <LibWeb/Bindings/PlatformObject.h>
 | 
					
						
							| 
									
										
										
										
											2022-09-25 17:03:42 +01:00
										 |  |  | #include <LibWeb/WebIDL/ExceptionOr.h>
 | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::HTML { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-03 19:44:37 +02:00
										 |  |  | class Storage : public Bindings::PlatformObject { | 
					
						
							|  |  |  |     WEB_PLATFORM_OBJECT(Storage, Bindings::PlatformObject); | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-03 19:44:37 +02:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-09-25 16:38:21 -06:00
										 |  |  |     static JS::NonnullGCPtr<Storage> create(JS::Realm&); | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  |     ~Storage(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     size_t length() const; | 
					
						
							|  |  |  |     String key(size_t index); | 
					
						
							|  |  |  |     String get_item(String const& key) const; | 
					
						
							| 
									
										
										
										
											2022-09-25 17:03:42 +01:00
										 |  |  |     WebIDL::ExceptionOr<void> set_item(String const& key, String const& value); | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  |     void remove_item(String const& key); | 
					
						
							|  |  |  |     void clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Vector<String> supported_property_names() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-02 00:14:04 +03:00
										 |  |  |     auto const& map() const { return m_map; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-08 19:50:14 +01:00
										 |  |  |     void dump() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-09-25 16:38:21 -06:00
										 |  |  |     explicit Storage(JS::Realm&); | 
					
						
							| 
									
										
										
										
											2022-02-08 19:38:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     void reorder(); | 
					
						
							|  |  |  |     void broadcast(String const& key, String const& old_value, String const& new_value); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OrderedHashMap<String, String> m_map; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |