dd716743346e382d7c0f487d3c1ce45c524a9f14
[ric-plt/sdl.git] / include / private / redis / asyncredisreply.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_ASYNCREDISREPLY_HPP_
18 #define SHAREDDATALAYER_REDIS_ASYNCREDISREPLY_HPP_
19
20 #include "private/redis/reply.hpp"
21 #include <map>
22
23 extern "C"
24 {
25     struct redisReply;
26 }
27
28 namespace shareddatalayer
29 {
30     namespace redis
31     {
32         class AsyncRedisReply: public Reply
33         {
34         public:
35             AsyncRedisReply();
36
37             explicit AsyncRedisReply(const redisReply& rr);
38
39             Type getType() const override;
40
41             long long getInteger() const override;
42
43             const DataItem* getString() const override;
44
45             const ReplyVector* getArray() const override;
46
47         private:
48             Type type;
49             long long integer;
50             DataItem dataItem;
51             ReplyVector replyVector;
52             std::map<int, Type> typeMap;
53
54             void parseReply(const redisReply& rr);
55
56             void parseArray(const redisReply& rr);
57         };
58     }
59 }
60
61 #endif