summaryrefslogtreecommitdiff
path: root/libdbus/xfpm-dbus.c
blob: 72dd0475c94762808650890d57c075317e5cd2ff (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * * Copyright (C) 2008-2011 Ali <aliov@xfce.org>
 *
 * Licensed under the GNU General Public License Version 2
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "xfpm-dbus.h"

gboolean
xfpm_dbus_name_has_owner (GDBusConnection *connection, const gchar *name)
{
  GError *error = NULL;
  const gchar *owner = NULL;
  gboolean ret;
  GVariant *var;

  var = g_dbus_connection_call_sync (connection,
                                     "org.freedesktop.DBus",  /* name */
                                     "/org/freedesktop/DBus", /* object path */
                                     "org.freedesktop.DBus",  /* interface */
                                     "GetNameOwner",
                                     g_variant_new ("(s)", name),
                                     G_VARIANT_TYPE ("(s)"),
                                     G_DBUS_CALL_FLAGS_NONE,
                                     -1,           /* timeout */
                                     NULL,
                                     &error);
  if (var)
  {
    g_variant_get (var, "(&s)", &owner);
    g_variant_unref (var);
  }
  ret = (owner != NULL);

  if ( error )
  {
    if (! g_error_matches (error, G_DBUS_ERROR, G_DBUS_ERROR_NAME_HAS_NO_OWNER))
      g_warning("Failed to get name owner: %s\n", error->message);

    g_error_free(error);
    return FALSE;
  }

  return ret;
}

gboolean xfpm_dbus_register_name(GDBusConnection *connection, const gchar *name)
{
  GError *error = NULL;
  guint32 ret = 0;
  GVariant *var;

  var = g_dbus_connection_call_sync (connection,
                                     "org.freedesktop.DBus",  /* bus name */
                                     "/org/freedesktop/DBus", /* object path */
                                     "org.freedesktop.DBus",  /* interface name */
                                     "RequestName",           /* method name */
                                     g_variant_new ("(su)",
                                                    name,
                                                    0x4),     /* DBUS_NAME_FLAG_DO_NOT_QUEUE */
                                     G_VARIANT_TYPE ("(u)"),
                                     G_DBUS_CALL_FLAGS_NONE,
                                     -1,
                                     NULL,
                                     &error);

  if (var)
  {
    g_variant_get (var, "(u)", &ret);
    g_variant_unref (var);
  }

  if ( error )
  {
    g_warning("Error: %s\n",error->message);
    g_error_free(error);
    return FALSE;
  }

  if ( ret == 1 ) /* DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER */
  {
    return TRUE;
  }

  return FALSE;
}

gboolean xfpm_dbus_release_name(GDBusConnection *connection, const gchar *name)
{
  GError *error = NULL;
  GVariant *var;

  var = g_dbus_connection_call_sync (connection,
                                     "org.freedesktop.DBus",  /* bus name */
                                     "/org/freedesktop/DBus", /* object path */
                                     "org.freedesktop.DBus",  /* interface name */
                                     "ReleaseName",           /* method name */
                                     g_variant_new ("(s)", name),
                                     G_VARIANT_TYPE ("(u)"),
                                     G_DBUS_CALL_FLAGS_NONE,
                                     -1,
                                     NULL,
                                     &error);
  if (var)
    g_variant_unref (var);

  if ( error )
  {
    g_warning("Error: %s\n",error->message);
    g_error_free(error);
    return FALSE;
  }

  return TRUE;
}