| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /**
- *
- * 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 "OnOffManager.h"
- #include "DeviceApp-JNI.h"
- #include <app-common/zap-generated/attributes/Accessors.h>
- #include <app-common/zap-generated/ids/Clusters.h>
- #include <app/util/af.h>
- #include <app/util/config.h>
- #include <jni.h>
- #include <lib/support/CHIPJNIError.h>
- #include <lib/support/JniReferences.h>
- #include <lib/support/JniTypeWrappers.h>
- using namespace chip;
- static constexpr size_t kOnffManagerTableSize = EMBER_AF_ON_OFF_CLUSTER_SERVER_ENDPOINT_COUNT;
- namespace {
- OnOffManager * gOnOffManagerTable[kOnffManagerTableSize] = { nullptr };
- static_assert(kOnffManagerTableSize <= kEmberInvalidEndpointIndex, "gOnOffManagerTable table size error");
- } // namespace
- void emberAfOnOffClusterInitCallback(EndpointId endpoint)
- {
- ChipLogProgress(Zcl, "Device App::OnOff::PostClusterInit");
- DeviceAppJNIMgr().PostClusterInit(chip::app::Clusters::OnOff::Id, endpoint);
- }
- void OnOffManager::NewManager(jint endpoint, jobject manager)
- {
- ChipLogProgress(Zcl, "Device App: OnOffManager::NewManager");
- uint16_t ep = emberAfGetClusterServerEndpointIndex(static_cast<chip::EndpointId>(endpoint), app::Clusters::OnOff::Id,
- EMBER_AF_ON_OFF_CLUSTER_SERVER_ENDPOINT_COUNT);
- VerifyOrReturn(ep < kOnffManagerTableSize, ChipLogError(Zcl, "Device App::OnOff::NewManager: endpoint %d not found", endpoint));
- VerifyOrReturn(gOnOffManagerTable[ep] == nullptr,
- ChipLogError(Zcl, "Device App::OnOff::NewManager: endpoint %d already has a manager", endpoint));
- OnOffManager * mgr = new OnOffManager();
- CHIP_ERROR err = mgr->InitializeWithObjects(manager);
- if (err != CHIP_NO_ERROR)
- {
- ChipLogError(Zcl, "Device App::OnOff::NewManager: failed to initialize manager for endpoint %d", endpoint);
- delete mgr;
- }
- else
- {
- gOnOffManagerTable[ep] = mgr;
- }
- }
- OnOffManager * GetOnOffManager(EndpointId endpoint)
- {
- uint16_t ep =
- emberAfGetClusterServerEndpointIndex(endpoint, app::Clusters::OnOff::Id, EMBER_AF_ON_OFF_CLUSTER_SERVER_ENDPOINT_COUNT);
- return (ep >= kOnffManagerTableSize ? nullptr : gOnOffManagerTable[ep]);
- }
- void OnOffManager::PostOnOffChanged(chip::EndpointId endpoint, bool value)
- {
- ChipLogProgress(Zcl, "Device App: OnOffManager::PostOnOffChange");
- OnOffManager * mgr = GetOnOffManager(endpoint);
- VerifyOrReturn(mgr != nullptr, ChipLogError(Zcl, "OnOffManager null"));
- mgr->HandleOnOffChanged(value);
- }
- jboolean OnOffManager::SetOnOff(jint endpoint, bool value)
- {
- EmberAfStatus status = app::Clusters::OnOff::Attributes::OnOff::Set(static_cast<chip::EndpointId>(endpoint), value);
- return status == EMBER_ZCL_STATUS_SUCCESS;
- }
- CHIP_ERROR OnOffManager::InitializeWithObjects(jobject managerObject)
- {
- JNIEnv * env = JniReferences::GetInstance().GetEnvForCurrentThread();
- VerifyOrReturnLogError(env != nullptr, CHIP_ERROR_INCORRECT_STATE);
- mOnOffManagerObject = env->NewGlobalRef(managerObject);
- VerifyOrReturnLogError(mOnOffManagerObject != nullptr, CHIP_ERROR_INVALID_ARGUMENT);
- jclass OnOffManagerClass = env->GetObjectClass(managerObject);
- VerifyOrReturnLogError(OnOffManagerClass != nullptr, CHIP_ERROR_INVALID_ARGUMENT);
- mHandleOnOffChangedMethod = env->GetMethodID(OnOffManagerClass, "handleOnOffChanged", "(Z)V");
- if (mHandleOnOffChangedMethod == nullptr)
- {
- ChipLogError(Zcl, "Failed to access OnOffManager 'handleOnOffChanged' method");
- env->ExceptionClear();
- return CHIP_ERROR_INVALID_ARGUMENT;
- }
- return CHIP_NO_ERROR;
- }
- void OnOffManager::HandleOnOffChanged(bool value)
- {
- ChipLogProgress(Zcl, "OnOffManager::HandleOnOffChanged");
- JNIEnv * env = JniReferences::GetInstance().GetEnvForCurrentThread();
- VerifyOrReturn(env != NULL, ChipLogProgress(Zcl, "env null"));
- VerifyOrReturn(mOnOffManagerObject != nullptr, ChipLogProgress(Zcl, "mOnOffManagerObject null"));
- VerifyOrReturn(mHandleOnOffChangedMethod != nullptr, ChipLogProgress(Zcl, "mHandleOnOffChangedMethod null"));
- env->ExceptionClear();
- env->CallVoidMethod(mOnOffManagerObject, mHandleOnOffChangedMethod, static_cast<jboolean>(value));
- if (env->ExceptionCheck())
- {
- ChipLogError(AppServer, "Java exception in OnOffManager::HandleOnOffChanged");
- env->ExceptionDescribe();
- env->ExceptionClear();
- }
- }
|