Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / examples / lighting-app / qpg6100 / src / ZclCallbacks.cpp
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    All rights reserved.
5  *
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18
19 #include <support/logging/CHIPLogging.h>
20
21 #include "AppTask.h"
22 #include "LightingManager.h"
23
24 #include "gen/attribute-id.h"
25 #include "gen/cluster-id.h"
26 #include "gen/command-id.h"
27
28 #include <app/chip-zcl-zpro-codec.h>
29 #include <app/util/af-types.h>
30 #include <app/util/attribute-storage.h>
31 #include <app/util/util.h>
32
33 using namespace ::chip;
34
35 void emberAfPostAttributeChangeCallback(EndpointId endpoint, ClusterId clusterId, AttributeId attributeId, uint8_t mask,
36                                         uint16_t manufacturerCode, uint8_t type, uint8_t size, uint8_t * value)
37 {
38     if (clusterId == ZCL_ON_OFF_CLUSTER_ID)
39     {
40         if (attributeId != ZCL_ON_OFF_ATTRIBUTE_ID)
41         {
42             ChipLogProgress(Zcl, "Unknown attribute ID: %d", attributeId);
43             return;
44         }
45
46         LightingMgr().InitiateAction(*value ? LightingManager::ON_ACTION : LightingManager::OFF_ACTION, AppEvent::kEventType_Level,
47                                      size, value);
48     }
49     else if (clusterId == ZCL_LEVEL_CONTROL_CLUSTER_ID)
50     {
51         if (attributeId != ZCL_MOVE_TO_LEVEL_COMMAND_ID)
52         {
53             ChipLogProgress(Zcl, "Unknown attribute ID: %d", attributeId);
54             return;
55         }
56
57         ChipLogProgress(Zcl, "Value: %u, length %u", *value, size);
58         if (size == 1)
59         {
60             LightingMgr().InitiateAction(LightingManager::LEVEL_ACTION, AppEvent::kEventType_Level, size, value);
61         }
62         else
63         {
64             ChipLogError(Zcl, "wrong length for level: %d", size);
65         }
66     }
67     else
68     {
69         ChipLogProgress(Zcl, "Unknown cluster ID: %d", clusterId);
70         return;
71     }
72 }
73
74 /** @brief OnOff Cluster Init
75  *
76  * This function is called when a specific cluster is initialized. It gives the
77  * application an opportunity to take care of cluster initialization procedures.
78  * It is called exactly once for each endpoint where cluster is present.
79  *
80  * @param endpoint   Ver.: always
81  *
82  * TODO Issue #3841
83  * emberAfOnOffClusterInitCallback happens before the stack initialize the cluster
84  * attributes to the default value.
85  * The logic here expects something similar to the deprecated Plugins callback
86  * emberAfPluginOnOffClusterServerPostInitCallback.
87  *
88  */
89 void emberAfOnOffClusterInitCallback(EndpointId endpoint)
90 {
91     GetAppTask().UpdateClusterState();
92 }