copy and regex localed, timedated, and logind from hostnamed
[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>
24
1e8c7c88 25#include "logind-gen.h"
3b82e3c1 26
b6ad18ad 27GPtrArray *logind_freeable;
28Login1Manager *logind_interf;
29
30/* --- begin method/property/signal code --- */
31
32/*static gboolean
33on_handle_set_hostname(Login1Manager *hn1_passed_interf,
34 GDBusMethodInvocation *invoc,
35 const gchar *greet,
36 gpointer data) {
37 return FALSE;
38}*/
39
40/*const gchar *
41our_get_hostname() {
42
43 gchar *hostname_buf, *ret;
44 size_t hostname_divider;
45
46 hostname_buf = (gchar*) g_malloc0(MAXHOSTNAMELEN);
47 ret = (gchar*) g_malloc0(MAXHOSTNAMELEN);
48 g_ptr_array_add(logind_freeable, hostname_buf);
49 g_ptr_array_add(logind_freeable, ret);
50
51 if(gethostname(hostname_buf, MAXHOSTNAMELEN))
52 return "";
53
54 hostname_divider = strcspn(hostname_buf, ".");
55
56 return strncpy(ret, hostname_buf, hostname_divider);
57}*/
58
59/* --- end method/property/signal code, begin bus/name handlers --- */
60
61static void logind_on_bus_acquired(GDBusConnection *conn,
62 const gchar *name,
63 gpointer user_data) {
64
65 g_print("got bus, name: %s\n", name);
66
67}
68
69static void logind_on_name_acquired(GDBusConnection *conn,
70 const gchar *name,
71 gpointer user_data) {
72
73 g_print("got '%s' on system bus\n", name);
74
75 logind_interf = login1_manager_skeleton_new();
76
77 /* attach function pointers to generated struct's method handlers
78 g_signal_connect(logind_interf, "handle-set-hostname", G_CALLBACK(on_handle_set_hostname), NULL); */
79
80 /* set our properties before export
81 login1_manager_set_hostname(logind_interf, our_get_hostname()); */
82
83 if(!g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(logind_interf),
84 conn,
85 "/org/freedesktop/login1_manager",
86 NULL)) {
87
88 g_printf("Failed to export Login1Manager's interface!");
89 }
90
91}
92
93/* --- end bus/name handlers, begin misc functions --- */
94
95/* free()'s */
96void logind_mem_clean() {
97
98 g_ptr_array_foreach(logind_freeable, (GFunc) g_free, NULL);
99 g_ptr_array_free(logind_freeable, TRUE);
100}
101
102static void logind_on_name_lost(GDBusConnection *conn,
103 const gchar *name,
104 gpointer user_data) {
105
106 g_print("lost name %s, exiting...", name);
107
108 logind_mem_clean();
109 g_dbus_interface_skeleton_unexport(G_DBUS_INTERFACE_SKELETON(logind_interf));
110
111}
112
1e8c7c88 113int main() {
b6ad18ad 114
115 guint bus_descriptor;
116 GMainLoop *logind_loop;
117
118 logind_loop = g_main_loop_new(NULL, TRUE);
119 logind_freeable = g_ptr_array_new();
120
121 bus_descriptor = g_bus_own_name(G_BUS_TYPE_SYSTEM,
122 "org.freedesktop.login1_manager",
123 G_BUS_NAME_OWNER_FLAGS_NONE,
124 logind_on_bus_acquired,
125 logind_on_name_acquired,
126 logind_on_name_lost,
127 NULL,
128 NULL);
129
130 g_main_loop_run(logind_loop);
131 g_main_loop_unref(logind_loop);
132
133 g_bus_unown_name(bus_descriptor);
134
135 logind_mem_clean();
136
1e8c7c88 137 return 0;
138}