Raritan / Server Technology Xerus™ PDU JSON-RPC API
ZigbeeManager.idl
1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /*
3  * Copyright 2020 Raritan Inc. All rights reserved.
4  */
5 
6 #ifndef __ZIGBEEMANAGER_IDL__
7 #define __ZIGBEEMANAGER_IDL__
8 
9 #include <Event.idl>
10 #include <ZigbeeDevice.idl>
11 
12 /** Zigbee */
13 module zigbee {
14  /** Zigbee Manager */
15  interface ZigbeeManager {
16 
17  /** Error Codes */
18  constant int ERR_DEVICE_EXISTS = 1;
19  constant int ERR_MAX_DEVICE_REACHED = 2;
20  constant int ERR_DEVICE_NOT_FOUND = 3;
21  constant int ERR_INVALID_PARAMS = 4;
22  constant int ERR_INVALID_KEY = 5;
23  constant int ERR_INVALID_CHANNEL = 6;
24 
25  /** States for the dongle */
26  enumeration DongleState {
27  NOT_INIT, ///< no dongle
28  READY, ///< default state if no action in progress
29  ERROR, ///< something wrong
30  INIT_IN_PROGRESS, ///< dongle init in progress
31  FW_UPGRADE, ///< firmware upgrade
32  IN_MODEM_STATE ///< receiving state for fw update
33  };
34 
35  /** Dongle MetaData*/
36  structure MetaData {
37  string firmwareVersion; ///< the current firmware version
38  string stackVersion; ///< the current stack version
39  };
40 
41  structure Settings {
42  int channel; ///< channel between 11 and 26 or 0xFF for auto search
43  };
44 
45  /** Device Registration */
46  structure DeviceRegistration {
47  int sourceId; ///< the source id to add
48  string key; ///< the OOB key (including CRC16)
49  int slot; ///< the preferred slot. 0xFFFF for auto manage
50  };
51 
52  /** Base Event */
53  valueobject DeviceEvent extends idl.Event {
54  int sourceId; ///< the device which is affected by the event
55  };
56 
57  /** A sensor was added */
58  valueobject DeviceAddedEvent extends DeviceEvent {};
59 
60  /** A sensor was removed */
61  valueobject DeviceRemovedEvent extends DeviceEvent {};
62 
63  /** Settings changed */
64  valueobject SettingsChangedEvent extends idl.Event {
65  Settings oldSettings; ///< the old settings
66  Settings newSettings; ///< the new settings
67  };
68 
69  /** State changed */
70  valueobject StateChangedEvent extends idl.Event {
71  DongleState oldState; ///< the old state
72  DongleState newState; ///< the new state
73  };
74 
75  /**
76  * Retrieve Dongle MetaData
77  *
78  * @return MetaData
79  */
81 
82  /**
83  * Retrieve Dongle State
84  *
85  * @return DongleState
86  */
88 
89  /**
90  * Retrieve Dongle Settings
91  *
92  * @return Settings
93  */
95 
96  /**
97  * Set Dongle Settings
98  *
99  * @return 0 if OK
100  * @return ERR_INVALID_CHANNEL if the channel is invalid
101  * @return ERR_INVALID_PARAMS if any parameters are invalid
102  */
103  int setSettings(in Settings settings);
104 
105  /**
106  * Add new devices
107  *
108  * Return codes:
109  * 0 if OK
110  * ERR_DEVICE_EXISTS if device is already in list
111  * ERR_MAX_DEVICE_REACHED if the max device limit reached
112  * ERR_INVALID_KEY if the key is wrong
113  * ERR_INVALID_PARAMS if the entered data is invalid
114  * @return List of return codes for each device
115  */
116  vector<int> addDevices(in vector<DeviceRegistration> sensors);
117 
118  /**
119  * Remove a device
120  *
121  * @return 0 if OK
122  * @return ERR_DEVICE_NOT_FOUND if device is not registered
123  */
124  int removeDevice(in int sourceId);
125 
126  /**
127  * Get the list of registered devices
128  *
129  * @return List of all registered devices
130  */
131  vector<ZigbeeDevice> getRegisteredDevices();
132  };
133 
134 }
135 
136 #endif /* __ZIGBEEMANAGER_IDL__ */
137 
Zigbee Manager.
Definition: ZigbeeManager.idl:15
vector< ZigbeeDevice > getRegisteredDevices()
Get the list of registered devices.
int removeDevice(in int sourceId)
Remove a device.
vector< int > addDevices(in vector< DeviceRegistration > sensors)
Add new devices.
DongleState
States for the dongle.
Definition: ZigbeeManager.idl:26
@ INIT_IN_PROGRESS
dongle init in progress
Definition: ZigbeeManager.idl:30
@ FW_UPGRADE
firmware upgrade
Definition: ZigbeeManager.idl:31
@ NOT_INIT
no dongle
Definition: ZigbeeManager.idl:27
@ READY
default state if no action in progress
Definition: ZigbeeManager.idl:28
@ ERROR
something wrong
Definition: ZigbeeManager.idl:29
DongleState getDongleState()
Retrieve Dongle State.
int setSettings(in Settings settings)
Set Dongle Settings.
Settings getSettings()
Retrieve Dongle Settings.
MetaData getMetaData()
Retrieve Dongle MetaData.
Basic IDL definitions.
Definition: Event.idl:10
Sensors Model.
Definition: AccumulatingNumericSensor.idl:13
Zigbee.
Definition: ZigbeeDevice.idl:12
Common base for all events.
Definition: Event.idl:13
A sensor was added.
Definition: ZigbeeManager.idl:58
Base Event.
Definition: ZigbeeManager.idl:53
int sourceId
the device which is affected by the event
Definition: ZigbeeManager.idl:54
Device Registration.
Definition: ZigbeeManager.idl:46
int sourceId
the source id to add
Definition: ZigbeeManager.idl:47
int slot
the preferred slot. 0xFFFF for auto manage
Definition: ZigbeeManager.idl:49
string key
the OOB key (including CRC16)
Definition: ZigbeeManager.idl:48
A sensor was removed.
Definition: ZigbeeManager.idl:61
Dongle MetaData.
Definition: ZigbeeManager.idl:36
string firmwareVersion
the current firmware version
Definition: ZigbeeManager.idl:37
string stackVersion
the current stack version
Definition: ZigbeeManager.idl:38
Settings changed.
Definition: ZigbeeManager.idl:64
Settings oldSettings
the old settings
Definition: ZigbeeManager.idl:65
Settings newSettings
the new settings
Definition: ZigbeeManager.idl:66
Definition: ZigbeeManager.idl:41
int channel
channel between 11 and 26 or 0xFF for auto search
Definition: ZigbeeManager.idl:42
State changed.
Definition: ZigbeeManager.idl:70
DongleState oldState
the old state
Definition: ZigbeeManager.idl:71
DongleState newState
the new state
Definition: ZigbeeManager.idl:72