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 _OUT_OF_PROC_SERVER_WRAPPER_H_
22 #define _OUT_OF_PROC_SERVER_WRAPPER_H_
28 class OutOfProcServerWrapper : public IServerWrapper
31 OutOfProcServerWrapper(PlatformConfig cfg)
34 virtual OCStackResult registerResource(
35 OCResourceHandle& resourceHandle,
36 std::string& resourceURI,
37 const std::string& resourceTypeName,
38 const std::string& resourceInterface,
39 EntityHandler& entityHandler,
40 uint8_t resourceProperty)
44 return OC_STACK_NOTIMPL;
47 virtual OCStackResult registerDeviceInfo(
48 const OCDeviceInfo deviceInfo)
51 return OC_STACK_NOTIMPL;
54 virtual OCStackResult registerPlatformInfo(
55 const OCPlatformInfo deviceInfo)
58 return OC_STACK_NOTIMPL;
61 virtual OCStackResult registerResourceWithHost(
62 OCResourceHandle& resourceHandle,
63 std::string& resourceHOST,
64 std::string& resourceURI,
65 const std::string& resourceTypeName,
66 const std::string& resourceInterface,
67 EntityHandler& entityHandler,
68 uint8_t resourceProperty)
71 return OC_STACK_NOTIMPL;
74 virtual OCStackResult unregisterResource(
75 const OCResourceHandle& resourceHandle)
78 return OC_STACK_ERROR;
81 virtual OCStackResult bindTypeToResource(
82 const OCResourceHandle& resourceHandle,
83 const std::string& resourceTypeName)
86 return OC_STACK_NOTIMPL;
89 virtual OCStackResult bindInterfaceToResource(
90 const OCResourceHandle& resourceHandle,
91 const std::string& resourceInterfaceName)
94 return OC_STACK_NOTIMPL;
97 virtual OCStackResult startPresence(const unsigned int seconds)
100 return OC_STACK_NOTIMPL;
103 virtual OCStackResult stopPresence()
105 //Not implemented yet
106 return OC_STACK_NOTIMPL;
109 virtual OCStackResult setDefaultDeviceEntityHandler(EntityHandler entityHandler)
111 //Not implemented yet
112 return OC_STACK_NOTIMPL;
115 virtual OCStackResult sendResponse(const std::shared_ptr<OCResourceResponse> pResponse)
117 //Not implemented yet
118 return OC_STACK_NOTIMPL;