summaryrefslogtreecommitdiff
path: root/daemon/gdm-static-factory-display.c
blob: 91cd119581f41e8c6a8835f39b873b9ec6325dc3 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
 *
 * 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 */

#include "config.h"

#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/socket.h>

#include <glib.h>
#include <glib/gi18n.h>
#include <glib-object.h>

#include "gdm-display.h"
#include "gdm-static-factory-display.h"
#include "gdm-static-factory-display-glue.h"
#include "gdm-product-display.h"

#include "gdm-display-store.h"

#define GDM_STATIC_FACTORY_DISPLAY_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GDM_TYPE_STATIC_FACTORY_DISPLAY, GdmStaticFactoryDisplayPrivate))

#define DEFAULT_SLAVE_COMMAND LIBEXECDIR"/gdm-factory-slave"

struct GdmStaticFactoryDisplayPrivate
{
	GdmDisplayStore *display_store;
};

enum {
	PROP_0,
	PROP_DISPLAY_STORE,
};

static void	gdm_static_factory_display_class_init	(GdmStaticFactoryDisplayClass *klass);
static void	gdm_static_factory_display_init	        (GdmStaticFactoryDisplay      *static_factory_display);
static void	gdm_static_factory_display_finalize	(GObject	              *object);

static guint32 display_number = 100;

G_DEFINE_TYPE (GdmStaticFactoryDisplay, gdm_static_factory_display, GDM_TYPE_DISPLAY)

static guint32
get_next_display_number (void)
{
	guint32 num;

	num = display_number++;

	if ((gint32)display_number < 0) {
		display_number = 100;
	}

	return num;
}

gboolean
gdm_static_factory_display_create_product_display (GdmStaticFactoryDisplay *display,
						   const char              *relay_address,
						   char                   **id,
						   GError                 **error)
{
	gboolean    ret;
	GdmDisplay *product;
	guint32     num;

	g_return_val_if_fail (GDM_IS_STATIC_FACTORY_DISPLAY (display), FALSE);

	ret = FALSE;

	num = get_next_display_number ();

	g_debug ("Creating product display %d  address:%s", num, relay_address);

	product = gdm_product_display_new (num, relay_address);

	if (! gdm_display_create_authority (product)) {
		product = NULL;
		goto out;
	}

	gdm_display_store_add (display->priv->display_store, product);

	if (! gdm_display_manage (product)) {
		product = NULL;
		goto out;
	}

	if (! gdm_display_get_id (product, id, NULL)) {
		product = NULL;
		goto out;
	}

	ret = TRUE;
 out:
	/* ref either held by store or not at all */
	g_object_unref (product);

	return ret;
}

static gboolean
gdm_static_factory_display_add_user_authorization (GdmDisplay *display,
						   const char *username,
						   char      **filename,
						   GError    **error)
{
	return FALSE;
}

static gboolean
gdm_static_factory_display_remove_user_authorization (GdmDisplay *display,
						      const char *username,
						      GError    **error)
{
	return FALSE;
}

static gboolean
gdm_static_factory_display_create_authority (GdmDisplay *display)
{
	g_return_val_if_fail (GDM_IS_DISPLAY (display), FALSE);

	GDM_DISPLAY_CLASS (gdm_static_factory_display_parent_class)->create_authority (display);

	return TRUE;
}

static gboolean
gdm_static_factory_display_manage (GdmDisplay *display)
{
	g_return_val_if_fail (GDM_IS_DISPLAY (display), FALSE);

	GDM_DISPLAY_CLASS (gdm_static_factory_display_parent_class)->manage (display);

	return TRUE;
}

static gboolean
gdm_static_factory_display_finish (GdmDisplay *display)
{
	g_return_val_if_fail (GDM_IS_DISPLAY (display), FALSE);

	GDM_DISPLAY_CLASS (gdm_static_factory_display_parent_class)->finish (display);

	/* restart static displays */
	gdm_display_unmanage (display);
	gdm_display_manage (display);

	return TRUE;
}

static gboolean
gdm_static_factory_display_unmanage (GdmDisplay *display)
{
	g_return_val_if_fail (GDM_IS_DISPLAY (display), FALSE);

	GDM_DISPLAY_CLASS (gdm_static_factory_display_parent_class)->unmanage (display);

	return TRUE;
}

static void
gdm_static_factory_display_set_display_store (GdmStaticFactoryDisplay *display,
					      GdmDisplayStore         *display_store)
{
	if (display->priv->display_store != NULL) {
		g_object_unref (display->priv->display_store);
		display->priv->display_store = NULL;
	}

	if (display_store != NULL) {
		display->priv->display_store = g_object_ref (display_store);
	}
}

static void
gdm_static_factory_display_set_property (GObject      *object,
					 guint	       prop_id,
					 const GValue *value,
					 GParamSpec   *pspec)
{
	GdmStaticFactoryDisplay *self;

	self = GDM_STATIC_FACTORY_DISPLAY (object);

	switch (prop_id) {
	case PROP_DISPLAY_STORE:
		gdm_static_factory_display_set_display_store (self, g_value_get_object (value));
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
		break;
	}
}

static void
gdm_static_factory_display_get_property (GObject    *object,
					 guint       prop_id,
					 GValue	    *value,
					 GParamSpec *pspec)
{
	GdmStaticFactoryDisplay *self;

	self = GDM_STATIC_FACTORY_DISPLAY (object);

	switch (prop_id) {
	case PROP_DISPLAY_STORE:
		g_value_set_object (value, self->priv->display_store);
		break;
	default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
		break;
	}
}

static GObject *
gdm_static_factory_display_constructor (GType                  type,
					guint                  n_construct_properties,
					GObjectConstructParam *construct_properties)
{
        GdmStaticFactoryDisplay      *display;
        GdmStaticFactoryDisplayClass *klass;

        klass = GDM_STATIC_FACTORY_DISPLAY_CLASS (g_type_class_peek (GDM_TYPE_STATIC_FACTORY_DISPLAY));

        display = GDM_STATIC_FACTORY_DISPLAY (G_OBJECT_CLASS (gdm_static_factory_display_parent_class)->constructor (type,
														     n_construct_properties,
														     construct_properties));

        return G_OBJECT (display);
}

static void
gdm_static_factory_display_class_init (GdmStaticFactoryDisplayClass *klass)
{
	GObjectClass    *object_class = G_OBJECT_CLASS (klass);
	GdmDisplayClass *display_class = GDM_DISPLAY_CLASS (klass);

	object_class->get_property = gdm_static_factory_display_get_property;
	object_class->set_property = gdm_static_factory_display_set_property;
        object_class->constructor = gdm_static_factory_display_constructor;
	object_class->finalize = gdm_static_factory_display_finalize;

	display_class->create_authority = gdm_static_factory_display_create_authority;
	display_class->add_user_authorization = gdm_static_factory_display_add_user_authorization;
	display_class->remove_user_authorization = gdm_static_factory_display_remove_user_authorization;
	display_class->manage = gdm_static_factory_display_manage;
	display_class->finish = gdm_static_factory_display_finish;
	display_class->unmanage = gdm_static_factory_display_unmanage;

        g_object_class_install_property (object_class,
                                         PROP_DISPLAY_STORE,
                                         g_param_spec_object ("display-store",
							      "display store",
							      "display store",
							      GDM_TYPE_DISPLAY_STORE,
							      G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));

	g_type_class_add_private (klass, sizeof (GdmStaticFactoryDisplayPrivate));

	dbus_g_object_type_install_info (GDM_TYPE_STATIC_FACTORY_DISPLAY, &dbus_glib_gdm_static_factory_display_object_info);
}

static void
gdm_static_factory_display_init (GdmStaticFactoryDisplay *static_factory_display)
{

	static_factory_display->priv = GDM_STATIC_FACTORY_DISPLAY_GET_PRIVATE (static_factory_display);
}

static void
gdm_static_factory_display_finalize (GObject *object)
{
	GdmStaticFactoryDisplay *static_factory_display;

	g_return_if_fail (object != NULL);
	g_return_if_fail (GDM_IS_STATIC_FACTORY_DISPLAY (object));

	static_factory_display = GDM_STATIC_FACTORY_DISPLAY (object);

	g_return_if_fail (static_factory_display->priv != NULL);

	G_OBJECT_CLASS (gdm_static_factory_display_parent_class)->finalize (object);
}

GdmDisplay *
gdm_static_factory_display_new (int              display_number,
				GdmDisplayStore *store)
{
	GObject *object;
	char    *x11_display;

	x11_display = g_strdup_printf (":%d", display_number);
	object = g_object_new (GDM_TYPE_STATIC_FACTORY_DISPLAY,
			       "slave-command", DEFAULT_SLAVE_COMMAND,
			       "x11-display-number", display_number,
			       "x11-display-name", x11_display,
			       "display-store", store,
			       NULL);
	g_free (x11_display);

	return GDM_DISPLAY (object);
}