Apply to Resource Hosting to RE resource server added feature.
[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 "RCSRequest.h"
26
27 namespace OIC
28 {
29     namespace Service
30     {
31         class RequestObject
32         {
33         public:
34             typedef std::shared_ptr<RequestObject> Ptr;
35             typedef std::function<void(const RCSResourceAttributes &, int,
36                     const RCSRequest &, RequestObject::Ptr)> SetRequestCallback;
37
38             enum class RequestMethod
39             {
40                 Get = 0,
41                 Set,
42                 Post,
43                 Delete
44             };
45
46         private:
47             typedef RCSRemoteResourceObject::Ptr RemoteObjectPtr;
48
49         public:
50             RequestObject() = default;
51             ~RequestObject() = default;
52
53             static void invokeRequest(RCSRemoteResourceObject::Ptr remoteObject,
54                     const RCSRequest & request, RequestMethod method,
55                     const RCSResourceAttributes & resourceAttibutes,
56                     SetRequestCallback setCB = nullptr);
57
58         private:
59             void setRequestCB(const RCSResourceAttributes & returnedAttributes, int eCode,
60                     const RCSRequest & request, RequestObject::Ptr this_ptr);
61         };
62
63     } /* namespace Service */
64 } /* namespace OIC */
65
66 #endif /* RH_REQUESTOBJECT_H_ */