OnOffManager.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. *
  3. * Copyright (c) 2023 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 <app-common/zap-generated/cluster-objects.h>
  19. #include <jni.h>
  20. /**
  21. * @brief Handles interfacing between java code and C++ code for the purposes of On/Off clusters.
  22. */
  23. class OnOffManager
  24. {
  25. public:
  26. // installed a bridege for a On/Off cluster endpoint and java object
  27. static void NewManager(jint endpoint, jobject manager);
  28. // helps for java to set attributes::OnOff of OnOff cluster
  29. static jboolean SetOnOff(jint endpoint, bool value);
  30. // posts a OnOffChanged event to suitable OnOffManager
  31. static void PostOnOffChanged(chip::EndpointId endpoint, bool value);
  32. // handles `Changed` callbacks by calling the java `void HandleOnOffChanged()` method
  33. void HandleOnOffChanged(bool value);
  34. private:
  35. // init with java objects
  36. CHIP_ERROR InitializeWithObjects(jobject managerObject);
  37. jobject mOnOffManagerObject = nullptr;
  38. jmethodID mHandleOnOffChangedMethod = nullptr;
  39. };