Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-hosting / src / RequestObject.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 RH_REQUESTOBJECT_H_
22 #define RH_REQUESTOBJECT_H_
23
24 #include "RCSRemoteResourceObject.h"
25 #include "RCSResourceObject.h"
26
27 namespace OIC
28 {
29 namespace Service
30 {
31
32 class RequestObject
33 {
34 public:
35     typedef std::shared_ptr<RequestObject> Ptr;
36     typedef std::shared_ptr<RCSRemoteResourceObject> RemoteObjectPtr;
37     typedef void (*SetRequestCallback)(const RCSResourceAttributes &, RCSResourceAttributes &);
38
39     enum class RequestMethod
40     {
41         Getter = 0,
42         Setter,
43         Delete
44     };
45
46 private:
47     SetRequestCallback pSetRequestCB;
48
49 public:
50     RequestObject();
51     RequestObject(SetRequestCallback cb);
52     ~RequestObject();
53
54     void invokeRequest(RemoteObjectPtr remoteObject, RequestMethod method,
55             RCSResourceAttributes & resourceAttibutes);
56
57 private:
58     void setRequestCB(const RCSResourceAttributes & returnedAttributes,
59             RCSResourceAttributes & putAttibutes);
60 };
61
62 } /* namespace Service */
63 } /* namespace OIC */
64
65 #endif /* RH_REQUESTOBJECT_H_ */