// Copyright (c) 2010, Amar Takhar // // Permission to use, copy, modify, and distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /// @file mru.h /// @brief Public interface for MRU (Most Recently Used) lists. /// @ingroup libaegisub #include #include #include #include #include #include namespace json { class UnknownElement; typedef std::deque Array; } namespace agi { class Options; } namespace agi { DEFINE_BASE_EXCEPTION_NOINNER(MRUError,Exception) DEFINE_SIMPLE_EXCEPTION_NOINNER(MRUErrorInvalidKey, MRUError, "mru/invalid") DEFINE_SIMPLE_EXCEPTION_NOINNER(MRUErrorIndexOutOfRange, MRUError, "mru/invalid") /// @class MRUManager /// @brief Most Recently Used (MRU) list handling /// /// Add() should be called anytime a file is opened, this will either add the /// entry or update it if it already exists. /// /// If a file fails to open, Remove() should be called. /// class MRUManager { public: /// @brief Map for time->value pairs. typedef std::list MRUListMap; /// @brief Constructor /// @param config File to load MRU values from MRUManager(agi::fs::path const& config, std::pair default_config, agi::Options *options = nullptr); template MRUManager(agi::fs::path const& file, const char (&default_config)[N]) : MRUManager(file, std::make_pair(default_config, N - 1)) { } /// Destructor ~MRUManager(); /// @brief Add entry to the list. /// @param key List name /// @param entry Entry to add /// @exception MRUErrorInvalidKey thrown when an invalid key is used. void Add(std::string const& key, agi::fs::path const& entry); /// @brief Remove entry from the list. /// @param key List name /// @param entry Entry to add /// @exception MRUErrorInvalidKey thrown when an invalid key is used. void Remove(std::string const& key, agi::fs::path const& entry); /// @brief Return list /// @param key List name /// @exception MRUErrorInvalidKey thrown when an invalid key is used. const MRUListMap* Get(std::string const& key); /// @brief Return A single entry in a list. /// @param key List name /// @param entry 0-base position of entry /// @exception MRUErrorInvalidKey thrown when an invalid key is used. agi::fs::path const& GetEntry(std::string const& key, const size_t entry); /// Write MRU lists to disk. void Flush(); private: /// Internal name of the config file, set during object construction. const agi::fs::path config_name; /// User preferences object for maximum number of items to list agi::Options *const options; /// @brief Map for MRUListMap values. /// @param std::string Name /// @param MRUListMap instance. typedef std::map MRUMap; /// Internal MRUMap values. MRUMap mru; /// Map from MRU name to option name std::map option_names; void Load(std::string const& key, ::json::Array const& array); void Prune(std::string const& key, MRUListMap& map) const; MRUListMap &Find(std::string const& key); }; } // namespace agi