Skip to content

Commit bf8ce26

Browse files
authored
[Python] Make Logging Filtering global (project-chip#31944)
Log filtering is a global affair, so move the filtering functions to a global context too. This allows to setup logging before creating any device controller. It aligns with how the SDK treats logging. Also enable log filtering for the Linux platform to make the functionality useful on Linux.
1 parent 27b8143 commit bf8ce26

File tree

6 files changed

+52
-38
lines changed

6 files changed

+52
-38
lines changed

src/controller/python/BUILD.gn

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ shared_library("ChipDeviceCtrl") {
8181
"chip/internal/ChipThreadWork.cpp",
8282
"chip/internal/ChipThreadWork.h",
8383
"chip/internal/CommissionerImpl.cpp",
84+
"chip/logging/LoggingFilter.cpp",
8485
"chip/logging/LoggingRedirect.cpp",
8586
"chip/native/ChipMainLoopWork.h",
8687
"chip/native/PyChipError.cpp",

src/controller/python/ChipDeviceController-ScriptBinding.cpp

-20
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
#include <lib/support/CodeUtils.h>
7272
#include <lib/support/DLLUtil.h>
7373
#include <lib/support/ScopedBuffer.h>
74-
#include <lib/support/logging/CHIPLogging.h>
7574
#include <platform/CHIPDeviceLayer.h>
7675
#include <setup_payload/QRCodeSetupPayloadParser.h>
7776
#include <system/SystemClock.h>
@@ -200,9 +199,6 @@ PyChipError pychip_ScriptDevicePairingDelegate_SetOpenWindowCompleteCallback(
200199
// BLE
201200
PyChipError pychip_DeviceCommissioner_CloseBleConnection(chip::Controller::DeviceCommissioner * devCtrl);
202201

203-
uint8_t pychip_DeviceController_GetLogFilter();
204-
void pychip_DeviceController_SetLogFilter(uint8_t category);
205-
206202
const char * pychip_Stack_ErrorToString(ChipError::StorageType err);
207203
const char * pychip_Stack_StatusReportToString(uint32_t profileId, uint16_t statusCode);
208204
void pychip_Stack_SetLogFunct(LogMessageFunct logFunct);
@@ -353,22 +349,6 @@ const char * pychip_DeviceController_StatusReportToString(uint32_t profileId, ui
353349
return nullptr;
354350
}
355351

356-
uint8_t pychip_DeviceController_GetLogFilter()
357-
{
358-
#if _CHIP_USE_LOGGING
359-
return chip::Logging::GetLogFilter();
360-
#else
361-
return chip::Logging::kLogCategory_None;
362-
#endif
363-
}
364-
365-
void pychip_DeviceController_SetLogFilter(uint8_t category)
366-
{
367-
#if _CHIP_USE_LOGGING
368-
chip::Logging::SetLogFilter(category);
369-
#endif
370-
}
371-
372352
PyChipError pychip_DeviceController_ConnectBLE(chip::Controller::DeviceCommissioner * devCtrl, uint16_t discriminator,
373353
uint32_t setupPINCode, chip::NodeId nodeid)
374354
{

src/controller/python/chip/ChipDeviceCtrl.py

-17
Original file line numberDiff line numberDiff line change
@@ -1480,23 +1480,6 @@ def ZCLAttributeList(self):
14801480

14811481
return self._Cluster.ListClusterAttributes()
14821482

1483-
def SetLogFilter(self, category):
1484-
self.CheckIsActive()
1485-
1486-
if category < 0 or category > pow(2, 8):
1487-
raise ValueError("category must be an unsigned 8-bit integer")
1488-
1489-
self._ChipStack.Call(
1490-
lambda: self._dmLib.pychip_DeviceController_SetLogFilter(category)
1491-
)
1492-
1493-
def GetLogFilter(self):
1494-
self.CheckIsActive()
1495-
1496-
self._ChipStack.Call(
1497-
lambda: self._dmLib.pychip_DeviceController_GetLogFilter()
1498-
)
1499-
15001483
def SetBlockingCB(self, blockingCB):
15011484
self.CheckIsActive()
15021485

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
*
3+
* Copyright (c) 2024 Project CHIP Authors
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+
18+
#include <lib/support/logging/CHIPLogging.h>
19+
20+
extern "C" {
21+
22+
uint8_t pychip_logging_GetLogFilter()
23+
{
24+
#if _CHIP_USE_LOGGING
25+
return chip::Logging::GetLogFilter();
26+
#else
27+
return chip::Logging::kLogCategory_None;
28+
#endif
29+
}
30+
31+
void pychip_logging_SetLogFilter(uint8_t category)
32+
{
33+
#if _CHIP_USE_LOGGING
34+
chip::Logging::SetLogFilter(category);
35+
#endif
36+
}
37+
}

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

+13
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,16 @@ def RedirectToPythonLogging():
5151

5252
handle = _GetLoggingLibraryHandle()
5353
handle.pychip_logging_set_callback(_RedirectToPythonLogging)
54+
55+
56+
def SetLogFilter(category):
57+
if category < 0 or category > pow(2, 8):
58+
raise ValueError("category must be an unsigned 8-bit integer")
59+
60+
handle = _GetLoggingLibraryHandle()
61+
handle.pychip_logging_SetLogFilter(category)
62+
63+
64+
def GetLogFilter():
65+
handle = _GetLoggingLibraryHandle()
66+
return handle.pychip_logging_GetLogFilter()

src/platform/Linux/CHIPPlatformConfig.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ using CHIP_CONFIG_PERSISTED_STORAGE_KEY_TYPE = const char *;
5757
#endif // CHIP_CONFIG_MAX_EXCHANGE_CONTEXTS
5858

5959
#ifndef CHIP_LOG_FILTERING
60-
#define CHIP_LOG_FILTERING 0
60+
#define CHIP_LOG_FILTERING 1
6161
#endif // CHIP_LOG_FILTERING
6262

6363
#ifndef CHIP_CONFIG_BDX_MAX_NUM_TRANSFERS

0 commit comments

Comments
 (0)