| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /*
- * 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-2023 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 "PluginRegistry.h"
- #include "../../Include/RmlUi/Core/Plugin.h"
- #include "ControlledLifetimeResource.h"
- #include <algorithm>
- namespace Rml {
- struct PluginVectors {
- Vector<Plugin*> basic;
- Vector<Plugin*> document;
- Vector<Plugin*> element;
- };
- static ControlledLifetimeResource<PluginVectors> plugin_vectors;
- static void EnsurePluginVectorsInitialized()
- {
- if (!plugin_vectors)
- {
- plugin_vectors.Initialize();
- }
- }
- void PluginRegistry::RegisterPlugin(Plugin* plugin)
- {
- EnsurePluginVectorsInitialized();
- int event_classes = plugin->GetEventClasses();
- if (event_classes & Plugin::EVT_BASIC)
- plugin_vectors->basic.push_back(plugin);
- if (event_classes & Plugin::EVT_DOCUMENT)
- plugin_vectors->document.push_back(plugin);
- if (event_classes & Plugin::EVT_ELEMENT)
- plugin_vectors->element.push_back(plugin);
- }
- void PluginRegistry::UnregisterPlugin(Plugin* plugin)
- {
- auto erase_value = [](Vector<Plugin*>& container, Plugin* value) {
- container.erase(std::remove(container.begin(), container.end(), value), container.end());
- };
- int event_classes = plugin->GetEventClasses();
- if (event_classes & Plugin::EVT_BASIC)
- erase_value(plugin_vectors->basic, plugin);
- if (event_classes & Plugin::EVT_DOCUMENT)
- erase_value(plugin_vectors->document, plugin);
- if (event_classes & Plugin::EVT_ELEMENT)
- erase_value(plugin_vectors->element, plugin);
- }
- void PluginRegistry::NotifyInitialise()
- {
- EnsurePluginVectorsInitialized();
- for (Plugin* plugin : plugin_vectors->basic)
- plugin->OnInitialise();
- }
- void PluginRegistry::NotifyShutdown()
- {
- while (!plugin_vectors->basic.empty())
- {
- Plugin* plugin = plugin_vectors->basic.back();
- PluginRegistry::UnregisterPlugin(plugin);
- plugin->OnShutdown();
- }
- plugin_vectors.Shutdown();
- }
- void PluginRegistry::NotifyContextCreate(Context* context)
- {
- for (Plugin* plugin : plugin_vectors->basic)
- plugin->OnContextCreate(context);
- }
- void PluginRegistry::NotifyContextDestroy(Context* context)
- {
- for (Plugin* plugin : plugin_vectors->basic)
- plugin->OnContextDestroy(context);
- }
- void PluginRegistry::NotifyDocumentOpen(Context* context, const String& document_path)
- {
- for (Plugin* plugin : plugin_vectors->document)
- plugin->OnDocumentOpen(context, document_path);
- }
- void PluginRegistry::NotifyDocumentLoad(ElementDocument* document)
- {
- for (Plugin* plugin : plugin_vectors->document)
- plugin->OnDocumentLoad(document);
- }
- void PluginRegistry::NotifyDocumentUnload(ElementDocument* document)
- {
- for (Plugin* plugin : plugin_vectors->document)
- plugin->OnDocumentUnload(document);
- }
- void PluginRegistry::NotifyElementCreate(Element* element)
- {
- for (Plugin* plugin : plugin_vectors->element)
- plugin->OnElementCreate(element);
- }
- void PluginRegistry::NotifyElementDestroy(Element* element)
- {
- for (Plugin* plugin : plugin_vectors->element)
- plugin->OnElementDestroy(element);
- }
- } // namespace Rml
|