blob: a7f94a1f8d13244f163da7c09eee65b67e06d313 [file] [log] [blame]
/*
*
* 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 "WaterLeakDetectorAppAttrUpdateDelegate.h"
#include "WaterLeakDetectorManager.h"
#include <AppMain.h>
#include <platform/CHIPDeviceConfig.h>
#if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
#include <imgui_ui/ui.h>
#include <imgui_ui/windows/boolean_state.h>
#include <imgui_ui/windows/connectivity.h>
#include <imgui_ui/windows/occupancy_sensing.h>
#include <imgui_ui/windows/qrcode.h>
#endif
static constexpr chip::EndpointId sWaterLeakDetectorEndpointId = 1;
using namespace chip;
using namespace chip::app;
using namespace chip::app::Clusters;
namespace {
NamedPipeCommands sChipNamedPipeCommands;
WaterLeakDetectorAppAttrUpdateDelegate sWaterLeakDetectorAppAttrUpdateDelegate;
} // namespace
void ApplicationInit()
{
WaterLeakDetectorManager::InitInstance(sWaterLeakDetectorEndpointId);
}
void ApplicationShutdown() {}
int main(int argc, char * argv[])
{
VerifyOrDie(ChipLinuxAppInit(argc, argv) == 0);
std::string path = std::string(LinuxDeviceOptions::GetInstance().app_pipe);
if ((!path.empty()) and (sChipNamedPipeCommands.Start(path, &sWaterLeakDetectorAppAttrUpdateDelegate) != CHIP_NO_ERROR))
{
ChipLogError(NotSpecified, "Failed to start CHIP NamedPipeCommands");
sChipNamedPipeCommands.Stop();
}
#if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
example::Ui::ImguiUi ui;
ui.AddWindow(std::make_unique<example::Ui::Windows::QRCode>());
ui.AddWindow(std::make_unique<example::Ui::Windows::Connectivity>());
ui.AddWindow(std::make_unique<example::Ui::Windows::BooleanState>(chip::EndpointId(1), "Water Leak Detector"));
ChipLinuxAppMainLoop(&ui);
#else
ChipLinuxAppMainLoop();
#endif
return 0;
}