-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modifying the placeholder app to have example output
- Loading branch information
Showing
5 changed files
with
139 additions
and
30 deletions.
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
115 changes: 115 additions & 0 deletions
115
examples/placeholder/linux/resource-monitoring-instances.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,115 @@ | ||
/* | ||
* | ||
* Copyright (c) 2023 Project CHIP Authors | ||
* | ||
* 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 <app-common/zap-generated/ids/Attributes.h> | ||
#include <app-common/zap-generated/ids/Clusters.h> | ||
#include <app/clusters/resource-monitoring-server/resource-monitoring-cluster-objects.h> | ||
#include <app/clusters/resource-monitoring-server/resource-monitoring-server.h> | ||
#include <resource-monitoring-instances.h> | ||
|
||
using namespace chip; | ||
using namespace chip::app; | ||
using namespace chip::app::Clusters; | ||
using namespace chip::app::Clusters::ResourceMonitoring; | ||
using chip::Protocols::InteractionModel::Status; | ||
|
||
constexpr std::bitset<4> gHepaFilterFeatureMap{ static_cast<uint32_t>(Feature::kCondition) | | ||
static_cast<uint32_t>(Feature::kWarning) | | ||
static_cast<uint32_t>(Feature::kReplacementProductList) }; | ||
constexpr std::bitset<4> gActivatedCarbonFeatureMap{ static_cast<uint32_t>(Feature::kCondition) | | ||
static_cast<uint32_t>(Feature::kWarning) | | ||
static_cast<uint32_t>(Feature::kReplacementProductList) }; | ||
|
||
static HepaFilterMonitoringInstance * gHepaFilterInstance = nullptr; | ||
static ActivatedCarbonFilterMonitoringInstance * gActivatedCarbonFilterInstance = nullptr; | ||
|
||
static ResourceMonitoring::Attributes::GenericType sReplacementProductsList[] = { | ||
{ ProductIdentifierTypeEnum::kUpc, CharSpan::fromCharString("111112222233") }, | ||
{ ProductIdentifierTypeEnum::kGtin8, CharSpan::fromCharString("gtin8xxx") }, | ||
{ ProductIdentifierTypeEnum::kEan, CharSpan::fromCharString("4444455555666") }, | ||
{ ProductIdentifierTypeEnum::kGtin14, CharSpan::fromCharString("gtin14xxxxxxxx") }, | ||
{ ProductIdentifierTypeEnum::kOem, CharSpan::fromCharString("oem20xxxxxxxxxxxxxxx") }, | ||
}; | ||
StaticReplacementProductListManager sReplacementProductListManager(&sReplacementProductsList[0], | ||
ArraySize(sReplacementProductsList)); | ||
|
||
//-- Activated Carbon Filter Monitoring Instance methods | ||
CHIP_ERROR ActivatedCarbonFilterMonitoringInstance::AppInit() | ||
{ | ||
ChipLogDetail(Zcl, "ActivatedCarbonFilterMonitoringDelegate::Init()"); | ||
SetReplacementProductListManagerInstance(&sReplacementProductListManager); | ||
return CHIP_NO_ERROR; | ||
} | ||
|
||
Status ActivatedCarbonFilterMonitoringInstance::PreResetCondition() | ||
{ | ||
ChipLogDetail(Zcl, "ActivatedCarbonFilterMonitoringInstance::PreResetCondition()"); | ||
return Status::Success; | ||
} | ||
|
||
Status ActivatedCarbonFilterMonitoringInstance::PostResetCondition() | ||
{ | ||
ChipLogDetail(Zcl, "ActivatedCarbonFilterMonitoringInstance::PostResetCondition()"); | ||
return Status::Success; | ||
} | ||
|
||
//-- Hepa Filter Monitoring instance methods | ||
CHIP_ERROR HepaFilterMonitoringInstance::AppInit() | ||
{ | ||
ChipLogDetail(Zcl, "HepaFilterMonitoringInstance::Init()"); | ||
SetReplacementProductListManagerInstance(&sReplacementProductListManager); | ||
return CHIP_NO_ERROR; | ||
} | ||
|
||
Status HepaFilterMonitoringInstance::PreResetCondition() | ||
{ | ||
ChipLogDetail(Zcl, "HepaFilterMonitoringInstance::PreResetCondition()"); | ||
return Status::Success; | ||
} | ||
|
||
Status HepaFilterMonitoringInstance::PostResetCondition() | ||
{ | ||
ChipLogDetail(Zcl, "HepaFilterMonitoringInstance::PostResetCondition()"); | ||
return Status::Success; | ||
} | ||
|
||
void emberAfActivatedCarbonFilterMonitoringClusterInitCallback(chip::EndpointId endpoint) | ||
{ | ||
VerifyOrDie(gActivatedCarbonFilterInstance == nullptr); | ||
gActivatedCarbonFilterInstance = new ActivatedCarbonFilterMonitoringInstance( | ||
endpoint, static_cast<uint32_t>(gActivatedCarbonFeatureMap.to_ulong()), DegradationDirectionEnum::kDown, true); | ||
gActivatedCarbonFilterInstance->Init(); | ||
} | ||
void emberAfHepaFilterMonitoringClusterInitCallback(chip::EndpointId endpoint) | ||
{ | ||
VerifyOrDie(gHepaFilterInstance == nullptr); | ||
gHepaFilterInstance = new HepaFilterMonitoringInstance(endpoint, static_cast<uint32_t>(gHepaFilterFeatureMap.to_ulong()), | ||
DegradationDirectionEnum::kDown, true); | ||
gHepaFilterInstance->Init(); | ||
} | ||
|
||
CHIP_ERROR StaticReplacementProductListManager::Next(Attributes::GenericType & item) | ||
{ | ||
if (mIndex < mReplacementProductListSize) | ||
{ | ||
item = mReplacementProductsList[mIndex]; | ||
mIndex++; | ||
return CHIP_NO_ERROR; | ||
} | ||
|
||
return CHIP_ERROR_PROVIDER_LIST_EXHAUSTED; | ||
} |
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