|
21 | 21 | import logging
|
22 | 22 | import sys
|
23 | 23 | from asyncio.futures import Future
|
24 |
| -from ctypes import CFUNCTYPE, c_char_p, c_size_t, c_uint8, c_uint16, c_uint32, c_void_p, py_object |
| 24 | +from ctypes import CFUNCTYPE, c_bool, c_char_p, c_size_t, c_uint8, c_uint16, c_uint32, c_void_p, py_object |
25 | 25 | from dataclasses import dataclass
|
26 | 26 | from typing import Type, Union
|
27 | 27 |
|
@@ -144,8 +144,30 @@ def _OnCommandSenderDoneCallback(closure):
|
144 | 144 | ctypes.pythonapi.Py_DecRef(ctypes.py_object(closure))
|
145 | 145 |
|
146 | 146 |
|
| 147 | +def TestOnlySendCommandTimedRequestFlagWithNoTimedInvoke(future: Future, eventLoop, responseType, device, commandPath, payload): |
| 148 | + ''' ONLY TO BE USED FOR TEST: Sends the payload with a TimedRequest flag but no TimedInvoke transaction |
| 149 | + ''' |
| 150 | + if (responseType is not None) and (not issubclass(responseType, ClusterCommand)): |
| 151 | + raise ValueError("responseType must be a ClusterCommand or None") |
| 152 | + |
| 153 | + handle = chip.native.GetLibraryHandle() |
| 154 | + transaction = AsyncCommandTransaction(future, eventLoop, responseType) |
| 155 | + |
| 156 | + payloadTLV = payload.ToTLV() |
| 157 | + ctypes.pythonapi.Py_IncRef(ctypes.py_object(transaction)) |
| 158 | + return builtins.chipStack.Call( |
| 159 | + lambda: handle.pychip_CommandSender_TestOnlySendCommandTimedRequestNoTimedInvoke( |
| 160 | + ctypes.py_object(transaction), device, |
| 161 | + commandPath.EndpointId, commandPath.ClusterId, commandPath.CommandId, payloadTLV, len(payloadTLV), |
| 162 | + ctypes.c_uint16(0), # interactionTimeoutMs |
| 163 | + ctypes.c_uint16(0), # busyWaitMs |
| 164 | + ctypes.c_bool(False) # suppressResponse |
| 165 | + )) |
| 166 | + |
| 167 | + |
147 | 168 | def SendCommand(future: Future, eventLoop, responseType: Type, device, commandPath: CommandPath, payload: ClusterCommand,
|
148 |
| - timedRequestTimeoutMs: Union[None, int] = None, interactionTimeoutMs: Union[None, int] = None, busyWaitMs: Union[None, int] = None) -> PyChipError: |
| 169 | + timedRequestTimeoutMs: Union[None, int] = None, interactionTimeoutMs: Union[None, int] = None, busyWaitMs: Union[None, int] = None, |
| 170 | + suppressResponse: Union[None, bool] = None) -> PyChipError: |
149 | 171 | ''' Send a cluster-object encapsulated command to a device and does the following:
|
150 | 172 | - On receipt of a successful data response, returns the cluster-object equivalent through the provided future.
|
151 | 173 | - None (on a successful response containing no data)
|
@@ -175,6 +197,7 @@ def SendCommand(future: Future, eventLoop, responseType: Type, device, commandPa
|
175 | 197 | commandPath.ClusterId, commandPath.CommandId, payloadTLV, len(payloadTLV),
|
176 | 198 | ctypes.c_uint16(0 if interactionTimeoutMs is None else interactionTimeoutMs),
|
177 | 199 | ctypes.c_uint16(0 if busyWaitMs is None else busyWaitMs),
|
| 200 | + ctypes.c_bool(False if suppressResponse is None else suppressResponse) |
178 | 201 | ))
|
179 | 202 |
|
180 | 203 |
|
@@ -203,7 +226,9 @@ def Init():
|
203 | 226 | setter = chip.native.NativeLibraryHandleMethodArguments(handle)
|
204 | 227 |
|
205 | 228 | setter.Set('pychip_CommandSender_SendCommand',
|
206 |
| - PyChipError, [py_object, c_void_p, c_uint16, c_uint32, c_uint32, c_char_p, c_size_t, c_uint16]) |
| 229 | + PyChipError, [py_object, c_void_p, c_uint16, c_uint32, c_uint32, c_char_p, c_size_t, c_uint16, c_bool]) |
| 230 | + setter.Set('pychip_CommandSender_TestOnlySendCommandTimedRequestNoTimedInvoke', |
| 231 | + PyChipError, [py_object, c_void_p, c_uint32, c_uint32, c_char_p, c_size_t, c_uint16, c_bool]) |
207 | 232 | setter.Set('pychip_CommandSender_SendGroupCommand',
|
208 | 233 | PyChipError, [c_uint16, c_void_p, c_uint32, c_uint32, c_char_p, c_size_t, c_uint16])
|
209 | 234 | setter.Set('pychip_CommandSender_InitCallbacks', None, [
|
|
0 commit comments