Merge "Merge branch 'security-CKM' into 'master'"
[platform/upstream/iotivity.git] / service / resource-encapsulation / src / serverBuilder / include / RequestHandler.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 SERVERBUILDER_REQUESTHANDLER_H
22 #define SERVERBUILDER_REQUESTHANDLER_H
23
24 #include <RCSResponse.h>
25 #include <RCSResourceAttributes.h>
26
27 namespace OC
28 {
29     class OCResourceResponse;
30     class OCRepresentation;
31 }
32
33 namespace OIC
34 {
35     namespace Service
36     {
37
38         class RCSResourceObject;
39
40         class RequestHandler
41         {
42         private:
43             typedef std::function< std::shared_ptr< OC::OCResourceResponse >(RCSResourceObject&) >
44                         BuildResponseHolder;
45
46         public:
47             typedef std::shared_ptr< RequestHandler > Pre;
48
49             static constexpr int DEFAULT_ERROR_CODE = 200;
50
51             RequestHandler();
52
53             RequestHandler(const RequestHandler&) = delete;
54             RequestHandler(RequestHandler&&) = default;
55
56             RequestHandler(int errorCode);
57
58             RequestHandler(const RCSResourceAttributes&, int errorCode = DEFAULT_ERROR_CODE);
59
60             RequestHandler(RCSResourceAttributes&&, int errorCode = DEFAULT_ERROR_CODE);
61
62             virtual ~RequestHandler() { };
63
64             std::shared_ptr< OC::OCResourceResponse > buildResponse(RCSResourceObject&);
65
66         private:
67             const BuildResponseHolder m_holder;
68         };
69
70         class SetRequestHandler: public RequestHandler
71         {
72         private:
73             typedef std::pair< std::string, RCSResourceAttributes::Value > AttrKeyValuePair;
74             typedef std::vector< AttrKeyValuePair > AttrKeyValuePairs;
75
76         public:
77             typedef std::shared_ptr< SetRequestHandler > Ptr;
78
79             SetRequestHandler(const SetRequestHandler&) = delete;
80             SetRequestHandler(SetRequestHandler&&) = default;
81
82             SetRequestHandler();
83
84             SetRequestHandler(int errorCode);
85
86             SetRequestHandler(const RCSResourceAttributes&, int errorCode = DEFAULT_ERROR_CODE);
87
88             SetRequestHandler(RCSResourceAttributes&&, int errorCode = DEFAULT_ERROR_CODE);
89
90             AttrKeyValuePairs applyAcceptanceMethod(RCSSetResponse::AcceptanceMethod,
91                     RCSResourceObject&, const RCSResourceAttributes&) const;
92         };
93
94     }
95 }
96
97 #endif // SERVERBUILDER_REQUESTHANDLER_H