1 //******************************************************************
3 // Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 #ifndef OC_I_SERVER_WRAPPER_H_
22 #define OC_I_SERVER_WRAPPER_H_
27 #include <OCResourceRequest.h>
28 #include <OCResourceResponse.h>
29 #include <OCException.h>
39 typedef std::shared_ptr<IServerWrapper> Ptr;
44 virtual ~IServerWrapper(){};
46 virtual OCStackResult registerResource(
47 OCResourceHandle& resourceHandle,
48 std::string& resourceURI,
49 const std::string& resourceTypeName,
50 const std::string& resourceInterface,
51 EntityHandler& entityHandler,
52 uint8_t resourceProperty) = 0;
54 virtual OCStackResult registerDeviceInfo(
55 const OCDeviceInfo deviceInfo) = 0;
57 virtual OCStackResult registerPlatformInfo(
58 const OCPlatformInfo PlatformInfo) = 0;
60 virtual OCStackResult unregisterResource(
61 const OCResourceHandle& resourceHandle) = 0;
62 virtual OCStackResult bindTypeToResource(
63 const OCResourceHandle& resourceHandle,
64 const std::string& resourceTypeName) = 0;
66 virtual OCStackResult bindInterfaceToResource(
67 const OCResourceHandle& resourceHandle,
68 const std::string& resourceInterfaceName) = 0;
70 virtual OCStackResult startPresence(const unsigned int seconds) = 0;
72 virtual OCStackResult stopPresence() = 0;
74 virtual OCStackResult setDefaultDeviceEntityHandler(EntityHandler entityHandler) = 0;
76 virtual OCStackResult sendResponse(const std::shared_ptr<OCResourceResponse> pResponse) = 0;