(1) add <interface>.h and #include it in corresponding .c
[systembsd.git] / src / interfaces / logind / logind.c
CommitLineData
3b82e3c1 1/*
2 * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
b6ad18ad 16
17#include <unistd.h>
18#include <limits.h>
19
20#include <sys/param.h>
21#include <string.h>
22
23#include <glib/gprintf.h>
8caf1f61 24#include <glib-unix.h>
b6ad18ad 25
1e8c7c88 26#include "logind-gen.h"
a33bcdfa 27#include "logind.h"
3b82e3c1 28
b6ad18ad 29GPtrArray *logind_freeable;
30Login1Manager *logind_interf;
31
1ce41045 32/* --- begin method/property/dbus signal code --- */
b6ad18ad 33
34/*static gboolean
35on_handle_set_hostname(Login1Manager *hn1_passed_interf,
36 GDBusMethodInvocation *invoc,
37 const gchar *greet,
38 gpointer data) {
39 return FALSE;
40}*/
41
42/*const gchar *
43our_get_hostname() {
44
45 gchar *hostname_buf, *ret;
46 size_t hostname_divider;
47
48 hostname_buf = (gchar*) g_malloc0(MAXHOSTNAMELEN);
49 ret = (gchar*) g_malloc0(MAXHOSTNAMELEN);
50 g_ptr_array_add(logind_freeable, hostname_buf);
51 g_ptr_array_add(logind_freeable, ret);
52
53 if(gethostname(hostname_buf, MAXHOSTNAMELEN))
54 return "";
55
56 hostname_divider = strcspn(hostname_buf, ".");
57
58 return strncpy(ret, hostname_buf, hostname_divider);
59}*/
60
1ce41045 61/* --- end method/property/dbus signal code, begin bus/name handlers --- */
b6ad18ad 62
63static void logind_on_bus_acquired(GDBusConnection *conn,
64 const gchar *name,
65 gpointer user_data) {
66
67 g_print("got bus, name: %s\n", name);
68
69}
70
71static void logind_on_name_acquired(GDBusConnection *conn,
72 const gchar *name,
73 gpointer user_data) {
74
75 g_print("got '%s' on system bus\n", name);
76
77 logind_interf = login1_manager_skeleton_new();
78
79 /* attach function pointers to generated struct's method handlers
80 g_signal_connect(logind_interf, "handle-set-hostname", G_CALLBACK(on_handle_set_hostname), NULL); */
81
82 /* set our properties before export
83 login1_manager_set_hostname(logind_interf, our_get_hostname()); */
84
85 if(!g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(logind_interf),
86 conn,
87 "/org/freedesktop/login1_manager",
88 NULL)) {
89
90 g_printf("Failed to export Login1Manager's interface!");
91 }
92
93}
94
ccd2f75b 95/* --- end bus/name handlers, begin misc unix functions --- */
b6ad18ad 96
97/* free()'s */
98void logind_mem_clean() {
99
100 g_ptr_array_foreach(logind_freeable, (GFunc) g_free, NULL);
101 g_ptr_array_free(logind_freeable, TRUE);
102}
103
104static void logind_on_name_lost(GDBusConnection *conn,
105 const gchar *name,
106 gpointer user_data) {
107
108 g_print("lost name %s, exiting...", name);
109
110 logind_mem_clean();
111 g_dbus_interface_skeleton_unexport(G_DBUS_INTERFACE_SKELETON(logind_interf));
112
113}
114
1e8c7c88 115int main() {
b6ad18ad 116
117 guint bus_descriptor;
118 GMainLoop *logind_loop;
119
120 logind_loop = g_main_loop_new(NULL, TRUE);
121 logind_freeable = g_ptr_array_new();
122
123 bus_descriptor = g_bus_own_name(G_BUS_TYPE_SYSTEM,
124 "org.freedesktop.login1_manager",
125 G_BUS_NAME_OWNER_FLAGS_NONE,
126 logind_on_bus_acquired,
127 logind_on_name_acquired,
128 logind_on_name_lost,
129 NULL,
130 NULL);
131
132 g_main_loop_run(logind_loop);
133 g_main_loop_unref(logind_loop);
134
135 g_bus_unown_name(bus_descriptor);
136
137 logind_mem_clean();
138
1e8c7c88 139 return 0;
140}