e617302a82def4a56537fe9e4ffba0927340e3b2
[platform/upstream/iotivity.git] / resource / include / IServerWrapper.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 _I_SERVER_WRAPPER_H_
22 #define _I_SERVER_WRAPPER_H_
23
24 #include <memory>
25 #include <string>
26
27 #include <OCResourceRequest.h>
28 #include <OCResourceResponse.h>
29 #include <OCException.h>
30 #include <OCApi.h>
31
32 namespace OC
33 {
34     class IServerWrapper
35     {
36     protected:
37         OCPlatform_impl& m_owner;
38
39     public:
40         typedef std::shared_ptr<IServerWrapper> Ptr;
41
42         IServerWrapper(OCPlatform_impl& owner)
43          : m_owner(owner)
44         {}
45
46         virtual ~IServerWrapper(){};
47
48         virtual OCStackResult registerResource(
49                     OCResourceHandle& resourceHandle,
50                     std::string& resourceURI,
51                     const std::string& resourceTypeName,
52                     const std::string& resourceInterface,
53                     EntityHandler& entityHandler,
54                     uint8_t resourceProperty) = 0;
55
56
57                 virtual OCStackResult registerResourceWithHost(
58                     OCResourceHandle& resourceHandle,
59                     std::string& resourceHOST,
60                     std::string& resourceURI,
61                     const std::string& resourceTypeName,
62                     const std::string& resourceInterface,
63                     EntityHandler& entityHandler,
64                     uint8_t resourceProperty) = 0;
65
66         virtual OCStackResult unregisterResource(
67                     const OCResourceHandle& resourceHandle) = 0;
68         virtual OCStackResult bindTypeToResource(
69                     const OCResourceHandle& resourceHandle,
70                     const std::string& resourceTypeName) = 0;
71
72         virtual OCStackResult bindInterfaceToResource(
73                     const OCResourceHandle& resourceHandle,
74                     const std::string& resourceInterfaceName) = 0;
75
76         virtual OCStackResult startPresence(const unsigned int seconds) = 0;
77
78         virtual OCStackResult stopPresence() = 0;
79
80         virtual OCStackResult setDefaultDeviceEntityHandler(EntityHandler entityHandler) = 0;
81     };
82 }
83
84 #endif