1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/*
* Copyright © 2014 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authored by: Pete Woods <pete.woods@canonical.com>
*/
#include <unity/gmenuharness/MatchUtils.h>
#include <unity/util/ResourcePtr.h>
using namespace std;
namespace util = unity::util;
namespace unity
{
namespace gmenuharness
{
void waitForCore (GObject * obj, const string& signalName, unsigned int timeout) {
shared_ptr<GMainLoop> loop(g_main_loop_new(nullptr, false), &g_main_loop_unref);
/* Our two exit criteria */
util::ResourcePtr<gulong, function<void(gulong)>> signal(
g_signal_connect_swapped(obj, signalName.c_str(),
G_CALLBACK(g_main_loop_quit), loop.get()),
[obj](gulong s)
{
g_signal_handler_disconnect(obj, s);
});
util::ResourcePtr<guint, function<void(guint)>> timer(g_timeout_add(timeout,
[](gpointer user_data) -> gboolean
{
g_main_loop_quit((GMainLoop *)user_data);
return G_SOURCE_CONTINUE;
},
loop.get()),
&g_source_remove);
/* Wait for sync */
g_main_loop_run(loop.get());
}
void menuWaitForItems(const shared_ptr<GMenuModel>& menu, unsigned int timeout)
{
waitForCore(G_OBJECT(menu.get()), "items-changed", timeout);
}
void g_object_deleter(gpointer object)
{
g_clear_object(&object);
}
void gvariant_deleter(GVariant* varptr)
{
if (varptr != nullptr)
{
g_variant_unref(varptr);
}
}
} // namespace gmenuharness
} // namespace unity
|