Add ResourceCache Sconscript
[platform/upstream/iotivity.git] / service / basis / 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 CACHETYPES_H
22 #define CACHETYPES_H
23
24 #include <functional>
25 #include <map>
26 #include <memory>
27 #include <string>
28
29 #include "ocstack.h"
30 #include "OCResource.h"
31
32 #include "PrimitiveResource.h"
33
34 #define CACHE_TAG  PCF("CACHE")
35
36 class DataCache;
37
38 enum class REPORT_FREQUENCY
39 {
40     NONE = 0,
41     UPTODATE,
42     PERIODICTY
43 };
44
45 struct Report_Info
46 {
47     REPORT_FREQUENCY rf;
48     int reportID;
49     long latestReportTime;
50     long repeatTime;
51 };
52
53 enum class CACHE_STATE
54 {
55     READY = 0,
56     READY_YET,
57     LOST_SIGNAL,
58     DESTROYED,
59     UPDATING,
60     NONE
61 };
62
63 typedef int CacheID;
64
65 typedef std::map<std::string, std::string> CachedData;
66 typedef std::function<OCStackResult(std::shared_ptr<PrimitiveResource>, std::shared_ptr<CachedData>)> CacheCB;
67 typedef std::map<int, std::pair<Report_Info, CacheCB>> SubscriberInfo;
68 typedef std::pair<int, std::pair<Report_Info, CacheCB>> SubscriberInfoPair;
69
70 typedef OC::OCResource BaseResource;
71 typedef PrimitiveResource::GetCallback GetCB;
72 typedef PrimitiveResource::ObserveCallback ObserveCB;
73
74 typedef std::shared_ptr<DataCache> DataCachePtr;
75 typedef std::shared_ptr<CachedData> CachedDataPtr;
76 typedef std::shared_ptr<PrimitiveResource> PrimitiveResourcePtr;
77
78 #endif