Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / easy-setup / sdk / enrollee / inc / resourceHandler.h
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics 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 // Do not remove the include below
22 #include "Arduino.h"
23
24 #include <string.h>
25 #include "logger.h"
26 #include "ocstack.h"
27 #include "escommon.h"
28 #include "networkHandler.h"
29 #include "octypes.h"
30
31 #ifndef ES_RESOURCE_HANDLER_H_
32 #define ES_RESOURCE_HANDLER_H_
33
34 typedef void (*ResourceEventCallback)(ESResult);
35
36 /* Structure to represent a Light resource */
37 typedef struct PROVRESOURCE
38 {
39     OCResourceHandle handle;
40     int ps; // provisiong status, 1 : need to provisioning, 2 : Connected to Internet
41     int tnt; // target network type, 1: WLAN, 2: BT, 3: BLE, 4: Zigbee, ...
42     char tnn[MAXSSIDLEN]; // target network name, i.e. SSID for WLAN, MAC address for BT
43     char cd[MAXNETCREDLEN]; // credential information
44 } ProvResource;
45
46 /* Structure to represent a Light resource */
47 typedef struct NETRESOURCE
48 {
49     OCResourceHandle handle;
50     int cnt; // current network type, 1: WLAN, 2: BT, 3: BLE, 4: Zigbee, ...
51     int ant[MAXNUMTYPE]; // available network type, 1: WLAN, 2: BT, 3: BLE, 4: Zigbee, ...
52     char ipaddr[MAXADDRLEN]; // ip address
53     char cnn[MAXSSIDLEN]; // current network name
54 } NetResource;
55
56 OCStackResult CreateProvisioningResource();
57
58 //created only for in case of wifi
59 #ifdef ESWIFI
60 OCStackResult CreateNetworkResource();
61 #endif
62
63 void GetTargetNetworkInfoFromProvResource(char *, char *);
64 void RegisterResourceEventCallBack(ResourceEventCallback);
65
66 #endif