Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / resourceCache / include / CacheTypes.h
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef RCM_CACHETYPES_H
22 #define RCM_CACHETYPES_H
23
24 #include <functional>
25 #include <map>
26 #include <memory>
27 #include <string>
28
29 #include "logger.h"
30
31 #include "PrimitiveResource.h"
32 #include "RCSResourceAttributes.h"
33
34 namespace OIC
35 {
36     namespace Service
37     {
38
39         class DataCache;
40
41 #define CACHE_TAG  PCF("CACHE")
42 #define CACHE_DEFAULT_REPORT_MILLITIME 10000
43 #define CACHE_DEFAULT_EXPIRED_MILLITIME 15000
44
45         enum class REPORT_FREQUENCY
46         {
47             NONE = 0,
48             UPTODATE,
49             PERIODICTY
50         };
51
52         struct Report_Info
53         {
54             REPORT_FREQUENCY rf;
55             int reportID;
56             long repeatTime;
57             unsigned int timerID;
58         };
59
60         enum class CACHE_STATE
61         {
62             READY = 0,
63             READY_YET,
64             LOST_SIGNAL,
65             DESTROYED,
66             UPDATING,
67             NONE
68         };
69
70         enum class CACHE_MODE
71         {
72             OBSERVE = 0,
73             FREQUENCY
74         };
75
76         typedef int CacheID;
77
78         typedef std::function<OCStackResult(std::shared_ptr<PrimitiveResource>,
79                                             const RCSResourceAttributes &)> CacheCB;
80         typedef std::map<int, std::pair<Report_Info, CacheCB>> SubscriberInfo;
81         typedef std::pair<int, std::pair<Report_Info, CacheCB>> SubscriberInfoPair;
82
83         typedef OC::OCResource BaseResource;
84         typedef PrimitiveResource::GetCallback GetCB;
85         typedef PrimitiveResource::ObserveCallback ObserveCB;
86
87         typedef std::shared_ptr<DataCache> DataCachePtr;
88         typedef std::shared_ptr<PrimitiveResource> PrimitiveResourcePtr;
89     } // namespace Service
90 } // namespace OIC
91
92 #endif /* RCM_CACHETYPES_H */