| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /*
- * This source file is part of RmlUi, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://github.com/mikke89/RmlUi
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- * Copyright (c) 2019 The RmlUi Team, and contributors
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #include "StyleSheetFactory.h"
- #include "../../Include/RmlUi/Core/StyleSheetContainer.h"
- #include "StyleSheetNode.h"
- #include "StreamFile.h"
- #include "StyleSheetNodeSelectorNthChild.h"
- #include "StyleSheetNodeSelectorNthLastChild.h"
- #include "StyleSheetNodeSelectorNthOfType.h"
- #include "StyleSheetNodeSelectorNthLastOfType.h"
- #include "StyleSheetNodeSelectorFirstChild.h"
- #include "StyleSheetNodeSelectorLastChild.h"
- #include "StyleSheetNodeSelectorFirstOfType.h"
- #include "StyleSheetNodeSelectorLastOfType.h"
- #include "StyleSheetNodeSelectorOnlyChild.h"
- #include "StyleSheetNodeSelectorOnlyOfType.h"
- #include "StyleSheetNodeSelectorEmpty.h"
- #include "../../Include/RmlUi/Core/Log.h"
- namespace Rml {
- static UniquePtr<StyleSheetFactory> instance;
- StyleSheetFactory::StyleSheetFactory()
- {}
- StyleSheetFactory::~StyleSheetFactory()
- {}
- bool StyleSheetFactory::Initialise()
- {
- RMLUI_ASSERT(instance == nullptr);
- instance = UniquePtr<StyleSheetFactory>(new StyleSheetFactory);
- instance->selectors["nth-child"] = MakeUnique<StyleSheetNodeSelectorNthChild>();
- instance->selectors["nth-last-child"] = MakeUnique<StyleSheetNodeSelectorNthLastChild>();
- instance->selectors["nth-of-type"] = MakeUnique<StyleSheetNodeSelectorNthOfType>();
- instance->selectors["nth-last-of-type"] = MakeUnique<StyleSheetNodeSelectorNthLastOfType>();
- instance->selectors["first-child"] = MakeUnique<StyleSheetNodeSelectorFirstChild>();
- instance->selectors["last-child"] = MakeUnique<StyleSheetNodeSelectorLastChild>();
- instance->selectors["first-of-type"] = MakeUnique<StyleSheetNodeSelectorFirstOfType>();
- instance->selectors["last-of-type"] = MakeUnique<StyleSheetNodeSelectorLastOfType>();
- instance->selectors["only-child"] = MakeUnique<StyleSheetNodeSelectorOnlyChild>();
- instance->selectors["only-of-type"] = MakeUnique<StyleSheetNodeSelectorOnlyOfType>();
- instance->selectors["empty"] = MakeUnique<StyleSheetNodeSelectorEmpty>();
- return true;
- }
- void StyleSheetFactory::Shutdown()
- {
- instance.reset();
- }
- const StyleSheetContainer* StyleSheetFactory::GetStyleSheetContainer(const String& sheet_name)
- {
- // Look up the sheet definition in the cache
- auto it = instance->stylesheets.find(sheet_name);
- if (it != instance->stylesheets.end())
- return it->second.get();
- // Don't currently have the sheet, attempt to load it
- UniquePtr<const StyleSheetContainer> sheet = instance->LoadStyleSheetContainer(sheet_name);
- if (!sheet)
- return nullptr;
- const StyleSheetContainer* result = sheet.get();
- // Add it to the cache.
- instance->stylesheets[sheet_name] = std::move(sheet);
- return result;
- }
- // Clear the style sheet cache.
- void StyleSheetFactory::ClearStyleSheetCache()
- {
- instance->stylesheets.clear();
- }
- // Returns one of the available node selectors.
- StructuralSelector StyleSheetFactory::GetSelector(const String& name)
- {
- SelectorMap::const_iterator it;
- const size_t parameter_start = name.find('(');
- if (parameter_start == String::npos)
- it = instance->selectors.find(name);
- else
- it = instance->selectors.find(name.substr(0, parameter_start));
- if (it == instance->selectors.end())
- return StructuralSelector(nullptr, 0, 0);
- // Parse the 'a' and 'b' values.
- int a = 1;
- int b = 0;
- const size_t parameter_end = name.find(')', parameter_start + 1);
- if (parameter_start != String::npos &&
- parameter_end != String::npos)
- {
- String parameters = StringUtilities::StripWhitespace(name.substr(parameter_start + 1, parameter_end - (parameter_start + 1)));
- // Check for 'even' or 'odd' first.
- if (parameters == "even")
- {
- a = 2;
- b = 0;
- }
- else if (parameters == "odd")
- {
- a = 2;
- b = 1;
- }
- else
- {
- // Alrighty; we've got an equation in the form of [[+/-]an][(+/-)b]. So, foist up, we split on 'n'.
- const size_t n_index = parameters.find('n');
- if (n_index == String::npos)
- {
- // The equation is 0n + b. So a = 0, and we only have to parse b.
- a = 0;
- b = atoi(parameters.c_str());
- }
- else
- {
- if (n_index == 0)
- a = 1;
- else
- {
- const String a_parameter = parameters.substr(0, n_index);
- if (StringUtilities::StripWhitespace(a_parameter) == "-")
- a = -1;
- else
- a = atoi(a_parameter.c_str());
- }
- size_t pm_index = parameters.find('+', n_index + 1);
- if (pm_index != String::npos)
- b = 1;
- else
- {
- pm_index = parameters.find('-', n_index + 1);
- if (pm_index != String::npos)
- b = -1;
- }
- if (n_index == parameters.size() - 1 || pm_index == String::npos)
- b = 0;
- else
- b = b * atoi(parameters.data() + pm_index + 1);
- }
- }
- }
- return StructuralSelector(it->second.get(), a, b);
- }
- UniquePtr<const StyleSheetContainer> StyleSheetFactory::LoadStyleSheetContainer(const String& sheet)
- {
- UniquePtr<StyleSheetContainer> new_style_sheet;
- // Open stream, construct new sheet and pass the stream into the sheet
- auto stream = MakeUnique<StreamFile>();
- if (stream->Open(sheet))
- {
- new_style_sheet = MakeUnique<StyleSheetContainer>();
- if (!new_style_sheet->LoadStyleSheetContainer(stream.get()))
- {
- new_style_sheet.reset();
- }
- }
- return new_style_sheet;
- }
- } // namespace Rml
|