| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2021-04-28 22:46:44 +02:00
										 |  |  |  * Copyright (c) 2020-2021, the SerenityOS developers. | 
					
						
							| 
									
										
										
										
											2021-06-29 17:03:25 +01:00
										 |  |  |  * Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com> | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2021-04-22 01:24:48 -07:00
										 |  |  |  * SPDX-License-Identifier: BSD-2-Clause | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Parser/DeclarationOrAtRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Parser/StyleBlockRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Parser/StyleComponentValueRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Parser/StyleDeclarationRule.h>
 | 
					
						
							|  |  |  | #include <LibWeb/CSS/Parser/StyleFunctionRule.h>
 | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  | #include <LibWeb/CSS/Parser/StyleRule.h>
 | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace Web::CSS { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  | DeclarationOrAtRule::DeclarationOrAtRule(RefPtr<StyleRule> at) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |     : m_type(DeclarationType::At) | 
					
						
							|  |  |  |     , m_at(move(at)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | DeclarationOrAtRule::DeclarationOrAtRule(StyleDeclarationRule declaration) | 
					
						
							|  |  |  |     : m_type(DeclarationType::Declaration) | 
					
						
							|  |  |  |     , m_declaration(move(declaration)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | DeclarationOrAtRule::~DeclarationOrAtRule() { } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  | StyleRule::StyleRule(StyleRule::Type type) | 
					
						
							|  |  |  |     : m_type(type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | StyleRule::~StyleRule() { } | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | StyleBlockRule::StyleBlockRule() { } | 
					
						
							|  |  |  | StyleBlockRule::~StyleBlockRule() { } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 14:54:19 +01:00
										 |  |  | StyleComponentValueRule::StyleComponentValueRule(Token token) | 
					
						
							|  |  |  |     : m_type(StyleComponentValueRule::ComponentType::Token) | 
					
						
							|  |  |  |     , m_token(token) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | StyleComponentValueRule::StyleComponentValueRule(NonnullRefPtr<StyleFunctionRule> function) | 
					
						
							|  |  |  |     : m_type(StyleComponentValueRule::ComponentType::Function) | 
					
						
							|  |  |  |     , m_function(function) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | StyleComponentValueRule::StyleComponentValueRule(NonnullRefPtr<StyleBlockRule> block) | 
					
						
							|  |  |  |     : m_type(StyleComponentValueRule::ComponentType::Block) | 
					
						
							|  |  |  |     , m_block(block) | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | StyleComponentValueRule::~StyleComponentValueRule() { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | StyleDeclarationRule::StyleDeclarationRule() { } | 
					
						
							|  |  |  | StyleDeclarationRule::~StyleDeclarationRule() { } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-01 14:13:48 +01:00
										 |  |  | StyleFunctionRule::StyleFunctionRule(String name) | 
					
						
							|  |  |  |     : m_name(name) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | StyleFunctionRule::~StyleFunctionRule() { } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class SeparatorType, class CollectionType> | 
					
						
							|  |  |  | void append_with_to_string(StringBuilder& builder, SeparatorType& separator, CollectionType& collection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     bool first = true; | 
					
						
							|  |  |  |     for (auto& item : collection) { | 
					
						
							|  |  |  |         if (first) | 
					
						
							|  |  |  |             first = false; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             builder.append(separator); | 
					
						
							| 
									
										
										
										
											2021-07-07 21:29:24 +01:00
										 |  |  |         builder.append(item.to_debug_string()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template<class SeparatorType, class CollectionType> | 
					
						
							|  |  |  | void append_raw(StringBuilder& builder, SeparatorType& separator, CollectionType& collection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     bool first = true; | 
					
						
							|  |  |  |     for (auto& item : collection) { | 
					
						
							|  |  |  |         if (first) | 
					
						
							|  |  |  |             first = false; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             builder.append(separator); | 
					
						
							|  |  |  |         builder.append(item); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String DeclarationOrAtRule::to_string() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  |     switch (m_type) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case DeclarationType::At: | 
					
						
							| 
									
										
										
										
											2021-07-01 16:49:33 +01:00
										 |  |  |         builder.append(m_at->to_string()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case DeclarationType::Declaration: | 
					
						
							|  |  |  |         builder.append(m_declaration.to_string()); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  | String StyleRule::to_string() const | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  |     if (m_type == Type::At) { | 
					
						
							|  |  |  |         builder.append("@"); | 
					
						
							|  |  |  |         builder.append(m_name); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-29 17:03:25 +01:00
										 |  |  |     append_with_to_string(builder, " ", m_prelude); | 
					
						
							| 
									
										
										
										
											2021-07-03 13:36:33 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (m_block) | 
					
						
							|  |  |  |         builder.append(m_block->to_string()); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         builder.append(';'); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String StyleBlockRule::to_string() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     builder.append(m_token.bracket_string()); | 
					
						
							| 
									
										
										
										
											2021-07-01 14:54:27 +01:00
										 |  |  |     append_with_to_string(builder, ", ", m_values); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |     builder.append(m_token.bracket_mirror_string()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-07 21:29:24 +01:00
										 |  |  | String StyleComponentValueRule::to_debug_string() const | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (m_type) { | 
					
						
							|  |  |  |     case ComponentType::Token: | 
					
						
							| 
									
										
										
										
											2021-07-07 21:29:24 +01:00
										 |  |  |         builder.append("Token: "); | 
					
						
							|  |  |  |         builder.append(m_token.to_debug_string()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case ComponentType::Function: | 
					
						
							| 
									
										
										
										
											2021-07-07 21:29:24 +01:00
										 |  |  |         builder.append("Function: "); | 
					
						
							| 
									
										
										
										
											2021-07-01 14:13:48 +01:00
										 |  |  |         builder.append(m_function->to_string()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case ComponentType::Block: | 
					
						
							| 
									
										
										
										
											2021-07-07 21:29:24 +01:00
										 |  |  |         builder.append("Block: "); | 
					
						
							| 
									
										
										
										
											2021-07-01 14:13:48 +01:00
										 |  |  |         builder.append(m_block->to_string()); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String StyleDeclarationRule::to_string() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     builder.append(m_name); | 
					
						
							|  |  |  |     builder.append(": "); | 
					
						
							|  |  |  |     append_with_to_string(builder, " ", m_values); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_important) | 
					
						
							|  |  |  |         builder.append(" !important"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String StyleFunctionRule::to_string() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     StringBuilder builder; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     builder.append(m_name); | 
					
						
							|  |  |  |     builder.append("("); | 
					
						
							| 
									
										
										
										
											2021-07-08 12:33:49 +01:00
										 |  |  |     append_with_to_string(builder, ", ", m_values); | 
					
						
							| 
									
										
										
										
											2021-04-29 21:16:28 +02:00
										 |  |  |     builder.append(")"); | 
					
						
							| 
									
										
										
										
											2021-03-09 17:36:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return builder.to_string(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | } |