/* * This file is a part of Winix * and is distributed under the 2-Clause BSD licence. * Author: Tomasz Sowa */ /* * Copyright (c) 2011-2014, Tomasz Sowa * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * */ #ifndef headerfile_winix_templates_patterns #define headerfile_winix_templates_patterns #include #include "locale.h" #include "localefilter.h" #include "misc.h" namespace Winix { class Patterns { public: Patterns(); void SetDeleteWhiteItems(bool del_white); void SetDirectories(const std::wstring & tmpl_dir, const std::wstring & tmpl_dir_def); /* setting locale and locale_filter this method should always be called on the beginning */ void SetLocale(Locale * plocale); void SetLocaleFilter(LocaleFilter * plocale_filter); /* setting ezc functions you don't have to call this method (in such a case functions will be search with O(log) by the Generator) */ void SetEzcFunctions(TemplatesFunctions::EzcFun * fun); /* adding a new pattern and returning its index if the pattern already exists the method returns its index only and increment internal reference counter for such pattern if read_pattern is false then the pattern is not read, it will be read when you call Reload() method */ size_t Add(const wchar_t * file_name, bool read_pattern = true); size_t Add(const std::wstring & file_name, bool read_pattern = true); /* returning a pattern (if exists) if the pattern does not exist return a null pointer */ Ezc::Pattern * Get(size_t index, size_t lang_id); /* returning a file name of a pattern or an empty string if the pattern does not exist */ const std::wstring & GetFileName(size_t index); /* deleting all patterns */ void Clear(); /* decrementing internal reference counter and if zero then deletes the pattern */ void Erase(size_t index); /* reloading all patterns */ void Reload(); /* returning how many patterns do we have remember that we have one pattern for each language so the real number of patterns is: locale->Size() * Size() */ size_t Size(); private: bool del_white_items; std::wstring templates_dir, templates_dir_def; Locale * locale; LocaleFilter * locale_filter; // can be null (not set directly) TemplatesFunctions::EzcFun * ezc_fun; struct Template { bool to_delete; std::wstring file_name; size_t references; // starts from 1 (zero means the pattern was deleted) // (we do not delete the Template immediately because // indices would be invalidated) std::vector patterns; // table[through lang index] }; typedef std::vector