Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / platform / Linux / bluez / BluezObjectList.h
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
18 #pragma once
19
20 #include <glib.h>
21
22 #include <platform/CHIPDeviceConfig.h>
23 #include <platform/Linux/dbus/bluez/DbusBluez.h>
24 #include <support/logging/CHIPLogging.h>
25
26 #include "BluezObjectIterator.h"
27
28 namespace chip {
29 namespace DeviceLayer {
30 namespace Internal {
31
32 /**
33  *  C++ wrapper for a Bluez object list based on a object manager
34  */
35 class BluezObjectList
36 {
37 public:
38     explicit BluezObjectList(GDBusObjectManager * manager) { Initialize(manager); }
39
40     ~BluezObjectList() { g_list_free_full(mObjectList, g_object_unref); }
41
42     BluezObjectIterator begin() const { return BluezObjectIterator(mObjectList); }
43     BluezObjectIterator end() const { return BluezObjectIterator(); }
44
45 protected:
46     BluezObjectList() {}
47
48     void Initialize(GDBusObjectManager * manager)
49     {
50         if (manager == nullptr)
51         {
52             ChipLogError(DeviceLayer, "Manager is NULL in %s", __func__);
53             return;
54         }
55
56         mObjectList = g_dbus_object_manager_get_objects(manager);
57     }
58
59 private:
60     GList * mObjectList = nullptr;
61 };
62
63 } // namespace Internal
64 } // namespace DeviceLayer
65 } // namespace chip