Partial Implementation of US1574:
[platform/upstream/iotivity.git] / 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 using namespace OC::OCReflect;
33
34 namespace OC
35 {
36     class IServerWrapper
37     {
38     public:
39         typedef std::shared_ptr<IServerWrapper> Ptr;
40
41         virtual ~IServerWrapper(){};
42
43         virtual OCStackResult registerResource(
44                     OCResourceHandle& resourceHandle,
45                     std::string& resourceURI,
46                     const std::string& resourceTypeName,
47                     const std::string& resourceInterface,
48                     RegisterCallback& entityHandler,
49                     uint8_t resourceProperty) = 0;
50         virtual OCStackResult unregisterResource(
51                     const OCResourceHandle& resourceHandle) = 0;
52         virtual OCStackResult bindTypeToResource(
53                     const OCResourceHandle& resourceHandle,
54                     const std::string& resourceTypeName) = 0;
55
56         virtual OCStackResult bindInterfaceToResource(
57                     const OCResourceHandle& resourceHandle,
58                     const std::string& resourceInterfaceName) = 0;
59
60         virtual OCStackResult startPresence(const unsigned int seconds) = 0;
61
62         virtual OCStackResult stopPresence() = 0;
63     };
64 }
65
66 #endif