Merge "Implemented JSON Serialization using Cereal Library"
[platform/upstream/iotivity.git] / resource / include / OutOfProcServerWrapper.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Mobile Communications GmbH 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 _OUT_OF_PROC_SERVER_WRAPPER_H_
22 #define _OUT_OF_PROC_SERVER_WRAPPER_H_
23
24 #include <OCApi.h>
25
26 namespace OC
27 {
28     class OutOfProcServerWrapper : public IServerWrapper
29     {
30     public:
31         OutOfProcServerWrapper(PlatformConfig cfg)
32         {}
33
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)
41
42         {
43             // Not implemented
44             return OC_STACK_NOTIMPL;
45         }
46         virtual OCStackResult registerResourceWithHost(
47                     OCResourceHandle& resourceHandle,
48                     std::string& resourceHOST,
49                     std::string& resourceURI,
50                     const std::string& resourceTypeName,
51                     const std::string& resourceInterface,
52                     EntityHandler& entityHandler,
53                     uint8_t resourceProperty)
54         {
55             // Not implemented
56             return OC_STACK_NOTIMPL;
57         }
58
59         virtual OCStackResult unregisterResource(
60                      const OCResourceHandle& resourceHandle)
61         {
62             //Not implemented yet
63             return OC_STACK_ERROR;
64         }
65
66        virtual OCStackResult bindTypeToResource(
67                      const OCResourceHandle& resourceHandle,
68                      const std::string& resourceTypeName)
69         {
70             //Not implemented yet
71             return OC_STACK_NOTIMPL;
72         }
73
74         virtual OCStackResult bindInterfaceToResource(
75                      const OCResourceHandle& resourceHandle,
76                      const std::string& resourceInterfaceName)
77         {
78             //Not implemented yet
79             return OC_STACK_NOTIMPL;
80         }
81
82         virtual OCStackResult startPresence(const unsigned int seconds)
83         {
84             //Not implemented yet
85             return OC_STACK_NOTIMPL;
86         }
87
88         virtual OCStackResult stopPresence()
89         {
90             //Not implemented yet
91             return OC_STACK_NOTIMPL;
92         }
93
94
95         virtual OCStackResult setDefaultDeviceEntityHandler(EntityHandler entityHandler)
96         {
97             //Not implemented yet
98             return OC_STACK_NOTIMPL;
99         }
100     };
101 }
102
103 #endif