Skip to content

Commit f698b51

Browse files
committed
Introduce hardcoded updates
Add global check for update where we can insert hardcoded updates or updates from other sources in the future.
1 parent 1cf634b commit f698b51

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

matter_server/server/device_controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from matter_server.common.models import CommissionableNodeData, CommissioningParameters
3333
from matter_server.server.helpers.attributes import parse_attributes_from_read_result
3434
from matter_server.server.helpers.utils import ping_ip
35-
from matter_server.server.ota.dcl import check_for_update
35+
from matter_server.server.ota import check_for_update
3636
from matter_server.server.ota.provider import ExternalOtaProvider
3737
from matter_server.server.sdk import ChipDeviceControllerWrapper
3838

matter_server/server/ota/__init__.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""OTA implementation for the Matter Server."""
2+
3+
from matter_server.server.ota import dcl
4+
5+
HARDCODED_UPDATES: dict[tuple[int, int], dict] = {
6+
# OTA requestor example app, useful for testing
7+
(0xFFF1, 0x8001): {
8+
"vid": 0xFFF1,
9+
"pid": 0x8001,
10+
"softwareVersion": 2,
11+
"softwareVersionString": "2.0",
12+
"cdVersionNumber": 1,
13+
"softwareVersionValid": True,
14+
"minApplicableSoftwareVersion": 1,
15+
"maxApplicableSoftwareVersion": 1,
16+
"otaUrl": "https://github.com/agners/matter-linux-example-apps/releases/download/v1.3.0.0/chip-ota-requestor-app-x86-64.ota",
17+
}
18+
}
19+
20+
21+
async def check_for_update(
22+
vid: int, pid: int, current_software_version: int
23+
) -> None | dict:
24+
"""Check for software updates."""
25+
if (vid, pid) in HARDCODED_UPDATES:
26+
return HARDCODED_UPDATES[(vid, pid)]
27+
28+
return await dcl.check_for_update(vid, pid, current_software_version)

matter_server/server/ota/provider.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async def download_update(self, update_desc: dict) -> None:
225225

226226
loop = asyncio.get_running_loop()
227227
await loop.run_in_executor(
228-
None, functools.partial(DEFAULT_UPDATES_PATH.mkdir, exists_ok=True)
228+
None, functools.partial(DEFAULT_UPDATES_PATH.mkdir, exist_ok=True)
229229
)
230230

231231
file_path = DEFAULT_UPDATES_PATH / file_name
@@ -236,7 +236,7 @@ async def download_update(self, update_desc: dict) -> None:
236236
try:
237237
async with ClientSession(raise_for_status=True) as session:
238238
# fetch the paa certificates list
239-
logging.debug("Download update from f{url}.")
239+
LOGGER.debug("Download update from '%s'.", url)
240240
async with session.get(url) as response:
241241
with file_path.open("wb") as f:
242242
while True:

0 commit comments

Comments
 (0)