5f312e2b254b6042c2b1d96b7cdb002b81eeecdd
[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 enum class REPORT_FREQUENCY
37 {
38     NONE = 0,
39     UPTODATE,
40     PERIODICTY
41 };
42
43 struct Report_Info
44 {
45     REPORT_FREQUENCY rf;
46     int reportID;
47     long latestReportTime;
48     long repeatTime;
49 };
50
51 enum class CACHE_STATE
52 {
53     READY = 0,
54     READY_YET,
55     LOST_SIGNAL,
56     DESTROYED,
57     UPDATING
58 };
59
60 typedef int CacheID;
61
62 typedef std::map<std::string, std::string> CacheData;
63 typedef std::function<OCStackResult(std::shared_ptr<PrimitiveResource>, CacheData)> CacheCB;
64 typedef std::map<Report_Info, CacheCB> SubscriberInfo;
65 typedef std::pair<Report_Info, CacheCB> SubscriberInfoPair;
66
67 typedef OC::OCResource BaseResource;
68 //typedef std::function<void(const OC::HeaderOptions&,
69 //            const OC::OCRepresentation&, const int, const int)> ObserveCB;
70 //typedef std::function<void(const OC::HeaderOptions&,
71 //            const OC::OCRepresentation&, const int)> GetCB;
72
73 typedef PrimitiveResource::GetCallback GetCB;
74 typedef PrimitiveResource::ObserveCallback ObserveCB;
75
76 #endif