TargetNavigatorManager.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. *
  3. * Copyright (c) 2021 Project CHIP Authors
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. #pragma once
  18. #include "../../java/ContentAppAttributeDelegate.h"
  19. #include <app/clusters/target-navigator-server/target-navigator-server.h>
  20. using chip::CharSpan;
  21. using chip::EndpointId;
  22. using chip::app::AttributeValueEncoder;
  23. using chip::app::CommandResponseHelper;
  24. using TargetNavigatorDelegate = chip::app::Clusters::TargetNavigator::Delegate;
  25. using TargetInfoType = chip::app::Clusters::TargetNavigator::Structs::TargetInfoStruct::Type;
  26. using NavigateTargetResponseType = chip::app::Clusters::TargetNavigator::Commands::NavigateTargetResponse::Type;
  27. using ContentAppAttributeDelegate = chip::AppPlatform::ContentAppAttributeDelegate;
  28. class TargetNavigatorManager : public TargetNavigatorDelegate
  29. {
  30. public:
  31. TargetNavigatorManager() : TargetNavigatorManager(nullptr, { "exampleName", "exampleName" }, kNoCurrentTarget){};
  32. TargetNavigatorManager(ContentAppAttributeDelegate * attributeDelegate, std::list<std::string> targets, uint8_t currentTarget);
  33. CHIP_ERROR HandleGetTargetList(AttributeValueEncoder & aEncoder) override;
  34. uint8_t HandleGetCurrentTarget() override;
  35. void HandleNavigateTarget(CommandResponseHelper<NavigateTargetResponseType> & responser, const uint64_t & target,
  36. const CharSpan & data) override;
  37. void SetEndpointId(EndpointId epId) { mEndpointId = epId; };
  38. protected:
  39. // NOTE: the ids for each target start at 1 so that we can reserve 0 as "no current target"
  40. static const uint8_t kNoCurrentTarget = 0;
  41. std::list<std::string> mTargets;
  42. uint8_t mCurrentTarget;
  43. EndpointId mEndpointId;
  44. ContentAppAttributeDelegate * mAttributeDelegate;
  45. };