Integrated resource model related changes with eclipse plug-ins.
[platform/upstream/iotivity.git] / service / simulator / src / common / request_model_builder.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 REQUEST_MODEL_BUILDER_H_
22 #define REQUEST_MODEL_BUILDER_H_
23
24 #include "request_model.h"
25 #include "response_model.h"
26
27 class RequestModelBuilder
28 {
29     public:
30         RequestModelBuilder(std::shared_ptr<RAML::Raml> &raml);
31         std::map<RequestType, RequestModelSP> build(const std::string &uri);
32
33     private:
34         RequestModelSP createRequestModel(const RAML::ActionPtr &action);
35         ResponseModelSP createResponseModel(int code, const RAML::ResponsePtr &response);
36         SimulatorResourceModelSP createRepSchema(const RAML::RequestResponseBodyPtr &rep);
37         RequestType getRequestType(RAML::ActionType actionType);
38         SimulatorResourceModel::Attribute buildAttribute(
39             std::shared_ptr<RAML::Properties> propertyElement);
40         template <typename T>
41         void buildValueProperty(SimulatorResourceModel::Attribute &attribute,
42                                 const std::vector<RAML::ValuePropertyPtr> &valueProperties, T);
43
44         std::shared_ptr<RAML::Raml> m_raml;
45 };
46
47 #endif
48