Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decouple InitDataModelHandler from libCHIP #36725

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2ed8dfb
Decouple InitDataModelHandler from libCHIP
yufengwangca Dec 4, 2024
96b12a6
Use StartUp to init
yufengwangca Dec 4, 2024
5139173
Seperate namespace cleanup out
yufengwangca Dec 5, 2024
77b9d57
Merge remote-tracking branch 'upstream/master' into pr/ember/server
yufengwangca Dec 5, 2024
7ee7ef4
Mock function for linking
yufengwangca Dec 5, 2024
94d7aac
Restyled by clang-format
restyled-commits Dec 5, 2024
4565faf
Add API comment
yufengwangca Dec 5, 2024
982676b
Fix mutiple defination conflicts
yufengwangca Dec 5, 2024
ed2bfef
Address review comments
yufengwangca Dec 5, 2024
bc9d9b3
Merge remote-tracking branch 'upstream/master' into pr/ember/server
yufengwangca Dec 5, 2024
5385f19
Restyled by whitespace
restyled-commits Dec 5, 2024
5a8af59
Seperate InitDataModel out
yufengwangca Dec 6, 2024
d27a5e1
Merge remote-tracking branch 'upstream/master' into pr/ember/server
yufengwangca Dec 11, 2024
bb22e12
Revert "Seperate InitDataModel out"
yufengwangca Dec 11, 2024
b735528
Do not directly manipulate the base class's Startup method
yufengwangca Dec 11, 2024
1616274
Address review comment
yufengwangca Dec 12, 2024
ca96081
Restyled by whitespace
restyled-commits Dec 12, 2024
e7a2ae8
Adjust the init order
yufengwangca Dec 12, 2024
0b32b5b
Restyled by whitespace
restyled-commits Dec 12, 2024
99ada31
Update src/app/server/Server.cpp
yufengwangca Dec 13, 2024
266a107
Update src/controller/CHIPDeviceControllerFactory.cpp
yufengwangca Dec 13, 2024
f382d72
Add TODO comment
yufengwangca Dec 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 18 additions & 14 deletions src/app/server/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include <app/data-model-provider/Provider.h>
#include <app/server/Dnssd.h>
#include <app/server/EchoHandler.h>
#include <app/util/DataModelHandler.h>

#if CONFIG_NETWORK_LAYER_BLE
#include <ble/Ble.h>
Expand Down Expand Up @@ -170,17 +169,6 @@ CHIP_ERROR Server::Init(const ServerInitParams & initParams)
SuccessOrExit(err = mAttributePersister.Init(mDeviceStorage));
SetSafeAttributePersistenceProvider(&mAttributePersister);

// SetDataModelProvider() actually initializes/starts the provider. We need
// to preserve the following ordering guarantees:
//
// 1) Provider initialization (under SetDataModelProvider) happens after
// SetSafeAttributePersistenceProvider, since the provider can then use
// the safe persistence provider to implement and initialize its own attribute persistence logic.
// 2) For now, provider initialization happens before InitDataModelHandler(), which depends
// on atttribute persistence being already set up before it runs. Longer-term, the logic from
// InitDataModelHandler should just move into the codegen provider.
app::InteractionModelEngine::GetInstance()->SetDataModelProvider(initParams.dataModelProvider);

{
FabricTable::InitParams fabricTableInitParams;
fabricTableInitParams.storage = mDeviceStorage;
Expand Down Expand Up @@ -302,8 +290,24 @@ CHIP_ERROR Server::Init(const ServerInitParams & initParams)
}
#endif // CHIP_CONFIG_ENABLE_SERVER_IM_EVENT

// This initializes clusters, so should come after lower level initialization.
InitDataModelHandler();
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved
// SetDataModelProvider() initializes and starts the provider, which in turn
// triggers the initialization of cluster implementations. This callsite is
// critical because it ensures that cluster-level initialization occurs only
// after all necessary low-level dependencies have been set up.
//
// Ordering guarantees:
// 1) Provider initialization (under SetDataModelProvider) must happen after
// SetSafeAttributePersistenceProvider to ensure the provider can leverage
// the safe persistence provider for attribute persistence logic.
// 2) It must occur after all low-level components that cluster implementations
// might depend on have been initialized, as they rely on these components
// during their own initialization.
// 3) `InitDataModelHandler` (also under SetDataModelProvider) assumes attribute
// persistence and other foundational services are fully configured before it runs.
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved
//
// This remains the single point of entry to ensure that all cluster-level
// initialization is performed in the correct order.
app::InteractionModelEngine::GetInstance()->SetDataModelProvider(initParams.dataModelProvider);

#if defined(CHIP_APP_USE_ECHO)
err = InitEchoHandler(&mExchangeMgr);
Expand Down
3 changes: 0 additions & 3 deletions src/app/tests/TestCommissioningWindowManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ using chip::CommissioningWindowAdvertisement;
using chip::CommissioningWindowManager;
using chip::Server;

// Mock function for linking
void InitDataModelHandler() {}

namespace {
bool sAdminFabricIndexDirty = false;
bool sAdminVendorIdDirty = false;
Expand Down
2 changes: 1 addition & 1 deletion src/app/tests/TestInteractionModelEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
#include <app/SimpleSubscriptionResumptionStorage.h>
#include <lib/support/TestPersistentStorageDelegate.h>

#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS

namespace {

class NullReadHandlerCallback : public chip::app::ReadHandler::ManagementCallback
Expand Down
3 changes: 3 additions & 0 deletions src/app/tests/test-ember-api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ uint16_t emberAfGetClusterServerEndpointIndex(chip::EndpointId endpoint, chip::C
}
return endpoint;
}

// Mock function for linking
void InitDataModelHandler() {}
11 changes: 3 additions & 8 deletions src/controller/CHIPDeviceControllerFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,16 +252,11 @@ CHIP_ERROR DeviceControllerFactory::InitSystemState(FactoryInitParams params)

chip::app::InteractionModelEngine * interactionModelEngine = chip::app::InteractionModelEngine::GetInstance();

// Note placement of this BEFORE `InitDataModelHandler` since InitDataModelHandler may
// rely on ember (does emberAfInit() and configure which may load data from NVM).
//
// Expected forward path is that we will move move and more things inside datamodel
// provider (e.g. storage settings) so we want datamodelprovider available before
// `InitDataModelHandler`.
// Calling SetDataModelProvider() initializes the provider and then triggers the
// InitDataModelHandler. As a result, the data model provider will be available
// before InitDataModelHandler is invoked
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved
interactionModelEngine->SetDataModelProvider(params.dataModelProvider);

InitDataModelHandler();
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved

ReturnErrorOnFailure(Dnssd::Resolver::Instance().Init(stateParams.udpEndPointManager));

if (params.enableServerInteractions)
Expand Down
15 changes: 15 additions & 0 deletions src/controller/tests/TestServerCommandDispatch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,20 @@ class DispatchTestDataModel : public CodegenDataModelProvider
static DispatchTestDataModel instance;
return instance;
}

// The Startup method initializes the data model provider with a given context.
// This approach ensures that the test relies on a more controlled and explicit data model provider
// rather than depending on the code-generated one with undefined modifications.
CHIP_ERROR Startup(DataModel::InteractionModelContext context) override
{
ReturnErrorOnFailure(CodegenDataModelProvider::Startup(context));
return CHIP_NO_ERROR;
}

protected:
// Since the current unit tests do not involve any cluster implementations, we override InitDataModel
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved
// to do nothing, thereby preventing calls to the Ember-specific InitDataModelHandler.
void InitDataModel() override {}
};

class TestServerCommandDispatch : public chip::Test::AppContext
Expand All @@ -144,6 +158,7 @@ class TestServerCommandDispatch : public chip::Test::AppContext
AppContext::SetUp();
mOldProvider = InteractionModelEngine::GetInstance()->SetDataModelProvider(&DispatchTestDataModel::Instance());
}

void TearDown()
{
InteractionModelEngine::GetInstance()->SetDataModelProvider(mOldProvider);
Expand Down
3 changes: 3 additions & 0 deletions src/controller/tests/data_model/DataModelFixtures.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ using namespace chip::app::Clusters;
using namespace chip::app::Clusters::UnitTesting;
using namespace chip::Protocols;

// Mock function for linking
void InitDataModelHandler() {}

namespace chip {
namespace app {

Expand Down
9 changes: 9 additions & 0 deletions src/data-model-providers/codegen/CodegenDataModelProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <app/RequiredPrivilege.h>
#include <app/data-model-provider/MetadataTypes.h>
#include <app/data-model-provider/Provider.h>
#include <app/util/DataModelHandler.h>
#include <app/util/IMClusterCommandHandler.h>
#include <app/util/af-types.h>
#include <app/util/attribute-storage.h>
Expand Down Expand Up @@ -437,6 +438,8 @@ CHIP_ERROR CodegenDataModelProvider::Startup(DataModel::InteractionModelContext
}
}

InitDataModel();

return CHIP_NO_ERROR;
}

Expand Down Expand Up @@ -879,6 +882,12 @@ ConcreteCommandPath CodegenDataModelProvider::NextGeneratedCommand(const Concret
return ConcreteCommandPath(before.mEndpointId, before.mClusterId, commandId);
}

void CodegenDataModelProvider::InitDataModel()
{
// Call the Ember-specific InitDataModelHandler
InitDataModelHandler();
}

std::optional<DataModel::DeviceTypeEntry> CodegenDataModelProvider::FirstDeviceType(EndpointId endpoint)
{
// Use the `Index` version even though `emberAfDeviceTypeListFromEndpoint` would work because
Expand Down
3 changes: 3 additions & 0 deletions src/data-model-providers/codegen/CodegenDataModelProvider.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,9 @@ class CodegenDataModelProvider : public DataModel::Provider

void Temporary_ReportAttributeChanged(const AttributePathParams & path) override;

protected:
virtual void InitDataModel();
yufengwangca marked this conversation as resolved.
Show resolved Hide resolved

private:
// Iteration is often done in a tight loop going through all values.
// To avoid N^2 iterations, cache a hint of where something is positioned
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ using namespace chip::app::Clusters::Globals::Attributes;

using chip::Protocols::InteractionModel::Status;

// Mock function for linking
void InitDataModelHandler() {}

namespace {

constexpr AttributeId kAttributeIdReadOnly = 0x3001;
Expand Down
Loading