summaryrefslogtreecommitdiff
path: root/inc/iotivity/OutOfProcServerWrapper.h
blob: 05d79e45a9a562168000e29c4cb26ca1f28f72fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//******************************************************************
//
// Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

#ifndef OC_OUT_OF_PROC_SERVER_WRAPPER_H_
#define OC_OUT_OF_PROC_SERVER_WRAPPER_H_

#include <OCApi.h>

namespace OC
{
    class OutOfProcServerWrapper : public IServerWrapper
    {
    public:
        OutOfProcServerWrapper(PlatformConfig /*cfg*/)
        {}

        virtual OCStackResult registerResource(
            OCResourceHandle& /*resourceHandle*/,
            std::string& /*resourceURI*/,
            const std::string& /*resourceTypeName*/,
            const std::string& /*resourceInterface*/,
            EntityHandler& /*entityHandler*/,
            uint8_t /*resourceProperty*/)
        {
            // Not implemented
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult registerDeviceInfo(
            const OCDeviceInfo /*deviceInfo*/)
        {
            // Not implemented
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult registerPlatformInfo(
            const OCPlatformInfo /*deviceInfo*/)
        {
            // Not implemented
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult registerResourceWithHost(
            OCResourceHandle& /*resourceHandle*/,
            std::string& /*resourceHOST*/,
            std::string& /*resourceURI*/,
            const std::string& /*resourceTypeName*/,
            const std::string& /*resourceInterface*/,
            EntityHandler& /*entityHandler*/,
            uint8_t /*resourceProperty*/)
        {
            // Not implemented
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult unregisterResource(
            const OCResourceHandle& /*resourceHandle*/)
        {
            //Not implemented yet
            return OC_STACK_ERROR;
        }

       virtual OCStackResult bindTypeToResource(
           const OCResourceHandle& /*resourceHandle*/,
           const std::string& /*resourceTypeName*/)
        {
            //Not implemented yet
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult bindInterfaceToResource(
            const OCResourceHandle& /*resourceHandle*/,
            const std::string& /*resourceInterfaceName*/)
        {
            //Not implemented yet
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult startPresence(const unsigned int /*seconds*/)
        {
            //Not implemented yet
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult stopPresence()
        {
            //Not implemented yet
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult setDefaultDeviceEntityHandler(
            EntityHandler /*entityHandler*/)
        {
            //Not implemented yet
            return OC_STACK_NOTIMPL;
        }

        virtual OCStackResult sendResponse(
            const std::shared_ptr<OCResourceResponse> /*pResponse*/)
        {
           //Not implemented yet
           return OC_STACK_NOTIMPL;
        }
    };
}

#endif