forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenericPlatformManagerImpl.ipp
374 lines (311 loc) · 11.7 KB
/
GenericPlatformManagerImpl.ipp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
/*
*
* Copyright (c) 2020 Project CHIP Authors
* Copyright (c) 2018 Nest Labs, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* Contains non-inline method definitions for the
* GenericPlatformManagerImpl<> template.
*/
#ifndef GENERIC_PLATFORM_MANAGER_IMPL_CPP
#define GENERIC_PLATFORM_MANAGER_IMPL_CPP
#include <inttypes.h>
#include <new>
#include <platform/DiagnosticDataProvider.h>
#include <platform/PlatformManager.h>
#include <platform/internal/BLEManager.h>
#include <platform/internal/CHIPDeviceLayerInternal.h>
#include <platform/internal/EventLogging.h>
#include <platform/internal/GenericPlatformManagerImpl.h>
#include <lib/support/CHIPMem.h>
#include <lib/support/CodeUtils.h>
#include <lib/support/logging/CHIPLogging.h>
namespace chip {
namespace DeviceLayer {
namespace Internal {
extern CHIP_ERROR InitEntropy();
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_InitChipStack()
{
CHIP_ERROR err;
mMsgLayerWasActive = false;
// Arrange for CHIP core errors to be translated to text
RegisterCHIPLayerErrorFormatter();
// Arrange for Device Layer errors to be translated to text.
RegisterDeviceLayerErrorFormatter();
err = InitEntropy();
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Entropy initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
// Initialize the CHIP system layer.
err = SystemLayer().Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "SystemLayer initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
// Initialize the Configuration Manager.
err = ConfigurationMgr().Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Configuration Manager initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
// Initialize the CHIP UDP layer.
err = UDPEndPointManager()->Init(SystemLayer());
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "UDP initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
#if INET_CONFIG_ENABLE_TCP_ENDPOINT
// Initialize the CHIP TCP layer.
err = TCPEndPointManager()->Init(SystemLayer());
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "TCP initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
#endif
// TODO Perform dynamic configuration of the core CHIP objects based on stored settings.
// Initialize the CHIP BLE manager.
#if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
err = BLEMgr().Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "BLEManager initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
#endif
// Initialize the Connectivity Manager object.
err = ConnectivityMgr().Init();
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Connectivity Manager initialization failed: %" CHIP_ERROR_FORMAT, err.Format());
}
SuccessOrExit(err);
// Initialize the NFC Manager.
#if CHIP_DEVICE_CONFIG_ENABLE_NFC
err = NFCMgr().Init();
VerifyOrExit(err == CHIP_NO_ERROR,
ChipLogError(DeviceLayer, "NFC Manager initialization failed: %" CHIP_ERROR_FORMAT, err.Format()));
#endif
// TODO Initialize CHIP Event Logging.
// TODO Initialize the Time Sync Manager object.
SuccessOrExit(err);
exit:
return err;
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_Shutdown()
{
ChipLogProgress(DeviceLayer, "Inet Layer shutdown");
UDPEndPointManager()->Shutdown();
#if INET_CONFIG_ENABLE_TCP_ENDPOINT
TCPEndPointManager()->Shutdown();
#endif
#if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
ChipLogProgress(DeviceLayer, "BLE Layer shutdown");
BLEMgr().Shutdown();
#endif
ChipLogProgress(DeviceLayer, "System Layer shutdown");
SystemLayer().Shutdown();
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_AddEventHandler(PlatformManager::EventHandlerFunct handler, intptr_t arg)
{
CHIP_ERROR err = CHIP_NO_ERROR;
AppEventHandler * eventHandler;
// Do nothing if the event handler is already registered.
for (eventHandler = mAppEventHandlerList; eventHandler != nullptr; eventHandler = eventHandler->Next)
{
if (eventHandler->Handler == handler && eventHandler->Arg == arg)
{
ExitNow();
}
}
eventHandler = (AppEventHandler *) chip::Platform::MemoryAlloc(sizeof(AppEventHandler));
VerifyOrExit(eventHandler != nullptr, err = CHIP_ERROR_NO_MEMORY);
eventHandler->Next = mAppEventHandlerList;
eventHandler->Handler = handler;
eventHandler->Arg = arg;
mAppEventHandlerList = eventHandler;
exit:
return err;
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_RemoveEventHandler(PlatformManager::EventHandlerFunct handler, intptr_t arg)
{
AppEventHandler ** eventHandlerIndirectPtr;
for (eventHandlerIndirectPtr = &mAppEventHandlerList; *eventHandlerIndirectPtr != nullptr;)
{
AppEventHandler * eventHandler = (*eventHandlerIndirectPtr);
if (eventHandler->Handler == handler && eventHandler->Arg == arg)
{
*eventHandlerIndirectPtr = eventHandler->Next;
chip::Platform::MemoryFree(eventHandler);
}
else
{
eventHandlerIndirectPtr = &eventHandler->Next;
}
}
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_HandleServerStarted()
{
PlatformManagerDelegate * platformManagerDelegate = PlatformMgr().GetDelegate();
if (platformManagerDelegate != nullptr)
{
uint32_t softwareVersion;
if (ConfigurationMgr().GetSoftwareVersion(softwareVersion) == CHIP_NO_ERROR)
platformManagerDelegate->OnStartUp(softwareVersion);
}
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_HandleServerShuttingDown()
{
PlatformManagerDelegate * platformManagerDelegate = PlatformMgr().GetDelegate();
if (platformManagerDelegate != nullptr)
{
platformManagerDelegate->OnShutDown();
}
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_ScheduleWork(AsyncWorkFunct workFunct, intptr_t arg)
{
ChipDeviceEvent event{ .Type = DeviceEventType::kCallWorkFunct };
event.CallWorkFunct = { .WorkFunct = workFunct, .Arg = arg };
CHIP_ERROR err = Impl()->PostEvent(&event);
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Failed to schedule work: %" CHIP_ERROR_FORMAT, err.Format());
}
return err;
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_ScheduleBackgroundWork(AsyncWorkFunct workFunct, intptr_t arg)
{
ChipDeviceEvent event{ .Type = DeviceEventType::kCallWorkFunct };
event.CallWorkFunct = { .WorkFunct = workFunct, .Arg = arg };
CHIP_ERROR err = Impl()->PostBackgroundEvent(&event);
if (err != CHIP_NO_ERROR)
{
ChipLogError(DeviceLayer, "Failed to schedule background work: %" CHIP_ERROR_FORMAT, err.Format());
}
return err;
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_PostBackgroundEvent(const ChipDeviceEvent * event)
{
// Impl class must override to implement background event processing
return Impl()->PostEvent(event);
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_RunBackgroundEventLoop(void)
{
// Impl class must override to implement background event processing
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_StartBackgroundEventLoopTask(void)
{
// Impl class must override to implement background event processing
return CHIP_NO_ERROR;
}
template <class ImplClass>
CHIP_ERROR GenericPlatformManagerImpl<ImplClass>::_StopBackgroundEventLoopTask(void)
{
// Impl class must override to implement background event processing
return CHIP_NO_ERROR;
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::_DispatchEvent(const ChipDeviceEvent * event)
{
#if (CHIP_DISPATCH_EVENT_LONG_DISPATCH_TIME_WARNING_THRESHOLD_MS != 0)
System::Clock::Timestamp start = System::SystemClock().GetMonotonicTimestamp();
#endif // CHIP_DISPATCH_EVENT_LONG_DISPATCH_TIME_WARNING_THRESHOLD_MS != 0
switch (event->Type)
{
case DeviceEventType::kNoOp:
// Do nothing for no-op events.
break;
case DeviceEventType::kChipLambdaEvent:
event->LambdaEvent();
break;
case DeviceEventType::kCallWorkFunct:
// If the event is a "call work function" event, call the specified function.
event->CallWorkFunct.WorkFunct(event->CallWorkFunct.Arg);
break;
default:
// For all other events, deliver the event to each of the components in the Device Layer.
Impl()->DispatchEventToDeviceLayer(event);
// If the event is not an internal event, also deliver it to the application's registered
// event handlers.
if (!event->IsInternal())
{
Impl()->DispatchEventToApplication(event);
}
break;
}
#if (CHIP_DISPATCH_EVENT_LONG_DISPATCH_TIME_WARNING_THRESHOLD_MS != 0)
uint32_t deltaMs = System::Clock::Milliseconds32(System::SystemClock().GetMonotonicTimestamp() - start).count();
if (deltaMs > CHIP_DISPATCH_EVENT_LONG_DISPATCH_TIME_WARNING_THRESHOLD_MS)
{
ChipLogError(DeviceLayer, "Long dispatch time: %" PRIu32 " ms, for event type %d", deltaMs, event->Type);
}
#endif // CHIP_DISPATCH_EVENT_LONG_DISPATCH_TIME_WARNING_THRESHOLD_MS != 0
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::DispatchEventToDeviceLayer(const ChipDeviceEvent * event)
{
// Dispatch the event to all the components in the Device Layer.
#if CHIP_DEVICE_CONFIG_ENABLE_CHIPOBLE
BLEMgr().OnPlatformEvent(event);
#endif
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD
ThreadStackMgr().OnPlatformEvent(event);
#endif
ConnectivityMgr().OnPlatformEvent(event);
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::DispatchEventToApplication(const ChipDeviceEvent * event)
{
// Dispatch the event to each of the registered application event handlers.
for (AppEventHandler * eventHandler = mAppEventHandlerList; eventHandler != nullptr;)
{
AppEventHandler * nextEventHandler = eventHandler->Next;
eventHandler->Handler(event, eventHandler->Arg);
eventHandler = nextEventHandler;
}
}
template <class ImplClass>
void GenericPlatformManagerImpl<ImplClass>::HandleMessageLayerActivityChanged(bool messageLayerIsActive)
{
GenericPlatformManagerImpl<ImplClass> & self = PlatformMgrImpl();
if (messageLayerIsActive != self.mMsgLayerWasActive)
{
self.mMsgLayerWasActive = messageLayerIsActive;
}
}
// Fully instantiate the generic implementation class in whatever compilation unit includes this file.
// NB: This must come after all templated class members are defined.
template class GenericPlatformManagerImpl<PlatformManagerImpl>;
} // namespace Internal
} // namespace DeviceLayer
} // namespace chip
#endif // GENERIC_PLATFORM_MANAGER_IMPL_CPP