Skip to content

Commit e5afb18

Browse files
We should not call SetDiagnosticDataProvider within PaltformMgr on ea… (#20806)
* We should not call SetDiagnosticDataProvider within PaltformMgr on each platfrom * Update src/include/platform/DiagnosticDataProvider.h Co-authored-by: Boris Zbarsky <bzbarsky@apple.com> * Allow app to overwrite the default implantation of DiagnosticDataProvider Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent 4cdecc9 commit e5afb18

File tree

58 files changed

+267
-22
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+267
-22
lines changed

src/include/platform/DiagnosticDataProvider.h

+13-2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ struct NetworkInterface : public app::Clusters::GeneralDiagnostics::Structs::Net
6262
NetworkInterface * Next; /* Pointer to the next structure. */
6363
};
6464

65+
class DiagnosticDataProviderImpl;
66+
6567
/**
6668
* Defines the WiFi Diagnostics Delegate class to notify WiFi network events.
6769
*/
@@ -184,12 +186,21 @@ class DiagnosticDataProvider
184186
};
185187

186188
/**
187-
* Returns a reference to a DiagnosticDataProvider object.
189+
* Returns a reference to the public interface of the DiagnosticDataProvider singleton object.
188190
*
189-
* Applications should use this to access the features of the DiagnosticDataProvider.
191+
* Applications should use this to access features of the DiagnosticDataProvider object
192+
* that are common to all platforms.
190193
*/
191194
DiagnosticDataProvider & GetDiagnosticDataProvider();
192195

196+
/**
197+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
198+
*
199+
* Applications can use this to gain access to features of the DiagnosticDataProvider
200+
* that are specific to the selected platform.
201+
*/
202+
extern DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
203+
193204
/**
194205
* Sets a reference to a DiagnosticDataProvider object.
195206
*

src/platform/Ameba/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -423,5 +423,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::ResetWiFiNetworkDiagnosticsCounts()
423423
}
424424
#endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI
425425

426+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
427+
{
428+
return DiagnosticDataProviderImpl::GetDefaultInstance();
429+
}
430+
426431
} // namespace DeviceLayer
427432
} // namespace chip

src/platform/Ameba/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
7070
#endif
7171
};
7272

73+
/**
74+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
75+
*
76+
* Applications can use this to gain access to features of the DiagnosticDataProvider
77+
* that are specific to the selected platform.
78+
*/
79+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
80+
7381
} // namespace DeviceLayer
7482
} // namespace chip

src/platform/Ameba/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
6060
CHIP_ERROR err;
6161

6262
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
63-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
6463

6564
// Make sure the LwIP core lock has been initialized
6665
err = Internal::InitLwIPCoreLock();

src/platform/CYW30739/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -141,5 +141,10 @@ void DiagnosticDataProviderImpl::ReleaseNetworkInterfaces(NetworkInterface * net
141141
}
142142
#endif /* CHIP_DEVICE_CONFIG_ENABLE_THREAD */
143143

144+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
145+
{
146+
return DiagnosticDataProviderImpl::GetDefaultInstance();
147+
}
148+
144149
} // namespace DeviceLayer
145150
} // namespace chip

src/platform/CYW30739/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
5050
#endif /* CHIP_DEVICE_CONFIG_ENABLE_THREAD */
5151
};
5252

53+
/**
54+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
55+
*
56+
* Applications can use this to gain access to features of the DiagnosticDataProvider
57+
* that are specific to the selected platform.
58+
*/
59+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
60+
5361
} // namespace DeviceLayer
5462
} // namespace chip

src/platform/CYW30739/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
4646
SuccessOrExit(err);
4747

4848
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
49-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
5049

5150
/* Create the thread object. */
5251
mThread = wiced_rtos_create_thread();

src/platform/Darwin/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::ResetWatermarks()
7777
return CHIP_NO_ERROR;
7878
}
7979

80+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
81+
{
82+
return DiagnosticDataProviderImpl::GetDefaultInstance();
83+
}
84+
8085
} // namespace DeviceLayer
8186
} // namespace chip

src/platform/Darwin/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
4444
CHIP_ERROR ResetWatermarks() override;
4545
};
4646

47+
/**
48+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
49+
*
50+
* Applications can use this to gain access to features of the DiagnosticDataProvider
51+
* that are specific to the selected platform.
52+
*/
53+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
54+
4755
} // namespace DeviceLayer
4856
} // namespace chip

src/platform/Darwin/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack()
5353
SetDeviceInstanceInfoProvider(&DeviceInstanceInfoProviderMgrImpl());
5454
#endif // CHIP_DISABLE_PLATFORM_KVS
5555
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
56-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
5756

5857
mRunLoopSem = dispatch_semaphore_create(0);
5958

src/platform/DiagnosticDataProvider.cpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222

2323
#include <lib/support/CodeUtils.h>
24+
#include <platform/DiagnosticDataProvider.h>
2425

2526
namespace chip {
2627
namespace DeviceLayer {
@@ -37,8 +38,12 @@ DiagnosticDataProvider * gInstance = nullptr;
3738

3839
DiagnosticDataProvider & GetDiagnosticDataProvider()
3940
{
40-
VerifyOrDie(gInstance != nullptr);
41-
return *gInstance;
41+
if (gInstance != nullptr)
42+
{
43+
return *gInstance;
44+
}
45+
46+
return GetDiagnosticDataProviderImpl();
4247
}
4348

4449
void SetDiagnosticDataProvider(DiagnosticDataProvider * diagnosticDataProvider)

src/platform/EFR32/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -481,5 +481,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::ResetWiFiNetworkDiagnosticsCounts()
481481
}
482482
#endif // SL_WIFI
483483

484+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
485+
{
486+
return DiagnosticDataProviderImpl::GetDefaultInstance();
487+
}
488+
484489
} // namespace DeviceLayer
485490
} // namespace chip

src/platform/EFR32/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
7373
#endif // SL_WIFI
7474
};
7575

76+
/**
77+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
78+
*
79+
* Applications can use this to gain access to features of the DiagnosticDataProvider
80+
* that are specific to the selected platform.
81+
*/
82+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
83+
7684
} // namespace DeviceLayer
7785
} // namespace chip

src/platform/EFR32/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
5151
SuccessOrExit(err);
5252

5353
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
54-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
5554

5655
#if CHIP_SYSTEM_CONFIG_USE_LWIP
5756
// Initialize LwIP.

src/platform/ESP32/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -353,5 +353,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::ResetWiFiNetworkDiagnosticsCounts()
353353
}
354354
#endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI
355355

356+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
357+
{
358+
return DiagnosticDataProviderImpl::GetDefaultInstance();
359+
}
360+
356361
} // namespace DeviceLayer
357362
} // namespace chip

src/platform/ESP32/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
6868
#endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI
6969
};
7070

71+
/**
72+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
73+
*
74+
* Applications can use this to gain access to features of the DiagnosticDataProvider
75+
* that are specific to the selected platform.
76+
*/
77+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
78+
7179
} // namespace DeviceLayer
7280
} // namespace chip

src/platform/ESP32/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ static int app_entropy_source(void * data, unsigned char * output, size_t len, s
6161
CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
6262
{
6363
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
64-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
6564
SetDeviceInfoProvider(&DeviceInfoProviderImpl::GetDefaultInstance());
6665

6766
esp_err_t err;

src/platform/Linux/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -826,5 +826,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::GetWiFiSecurityType(uint8_t & securityTyp
826826
}
827827
#endif // CHIP_DEVICE_CONFIG_ENABLE_WPA
828828

829+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
830+
{
831+
return DiagnosticDataProviderImpl::GetDefaultInstance();
832+
}
833+
829834
} // namespace DeviceLayer
830835
} // namespace chip

src/platform/Linux/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
105105
#endif
106106
};
107107

108+
/**
109+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
110+
*
111+
* Applications can use this to gain access to features of the DiagnosticDataProvider
112+
* that are specific to the selected platform.
113+
*/
114+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
115+
108116
} // namespace DeviceLayer
109117
} // namespace chip

src/platform/Linux/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack()
176176
// Initialize the configuration system.
177177
ReturnErrorOnFailure(Internal::PosixConfig::Init());
178178
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
179-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
180179
SetDeviceInstanceInfoProvider(&DeviceInstanceInfoProviderMgrImpl());
181180

182181
// Call _InitChipStack() on the generic implementation base class

src/platform/P6/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -543,5 +543,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::WiFiCounters(WiFiStatsCountType type, uin
543543
return err;
544544
}
545545

546+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
547+
{
548+
return DiagnosticDataProviderImpl::GetDefaultInstance();
549+
}
550+
546551
} // namespace DeviceLayer
547552
} // namespace chip

src/platform/P6/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
113113
app::DataModel::Nullable<bool> mipv6_offpremise;
114114
};
115115

116+
/**
117+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
118+
*
119+
* Applications can use this to gain access to features of the DiagnosticDataProvider
120+
* that are specific to the selected platform.
121+
*/
122+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
123+
116124
} // namespace DeviceLayer
117125
} // namespace chip

src/platform/P6/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
4444
CHIP_ERROR err;
4545

4646
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
47-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
4847

4948
// Make sure the LwIP core lock has been initialized
5049
err = Internal::InitLwIPCoreLock();

src/platform/Tizen/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,10 @@ DiagnosticDataProviderImpl & DiagnosticDataProviderImpl::GetDefaultInstance()
3636
return sInstance;
3737
}
3838

39+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
40+
{
41+
return DiagnosticDataProviderImpl::GetDefaultInstance();
42+
}
43+
3944
} // namespace DeviceLayer
4045
} // namespace chip

src/platform/Tizen/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
3636
static DiagnosticDataProviderImpl & GetDefaultInstance();
3737
};
3838

39+
/**
40+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
41+
*
42+
* Applications can use this to gain access to features of the DiagnosticDataProvider
43+
* that are specific to the selected platform.
44+
*/
45+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
46+
3947
} // namespace DeviceLayer
4048
} // namespace chip

src/platform/Tizen/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
4040
{
4141
ReturnErrorOnFailure(Internal::PosixConfig::Init());
4242
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
43-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
4443
SetDeviceInstanceInfoProvider(&DeviceInstanceInfoProviderMgrImpl());
4544

4645
return Internal::GenericPlatformManagerImpl_POSIX<PlatformManagerImpl>::_InitChipStack();

src/platform/Zephyr/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -321,5 +321,10 @@ void DiagnosticDataProviderImpl::ReleaseNetworkInterfaces(NetworkInterface * net
321321
}
322322
}
323323

324+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
325+
{
326+
return DiagnosticDataProviderImpl::GetDefaultInstance();
327+
}
328+
324329
} // namespace DeviceLayer
325330
} // namespace chip

src/platform/Zephyr/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
5858
const BootReasonType mBootReason;
5959
};
6060

61+
/**
62+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
63+
*
64+
* Applications can use this to gain access to features of the DiagnosticDataProvider
65+
* that are specific to the selected platform.
66+
*/
67+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
68+
6169
} // namespace DeviceLayer
6270
} // namespace chip

src/platform/Zephyr/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack(void)
107107
err = Internal::ZephyrConfig::Init();
108108
SuccessOrExit(err);
109109
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
110-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
111110

112111
#if !CONFIG_NORDIC_SECURITY_BACKEND
113112
// Add entropy source based on Zephyr entropy driver

src/platform/android/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,10 @@ void DiagnosticDataProviderImpl::ReleaseNetworkInterfaces(NetworkInterface * net
230230
}
231231
}
232232

233+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
234+
{
235+
return DiagnosticDataProviderImpl::GetDefaultInstance();
236+
}
237+
233238
} // namespace DeviceLayer
234239
} // namespace chip

src/platform/android/DiagnosticDataProviderImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,13 @@ class DiagnosticDataProviderImpl : public DiagnosticDataProvider
5353
jmethodID mGetNifMethod = nullptr;
5454
};
5555

56+
/**
57+
* Returns the platform-specific implementation of the DiagnosticDataProvider singleton object.
58+
*
59+
* Applications can use this to gain access to features of the DiagnosticDataProvider
60+
* that are specific to the selected platform.
61+
*/
62+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl();
63+
5664
} // namespace DeviceLayer
5765
} // namespace chip

src/platform/android/PlatformManagerImpl.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ CHIP_ERROR PlatformManagerImpl::_InitChipStack()
4747
err = Internal::AndroidConfig::Init();
4848
SuccessOrExit(err);
4949
SetConfigurationMgr(&ConfigurationManagerImpl::GetDefaultInstance());
50-
SetDiagnosticDataProvider(&DiagnosticDataProviderImpl::GetDefaultInstance());
5150
SetDeviceInstanceInfoProvider(&DeviceInstanceInfoProviderMgrImpl());
5251

5352
// Call _InitChipStack() on the generic implementation base class

src/platform/bouffalolab/BL602/DiagnosticDataProviderImpl.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,10 @@ CHIP_ERROR DiagnosticDataProviderImpl::GetBootReason(BootReasonType & bootReason
133133
return err;
134134
}
135135

136+
DiagnosticDataProvider & GetDiagnosticDataProviderImpl()
137+
{
138+
return DiagnosticDataProviderImpl::GetDefaultInstance();
139+
}
140+
136141
} // namespace DeviceLayer
137142
} // namespace chip

0 commit comments

Comments
 (0)