Rev 1619 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1619 | runge | 1 | /* |
| 2 | * |
||
| 3 | * Copyright (C) 2010 Mattias Runge |
||
| 4 | * |
||
| 5 | * This program is free software; you can redistribute it and/or modify |
||
| 6 | * it under the terms of the GNU General Public License as published by |
||
| 7 | * the Free Software Foundation; either version 2 of the License, or |
||
| 8 | * (at your option) any later version. |
||
| 9 | * |
||
| 10 | * This program is distributed in the hope that it will be useful, |
||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 13 | * GNU General Public License for more details. |
||
| 14 | * |
||
| 15 | * You should have received a copy of the GNU General Public License along |
||
| 16 | * with this program; if not, write to the Free Software Foundation, Inc., |
||
| 17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
||
| 18 | * |
||
| 19 | */ |
||
| 20 | |||
| 21 | #ifndef STORAGE_MANAGER_H |
||
| 22 | #define STORAGE_MANAGER_H |
||
| 23 | |||
| 24 | #include <map> |
||
| 25 | #include <string> |
||
| 26 | #include <boost/shared_ptr.hpp> |
||
| 27 | |||
| 28 | #include "logging/Logger.h" |
||
| 29 | |||
| 30 | #include "Store.h" |
||
| 31 | |||
| 32 | namespace atom { |
||
| 33 | namespace storage { |
||
| 34 | |||
| 35 | class Manager |
||
| 36 | { |
||
| 37 | public: |
||
| 38 | typedef boost::shared_ptr<Manager> Pointer; |
||
| 39 | |||
| 40 | virtual ~Manager(); |
||
| 41 | |||
| 42 | static Pointer Instance(); |
||
| 43 | static void Create(); |
||
| 44 | static void Delete(); |
||
| 45 | |||
| 46 | void SetRootPath(std::string root_path); |
||
| 47 | |||
| 1627 | runge | 48 | void SetStoreFlushPolicy(std::string store_name, Store::FlushPolicy flush_policy); |
| 49 | void FlushStore(std::string store_name); |
||
| 50 | |||
| 1619 | runge | 51 | Store::ParameterList& GetParameters(std::string store_name); |
| 52 | std::string GetParameter(std::string store_name, std::string parameter_name); |
||
| 53 | void SetParameter(std::string store_name, std::string parameter_name, std::string parameter_value); |
||
| 54 | |||
| 55 | private: |
||
| 56 | typedef std::map<std::string, Store::Pointer> StoreList; |
||
| 57 | |||
| 58 | static Pointer instance_; |
||
| 59 | |||
| 60 | logging::Logger LOG; |
||
| 61 | StoreList stores_; |
||
| 62 | std::string root_path_; |
||
| 63 | |||
| 64 | Manager(); |
||
| 65 | }; |
||
| 66 | |||
| 67 | }; // namespace storage |
||
| 68 | }; // namespace atom |
||
| 69 | |||
| 70 | #endif // STORAGE_MANAGER_H |