Skip to content

Commit a44fbcf

Browse files
Use relative imports in Matter Python library (project-chip#38133)
* Use relative imports in Matter Python library * Fix unused import warning * Simplify REPL startup * Restore chip namespace * Fix evals * Restyled by isort * Suppress warning for eval used import * Fix another eval * Fix args passing from REPL runner * Load REPL extensions to REPL namespace * Revert changes for REPL startup * Address review comments --------- Co-authored-by: Restyled.io <commits@restyled.io>
1 parent f1de3aa commit a44fbcf

38 files changed

+231
-215
lines changed

src/controller/python/chip/CertificateAuthority.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@
2424
from datetime import timedelta
2525
from typing import List, Optional
2626

27-
import chip.exceptions
28-
from chip import ChipStack, FabricAdmin
29-
from chip.native import PyChipError
30-
from chip.storage import PersistentStorage
27+
from . import ChipStack, FabricAdmin
28+
from .native import GetLibraryHandle, PyChipError
29+
from .storage import PersistentStorage
3130

3231
LOGGER = logging.getLogger(__name__)
3332

@@ -53,7 +52,7 @@ class CertificateAuthority:
5352
'''
5453
@classmethod
5554
def _Handle(cls):
56-
return chip.native.GetLibraryHandle()
55+
return GetLibraryHandle()
5756

5857
@classmethod
5958
def logger(cls):
@@ -229,7 +228,7 @@ class CertificateAuthorityManager:
229228
'''
230229
@classmethod
231230
def _Handle(cls):
232-
return chip.native.GetLibraryHandle()
231+
return GetLibraryHandle()
233232

234233
@classmethod
235234
def logger(cls):

src/controller/python/chip/ChipReplStartup.py

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
#
2+
# Copyright (c) 2021 Project CHIP Authors
3+
# All rights reserved.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
118
import argparse
219
import atexit
320
import builtins
@@ -15,8 +32,6 @@
1532
from rich import inspect, pretty
1633
from rich.console import Console
1734

18-
_fabricAdmins = None
19-
2035

2136
def ReplInit(debug):
2237
#

src/controller/python/chip/ChipStack.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@
3232
from threading import Condition, Lock
3333
from typing import Any, Optional
3434

35-
import chip.native
36-
from chip.native import PyChipError
37-
3835
from .bdx import Bdx
3936
from .clusters import Attribute as ClusterAttribute
4037
from .clusters import Command as ClusterCommand
4138
from .exceptions import ChipStackError, ChipStackException, DeviceError
4239
from .interaction_model import delegate as im
40+
from .native import FindNativeLibraryPath, GetLibraryHandle, Library, PyChipError
4341
from .storage import PersistentStorage
4442

4543
__all__ = [
@@ -264,8 +262,8 @@ def LocateChipDLL(self):
264262

265263
def _loadLib(self):
266264
if self._ChipStackLib is None:
267-
self._ChipStackLib = chip.native.GetLibraryHandle()
268-
self._chipDLLPath = chip.native.FindNativeLibraryPath(chip.native.Library.CONTROLLER)
265+
self._ChipStackLib = GetLibraryHandle()
266+
self._chipDLLPath = FindNativeLibraryPath(Library.CONTROLLER)
269267

270268
self._ChipStackLib.pychip_DeviceController_StackInit.argtypes = [c_void_p, c_bool]
271269
self._ChipStackLib.pychip_DeviceController_StackInit.restype = PyChipError

src/controller/python/chip/FabricAdmin.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
import logging
2222
from typing import List, Optional
2323

24-
from chip import CertificateAuthority, ChipDeviceCtrl
25-
from chip.crypto import p256keypair
26-
from chip.native import GetLibraryHandle
24+
from . import CertificateAuthority, ChipDeviceCtrl
25+
from .crypto import p256keypair
26+
from .native import GetLibraryHandle
2727

2828
LOGGER = logging.getLogger(__name__)
2929

src/controller/python/chip/bdx/Bdx.py

+7-9
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@
2222
from ctypes import CFUNCTYPE, POINTER, c_char_p, c_size_t, c_uint8, c_uint16, c_uint64, c_void_p, py_object
2323
from typing import Callable, Optional
2424

25-
import chip
26-
from chip.native import PyChipError
27-
25+
from ..native import GetLibraryHandle, NativeLibraryHandleMethodArguments, PyChipError
2826
from . import BdxTransfer
2927

3028
c_uint8_p = POINTER(c_uint8)
@@ -121,7 +119,7 @@ def _PrepareForBdxTransfer(future: Future, data: Optional[bytes]) -> PyChipError
121119
122120
Returns the CHIP_ERROR result from the C++ side.
123121
'''
124-
handle = chip.native.GetLibraryHandle()
122+
handle = GetLibraryHandle()
125123
transaction = AsyncTransferObtainedTransaction(future=future, event_loop=asyncio.get_running_loop(), data=data)
126124

127125
ctypes.pythonapi.Py_IncRef(ctypes.py_object(transaction))
@@ -163,7 +161,7 @@ def AcceptTransferAndReceiveData(transfer: c_void_p, dataReceivedClosure: Callab
163161
164162
Returns an error if one is encountered while accepting the transfer.
165163
'''
166-
handle = chip.native.GetLibraryHandle()
164+
handle = GetLibraryHandle()
167165
complete_transaction = AsyncTransferCompletedTransaction(future=transferComplete, event_loop=asyncio.get_running_loop())
168166
ctypes.pythonapi.Py_IncRef(ctypes.py_object(dataReceivedClosure))
169167
ctypes.pythonapi.Py_IncRef(ctypes.py_object(complete_transaction))
@@ -184,7 +182,7 @@ def AcceptTransferAndSendData(transfer: c_void_p, data: bytearray, transferCompl
184182
185183
Returns an error if one is encountered while accepting the transfer.
186184
'''
187-
handle = chip.native.GetLibraryHandle()
185+
handle = GetLibraryHandle()
188186
complete_transaction = AsyncTransferCompletedTransaction(future=transferComplete, event_loop=asyncio.get_running_loop())
189187
ctypes.pythonapi.Py_IncRef(ctypes.py_object(complete_transaction))
190188
res = builtins.chipStack.Call(
@@ -200,17 +198,17 @@ async def RejectTransfer(transfer: c_void_p):
200198
201199
Returns an error if one is encountered while rejecting the transfer.
202200
'''
203-
handle = chip.native.GetLibraryHandle()
201+
handle = GetLibraryHandle()
204202
return await builtins.chipStack.CallAsyncWithResult(
205203
lambda: handle.pychip_Bdx_RejectTransfer(transfer)
206204
)
207205

208206

209207
def Init():
210-
handle = chip.native.GetLibraryHandle()
208+
handle = GetLibraryHandle()
211209
# Uses one of the type decorators as an indicator for everything being initialized.
212210
if not handle.pychip_Bdx_ExpectBdxTransfer.argtypes:
213-
setter = chip.native.NativeLibraryHandleMethodArguments(handle)
211+
setter = NativeLibraryHandleMethodArguments(handle)
214212

215213
setter.Set('pychip_Bdx_ExpectBdxTransfer',
216214
PyChipError, [py_object])

src/controller/python/chip/ble/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# limitations under the License.
1212
"""BLE-related functionality within CHIP"""
1313

14-
from chip.ble.get_adapters import GetAdapters
15-
from chip.ble.scan_devices import DiscoverAsync, DiscoverSync
14+
from .get_adapters import GetAdapters
15+
from .scan_devices import DiscoverAsync, DiscoverSync
1616

1717
__all__ = [
1818
'GetAdapters',

src/controller/python/chip/ble/commissioning/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
from queue import Queue
2020
from typing import Optional
2121

22-
from chip.internal import GetCommissioner
23-
from chip.internal.commissioner import PairingState
22+
from ...internal import GetCommissioner
23+
from ...internal.commissioner import PairingState
2424

2525
TEST_NODE_ID = 11223344
2626

src/controller/python/chip/ble/get_adapters.py

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1+
#
2+
# Copyright (c) 2021 Project CHIP Authors
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
117
from dataclasses import dataclass
218
from typing import List
319

4-
from chip.ble.library_handle import _GetBleLibraryHandle
20+
from .library_handle import _GetBleLibraryHandle
521

622

723
@dataclass

src/controller/python/chip/ble/library_handle.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import ctypes
1818
from ctypes import c_bool, c_char_p, c_uint32, c_void_p, py_object
1919

20-
import chip.native
21-
from chip.ble.types import DeviceScannedCallback, ScanDoneCallback, ScanErrorCallback
20+
from ..native import GetLibraryHandle, NativeLibraryHandleMethodArguments
21+
from .types import DeviceScannedCallback, ScanDoneCallback, ScanErrorCallback
2222

2323

2424
# This prevents python auto-casting c_void_p to integers and
@@ -32,16 +32,16 @@ class VoidPointer(c_void_p):
3232
def _GetBleLibraryHandle() -> ctypes.CDLL:
3333
""" Get the native library handle with BLE method initialization.
3434
35-
Retreives the CHIP native library handle and attaches signatures to
35+
Retrieves the CHIP native library handle and attaches signatures to
3636
native methods.
3737
"""
3838

39-
handle = chip.native.GetLibraryHandle()
39+
handle = GetLibraryHandle()
4040

4141
# Uses one of the type decorators as an indicator for everything being
4242
# initialized. Native methods default to c_int return types
4343
if handle.pychip_ble_adapter_list_new.restype != VoidPointer:
44-
setter = chip.native.NativeLibraryHandleMethodArguments(handle)
44+
setter = NativeLibraryHandleMethodArguments(handle)
4545

4646
setter.Set('pychip_ble_adapter_list_new', VoidPointer, [])
4747
setter.Set('pychip_ble_adapter_list_next', c_bool, [VoidPointer])

src/controller/python/chip/ble/scan_devices.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
from threading import Thread
2121
from typing import Generator
2222

23-
from chip.ble.library_handle import _GetBleLibraryHandle
24-
from chip.ble.types import DeviceScannedCallback, ScanDoneCallback, ScanErrorCallback
23+
from .library_handle import _GetBleLibraryHandle
24+
from .types import DeviceScannedCallback, ScanDoneCallback, ScanErrorCallback
2525

2626

2727
@DeviceScannedCallback

0 commit comments

Comments
 (0)