Add first version
[ric-plt/sdl.git] / include / private / redis / reply.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 #ifndef SHAREDDATALAYER_REDIS_REPLY_HPP_
18 #define SHAREDDATALAYER_REDIS_REPLY_HPP_
19
20 #include <string>
21 #include <vector>
22 #include <memory>
23 #include <hiredis/hiredis.h>
24
25 namespace shareddatalayer
26 {
27     namespace redis
28     {
29         using ReplyStringLength = decltype(::redisReply::len);
30
31         class Reply
32         {
33         public:
34             Reply(const Reply&) = delete;
35
36             Reply& operator = (const Reply&) = delete;
37
38             virtual ~Reply() = default;
39
40             enum class Type
41             {
42                 NIL,
43                 INTEGER,
44                 STATUS,
45                 STRING,
46                 ARRAY
47             };
48
49             struct DataItem
50             {
51                 std::string str;
52                 ReplyStringLength len;
53             };
54
55             virtual Type getType() const = 0;
56
57             virtual long long getInteger() const = 0;
58
59             virtual const DataItem* getString() const = 0;
60
61             using ReplyVector = std::vector<std::shared_ptr<Reply>>;
62
63             virtual const ReplyVector* getArray() const = 0;
64
65         protected:
66             Reply() = default;
67         };
68     }
69 }
70
71 #endif