Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / lock-app / efr32 / src / ZclCallbacks.cpp
1 /*
2  *
3  *    Copyright (c) 2020 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
18 /**
19  * @file
20  *   This file implements the handler for data model messages.
21  */
22
23 #include "AppConfig.h"
24 #include "BoltLockManager.h"
25
26 #include "gen/attribute-id.h"
27 #include "gen/cluster-id.h"
28 #include "gen/command-id.h"
29 #include <app/chip-zcl-zpro-codec.h>
30 #include <app/util/af-types.h>
31 #include <app/util/attribute-storage.h>
32 #include <app/util/util.h>
33
34 using namespace ::chip;
35
36 void emberAfPostAttributeChangeCallback(EndpointId endpoint, ClusterId clusterId, AttributeId attributeId, uint8_t mask,
37                                         uint16_t manufacturerCode, uint8_t type, uint8_t size, uint8_t * value)
38 {
39     if (clusterId != ZCL_ON_OFF_CLUSTER_ID)
40     {
41         EFR32_LOG("Unknown cluster ID: %d", clusterId);
42         return;
43     }
44
45     if (attributeId != ZCL_ON_OFF_ATTRIBUTE_ID)
46     {
47         EFR32_LOG("Unknown attribute ID: %d", attributeId);
48         return;
49     }
50
51     if (*value)
52     {
53         BoltLockMgr().InitiateAction(AppEvent::kEventType_Lock, BoltLockManager::LOCK_ACTION);
54     }
55     else
56     {
57         BoltLockMgr().InitiateAction(AppEvent::kEventType_Lock, BoltLockManager::UNLOCK_ACTION);
58     }
59 }
60
61 /** @brief OnOff Cluster Init
62  *
63  * This function is called when a specific cluster is initialized. It gives the
64  * application an opportunity to take care of cluster initialization procedures.
65  * It is called exactly once for each endpoint where cluster is present.
66  *
67  * @param endpoint   Ver.: always
68  *
69  * TODO Issue #3841
70  * emberAfOnOffClusterInitCallback happens before the stack initialize the cluster
71  * attributes to the default value.
72  * The logic here expects something similar to the deprecated Plugins callback
73  * emberAfPluginOnOffClusterServerPostInitCallback.
74  *
75  */
76 void emberAfOnOffClusterInitCallback(EndpointId endpoint)
77 {
78     // TODO: implement any additional Cluster Server init actions
79 }