Add 'commit' method to kv transaction
[archive/platform/core/system/libConfig.git] / src / config / from-kvstore-visitor.hpp
1 /*
2  *  Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Contact: Jan Olszak (j.olszak@samsung.com)
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License
17  */
18
19 /**
20  * @file
21  * @author  Jan Olszak (j.olszak@samsung.com)
22  * @brief   Visitor for loading from KVStore
23  */
24
25 #ifndef CONFIG_FROM_KVSTORE_VISITOR_HPP
26 #define CONFIG_FROM_KVSTORE_VISITOR_HPP
27
28 #include "config/is-visitable.hpp"
29 #include "config/kvstore.hpp"
30
31 namespace config {
32
33 class FromKVStoreVisitor {
34 public:
35     FromKVStoreVisitor(KVStore& store, const std::string& prefix)
36         : mStore(store),
37           mKeyPrefix(prefix)
38     {
39     }
40
41     FromKVStoreVisitor& operator=(const FromKVStoreVisitor&) = delete;
42
43     template<typename T>
44     void visit(const std::string& name, T& value)
45     {
46         getInternal(key(mKeyPrefix, name), value);
47     }
48
49 private:
50     KVStore& mStore;
51     std::string mKeyPrefix;
52
53     FromKVStoreVisitor(const FromKVStoreVisitor& visitor, const std::string& prefix)
54         : mStore(visitor.mStore),
55           mKeyPrefix(prefix)
56     {
57     }
58
59     template<typename T, typename std::enable_if<!isVisitable<T>::value, int>::type = 0>
60     void getInternal(const std::string& name, T& value)
61     {
62         value = mStore.get<T>(name);
63     }
64
65     template<typename T, typename std::enable_if<isVisitable<T>::value, int>::type = 0>
66     void getInternal(const std::string& name, T& value)
67     {
68         FromKVStoreVisitor visitor(*this, name);
69         value.accept(visitor);
70     }
71
72     template<typename T, typename std::enable_if<isVisitable<T>::value, int>::type = 0>
73     void getInternal(const std::string& name, std::vector<T>& values)
74     {
75         values.clear();
76
77         size_t vectorSize = mStore.get<size_t>(name);
78         if (vectorSize == 0) {
79             return;
80         }
81
82         values.resize(vectorSize);
83         for (size_t i = 0; i < vectorSize; ++i) {
84             const std::string k = key(name, std::to_string(i));
85             getInternal(k, values[i]);
86         }
87     }
88 };
89
90 } // namespace config
91
92 #endif // CONFIG_FROM_KVSTORE_VISITOR_HPP