mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:02:43 +00:00 
			
		
		
		
	 bc301b6f40
			
		
	
	
		bc301b6f40
		
	
	
	
	
		
			
			This is a simple extension of GenericLexer, and is used in more than just LibXML, so let's move it into AK. The move also resolves a FIXME, which is removed in this commit.
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/ByteString.h>
 | |
| #include <AK/GenericLexer.h>
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/Variant.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <LibXML/FundamentalTypes.h>
 | |
| 
 | |
| namespace XML {
 | |
| 
 | |
| struct Attribute {
 | |
|     Name name;
 | |
|     ByteString value;
 | |
| };
 | |
| 
 | |
| struct Node {
 | |
|     struct Text {
 | |
|         StringBuilder builder;
 | |
|     };
 | |
|     struct Comment {
 | |
|         ByteString text;
 | |
|     };
 | |
|     struct Element {
 | |
|         Name name;
 | |
|         HashMap<Name, ByteString> attributes;
 | |
|         Vector<NonnullOwnPtr<Node>> children;
 | |
|     };
 | |
| 
 | |
|     bool operator==(Node const&) const;
 | |
| 
 | |
|     LineTrackingLexer::Position offset;
 | |
|     Variant<Text, Comment, Element> content;
 | |
|     Node* parent { nullptr };
 | |
| 
 | |
|     bool is_text() const { return content.has<Text>(); }
 | |
|     Text const& as_text() const { return content.get<Text>(); }
 | |
| 
 | |
|     bool is_comment() const { return content.has<Comment>(); }
 | |
|     Comment const& as_comment() const { return content.get<Comment>(); }
 | |
| 
 | |
|     bool is_element() const { return content.has<Element>(); }
 | |
|     Element const& as_element() const { return content.get<Element>(); }
 | |
| };
 | |
| }
 |