-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Refactoring of Energy Management App #35616
Draft
jamesharrow
wants to merge
17
commits into
project-chip:master
Choose a base branch
from
jamesharrow:refactor_energy_management_app
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 5 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
80a9f1c
Refactoring of Energy Management App to move DEM, PowerTopology, EEM/…
jamesharrow 78027dc
Added missing files
jamesharrow 9aac8f0
Restyled by whitespace
restyled-commits b1f742b
Restyled by clang-format
restyled-commits f60fd7d
Updated all-clusters-app BUILD.gn to fix linker errors.
jamesharrow 767a8a2
Merge branch 'upstream-master' into refactor_energy_management_app
jamesharrow 21f6aeb
Removed duplicate electrical-energy-measurement-stub.cpp and power-to…
jamesharrow 1354ae6
Restyled by whitespace
restyled-commits e5e7331
Restyled by clang-format
restyled-commits de6788d
Merge branch 'upstream-master' into refactor_energy_management_app
jamesharrow 1ce153a
Fixed ESP32 build
jamesharrow a067fb2
More build fixes
jamesharrow e54c613
Restyled by clang-format
restyled-commits 54ff768
Merge branch 'master' into refactor_energy_management_app
jamesharrow cfa4fbe
Restored "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/examples/en…
jamesharrow 37672c5
Reverted "${CMAKE_SOURCE_DIR}/third_party/connectedhomeip/examples/en…
jamesharrow 84ad972
Added "${chip_root}/examples/energy-management-app/energy-management-…
jamesharrow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
110 changes: 110 additions & 0 deletions
110
...ergy-management-app/energy-management-common/device-energy-management/src/DEMDelegate.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
/* | ||
* | ||
* Copyright (c) 2024 Project CHIP Authors | ||
* All rights reserved. | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include <DeviceEnergyManagementManager.h> | ||
#include <EnergyManagementAppCmdLineOptions.h> | ||
#include <device-energy-management-modes.h> | ||
|
||
#include <app-common/zap-generated/ids/Attributes.h> | ||
#include <app-common/zap-generated/ids/Clusters.h> | ||
#include <app/ConcreteAttributePath.h> | ||
#include <app/server/Server.h> | ||
#include <lib/support/logging/CHIPLogging.h> | ||
|
||
static constexpr int DEM_ENDPOINT = 1; | ||
|
||
using namespace chip; | ||
using namespace chip::app; | ||
using namespace chip::app::Clusters; | ||
using namespace chip::app::Clusters::DeviceEnergyManagement; | ||
|
||
std::unique_ptr<DeviceEnergyManagementDelegate> gDEMDelegate; | ||
std::unique_ptr<DeviceEnergyManagementManager> gDEMInstance; | ||
|
||
DeviceEnergyManagement::DeviceEnergyManagementDelegate * GetDEMDelegate() | ||
{ | ||
VerifyOrDieWithMsg(gDEMDelegate.get() != nullptr, AppServer, "DEM Delegate is null"); | ||
|
||
return gDEMDelegate.get(); | ||
} | ||
|
||
/* | ||
* @brief Creates a Delegate and Instance for DEM | ||
* | ||
* The Instance is a container around the Delegate, so | ||
* create the Delegate first, then wrap it in the Instance | ||
* Then call the Instance->Init() to register the attribute and command handlers | ||
*/ | ||
CHIP_ERROR DeviceEnergyManagementInit() | ||
{ | ||
if (gDEMDelegate || gDEMInstance) | ||
{ | ||
ChipLogError(AppServer, "DEM Instance or Delegate already exist."); | ||
return CHIP_ERROR_INCORRECT_STATE; | ||
} | ||
|
||
gDEMDelegate = std::make_unique<DeviceEnergyManagementDelegate>(); | ||
if (!gDEMDelegate) | ||
{ | ||
ChipLogError(AppServer, "Failed to allocate memory for DeviceEnergyManagementDelegate"); | ||
return CHIP_ERROR_NO_MEMORY; | ||
} | ||
|
||
BitMask<DeviceEnergyManagement::Feature> featureMap = GetFeatureMapFromCmdLine(); | ||
|
||
/* Manufacturer may optionally not support all features, commands & attributes */ | ||
gDEMInstance = std::make_unique<DeviceEnergyManagementManager>(EndpointId(DEM_ENDPOINT), *gDEMDelegate, featureMap); | ||
|
||
if (!gDEMInstance) | ||
{ | ||
ChipLogError(AppServer, "Failed to allocate memory for DeviceEnergyManagementManager"); | ||
gDEMDelegate.reset(); | ||
return CHIP_ERROR_NO_MEMORY; | ||
} | ||
|
||
gDEMDelegate->SetDeviceEnergyManagementInstance(*gDEMInstance); | ||
|
||
CHIP_ERROR err = gDEMInstance->Init(); /* Register Attribute & Command handlers */ | ||
if (err != CHIP_NO_ERROR) | ||
{ | ||
ChipLogError(AppServer, "Init failed on gDEMInstance"); | ||
gDEMInstance.reset(); | ||
gDEMDelegate.reset(); | ||
return err; | ||
} | ||
|
||
return CHIP_NO_ERROR; | ||
} | ||
|
||
CHIP_ERROR DeviceEnergyManagementShutdown() | ||
{ | ||
/* Do this in the order Instance first, then delegate | ||
* Ensure we call the Instance->Shutdown to free attribute & command handlers first | ||
*/ | ||
if (gDEMInstance) | ||
{ | ||
/* deregister attribute & command handlers */ | ||
gDEMInstance->Shutdown(); | ||
gDEMInstance.reset(); | ||
} | ||
if (gDEMDelegate) | ||
{ | ||
gDEMDelegate.reset(); | ||
} | ||
return CHIP_NO_ERROR; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A general comment - can global variables be avoided? There is an accessor function GetDEMDelegate for the DEM delegate singleton but no accessor functions for the DEM instance.
Also not sure why gDEMDelegate is being exposed when there is a function to access it?