f36cdd17fe86656b9fe138e93f9970361e21db67
[ric-plt/sdl.git] / include / private / asyncdummystorage.hpp
1 /*
2    Copyright (c) 2018-2019 Nokia.
3
4    Licensed under the Apache License, Version 2.0 (the "License");
5    you may not use this file except in compliance with the License.
6    You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10    Unless required by applicable law or agreed to in writing, software
11    distributed under the License is distributed on an "AS IS" BASIS,
12    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    See the License for the specific language governing permissions and
14    limitations under the License.
15 */
16
17 /*
18  * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19  * platform project (RICP).
20 */
21
22 #ifndef SHAREDDATALAYER_ASYNCDUMMYSTORAGE_HPP_
23 #define SHAREDDATALAYER_ASYNCDUMMYSTORAGE_HPP_
24
25 #include <sdl/asyncstorage.hpp>
26
27 namespace shareddatalayer
28 {
29     class Engine;
30
31     class AsyncDummyStorage: public AsyncStorage
32     {
33     public:
34         explicit AsyncDummyStorage(std::shared_ptr<Engine> engine);
35
36         AsyncDummyStorage(const AsyncDummyStorage&) = delete;
37
38         AsyncDummyStorage& operator = (const AsyncDummyStorage&) = delete;
39
40         AsyncDummyStorage(AsyncDummyStorage&&) = delete;
41
42         AsyncDummyStorage& operator = (AsyncDummyStorage&&) = delete;
43
44         int fd() const override;
45
46         void handleEvents() override;
47
48         void waitReadyAsync(const Namespace& ns, const ReadyAck& readyAck) override;
49
50         void setAsync(const Namespace& ns, const DataMap& dataMap, const ModifyAck& modifyAck) override;
51
52         void setIfAsync(const Namespace& ns, const Key& key, const Data& oldData, const Data& newData, const ModifyIfAck& modifyIfAck) override;
53
54         void setIfNotExistsAsync(const Namespace& ns, const Key& key, const Data& data, const ModifyIfAck& modifyIfAck) override;
55
56         void getAsync(const Namespace& ns, const Keys& keys, const GetAck& getAck) override;
57
58         void removeAsync(const Namespace& ns, const Keys& keys, const ModifyAck& modifyAck) override;
59
60         void removeIfAsync(const Namespace& ns, const Key& key, const Data& data, const ModifyIfAck& modifyIfAck) override;
61
62         void findKeysAsync(const Namespace& ns, const std::string& keyPrefix, const FindKeysAck& findKeysAck) override;
63
64         void removeAllAsync(const Namespace& ns, const ModifyAck& modifyAck) override;
65
66     private:
67         using Callback = std::function<void()>;
68
69         std::shared_ptr<Engine> engine;
70
71         void postCallback(const Callback& callback);
72     };
73 }
74
75 #endif