Imported Upstream version 1.0.1
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / common / primitiveResource / include / PrimitiveResource.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 COMMON_PRIMITIVERESOURCE_H
22 #define COMMON_PRIMITIVERESOURCE_H
23
24 #include <functional>
25 #include <string>
26 #include <vector>
27
28 #include <OCResource.h>
29
30 #include <ResponseStatement.h>
31 #include <RCSAddress.h>
32
33 namespace OIC
34 {
35     namespace Service
36     {
37
38         typedef OC::HeaderOption::OCHeaderOption HeaderOption;
39         typedef std::vector<HeaderOption> HeaderOptions;
40
41         class RCSResourceAttributes;
42         class ResponseStatement;
43
44         class PrimitiveResource: public std::enable_shared_from_this< PrimitiveResource >
45         {
46         public:
47             typedef std::shared_ptr< PrimitiveResource > Ptr;
48             typedef std::shared_ptr< const PrimitiveResource > ConstPtr;
49
50             typedef std::function<void(const HeaderOptions&, const ResponseStatement&, int)>
51                     GetCallback;
52
53             typedef std::function<void(const HeaderOptions&, const ResponseStatement&, int)>
54                     SetCallback;
55
56             typedef std::function<void(const HeaderOptions&, const ResponseStatement&, int)>
57                     PutCallback;
58
59             typedef std::function<void(const HeaderOptions&, const ResponseStatement&, int, int)>
60                     ObserveCallback;
61
62         public:
63             static PrimitiveResource::Ptr create(const std::shared_ptr<OC::OCResource>&);
64
65             virtual ~PrimitiveResource() { };
66
67             virtual void requestGet(GetCallback) = 0;
68             virtual void requestSet(const RCSResourceAttributes&, SetCallback) = 0;
69             virtual void requestPut(const RCSResourceAttributes&, PutCallback) = 0;
70             virtual void requestObserve(ObserveCallback) = 0;
71             virtual void cancelObserve() = 0;
72
73             virtual std::string getSid() const = 0;
74             virtual std::string getUri() const = 0;
75             virtual std::string getHost() const = 0;
76             virtual std::vector< std::string > getTypes() const = 0;
77             virtual std::vector< std::string > getInterfaces() const = 0;
78
79             virtual bool isObservable() const = 0;
80
81         protected:
82             PrimitiveResource() = default;
83
84             PrimitiveResource(const PrimitiveResource&) = delete;
85             PrimitiveResource(PrimitiveResource&&) = delete;
86
87             PrimitiveResource& operator=(const PrimitiveResource&) = delete;
88             PrimitiveResource& operator=(PrimitiveResource&&) = delete;
89         };
90
91         typedef std::function<void(std::shared_ptr<PrimitiveResource>)> DiscoverCallback;
92
93         void discoverResource(const std::string& host, const std::string& resourceURI,
94                 OCConnectivityType, DiscoverCallback);
95
96         void discoverResource(const RCSAddress& address, const std::string& resourceURI,
97                 DiscoverCallback);
98
99     }
100 }
101
102 #endif // COMMON_PRIMITIVERESOURCE_H