22
22
from ctypes import CFUNCTYPE , POINTER , c_char_p , c_size_t , c_uint8 , c_uint16 , c_uint64 , c_void_p , py_object
23
23
from typing import Callable , Optional
24
24
25
- import chip
26
- from chip .native import PyChipError
27
-
25
+ from ..native import GetLibraryHandle , NativeLibraryHandleMethodArguments , PyChipError
28
26
from . import BdxTransfer
29
27
30
28
c_uint8_p = POINTER (c_uint8 )
@@ -121,7 +119,7 @@ def _PrepareForBdxTransfer(future: Future, data: Optional[bytes]) -> PyChipError
121
119
122
120
Returns the CHIP_ERROR result from the C++ side.
123
121
'''
124
- handle = chip . native . GetLibraryHandle ()
122
+ handle = GetLibraryHandle ()
125
123
transaction = AsyncTransferObtainedTransaction (future = future , event_loop = asyncio .get_running_loop (), data = data )
126
124
127
125
ctypes .pythonapi .Py_IncRef (ctypes .py_object (transaction ))
@@ -163,7 +161,7 @@ def AcceptTransferAndReceiveData(transfer: c_void_p, dataReceivedClosure: Callab
163
161
164
162
Returns an error if one is encountered while accepting the transfer.
165
163
'''
166
- handle = chip . native . GetLibraryHandle ()
164
+ handle = GetLibraryHandle ()
167
165
complete_transaction = AsyncTransferCompletedTransaction (future = transferComplete , event_loop = asyncio .get_running_loop ())
168
166
ctypes .pythonapi .Py_IncRef (ctypes .py_object (dataReceivedClosure ))
169
167
ctypes .pythonapi .Py_IncRef (ctypes .py_object (complete_transaction ))
@@ -184,7 +182,7 @@ def AcceptTransferAndSendData(transfer: c_void_p, data: bytearray, transferCompl
184
182
185
183
Returns an error if one is encountered while accepting the transfer.
186
184
'''
187
- handle = chip . native . GetLibraryHandle ()
185
+ handle = GetLibraryHandle ()
188
186
complete_transaction = AsyncTransferCompletedTransaction (future = transferComplete , event_loop = asyncio .get_running_loop ())
189
187
ctypes .pythonapi .Py_IncRef (ctypes .py_object (complete_transaction ))
190
188
res = builtins .chipStack .Call (
@@ -200,17 +198,17 @@ async def RejectTransfer(transfer: c_void_p):
200
198
201
199
Returns an error if one is encountered while rejecting the transfer.
202
200
'''
203
- handle = chip . native . GetLibraryHandle ()
201
+ handle = GetLibraryHandle ()
204
202
return await builtins .chipStack .CallAsyncWithResult (
205
203
lambda : handle .pychip_Bdx_RejectTransfer (transfer )
206
204
)
207
205
208
206
209
207
def Init ():
210
- handle = chip . native . GetLibraryHandle ()
208
+ handle = GetLibraryHandle ()
211
209
# Uses one of the type decorators as an indicator for everything being initialized.
212
210
if not handle .pychip_Bdx_ExpectBdxTransfer .argtypes :
213
- setter = chip . native . NativeLibraryHandleMethodArguments (handle )
211
+ setter = NativeLibraryHandleMethodArguments (handle )
214
212
215
213
setter .Set ('pychip_Bdx_ExpectBdxTransfer' ,
216
214
PyChipError , [py_object ])
0 commit comments