File: service.c

package info (click to toggle)
dbus-test-runner 16.10.0~bzr100%2Brepack1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 676 kB
  • sloc: ansic: 3,632; makefile: 515; xml: 151; sh: 34
file content (803 lines) | stat: -rw-r--r-- 21,814 bytes parent folder | download | duplicates (3)
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/*
Copyright 2012 Canonical Ltd.

Authors:
    Ted Gould <ted@canonical.com>

This program is free software: you can redistribute it and/or modify it 
under the terms of the GNU 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 warranties of 
MERCHANTABILITY, SATISFACTORY QUALITY, 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, see <http://www.gnu.org/licenses/>.
*/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <unistd.h>
#include <string.h>

#include <glib.h>
#include <gio/gio.h>
#include "glib-compat.h"

#include "dbus-test.h"
#include "watchdog.h"

typedef enum _ServiceState ServiceState;
enum _ServiceState {
	STATE_INIT,
	STATE_DAEMON_STARTING,
	STATE_DAEMON_STARTED,
	STATE_DAEMON_FAILED,
	STATE_STARTING,
	STATE_STARTED,
	STATE_RUNNING,
	STATE_FINISHED
};

typedef struct {
	GQueue tasks_first;
	GQueue tasks_normal;
	GQueue tasks_last;

	GMainLoop * mainloop;
	ServiceState state;

	gboolean daemon_crashed;

	GPid dbus;
	guint dbus_watch;
	GIOChannel * dbus_io;
	guint dbus_io_watch;
	gchar * dbus_daemon;
	gchar * dbus_configfile;

	gboolean first_time;
	gboolean keep_env;

	DbusTestWatchdog * watchdog;
	guint watchdog_source;

	DbusTestServiceBus bus_type;
} DbusTestServicePrivate;

#define SERVICE_CHANGE_HANDLER  "dbus-test-service-change-handler"

static void dbus_test_service_class_init (DbusTestServiceClass *klass);
static void dbus_test_service_init       (DbusTestService *self);
static void dbus_test_service_dispose    (GObject *object);
static void dbus_test_service_finalize   (GObject *object);
static gboolean watchdog_ping            (gpointer user_data);

G_DEFINE_TYPE_WITH_PRIVATE (DbusTestService, dbus_test_service, G_TYPE_OBJECT);

static void
dbus_test_service_class_init (DbusTestServiceClass *klass)
{
	GObjectClass *object_class = G_OBJECT_CLASS (klass);

	object_class->dispose = dbus_test_service_dispose;
	object_class->finalize = dbus_test_service_finalize;

	return;
}

static void
dbus_test_service_init (DbusTestService *self)
{
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(self);

	g_queue_init(&priv->tasks_first);
	g_queue_init(&priv->tasks_normal);
	g_queue_init(&priv->tasks_last);

	priv->mainloop = g_main_loop_new(NULL, FALSE);
	priv->state = STATE_INIT;

	priv->daemon_crashed = FALSE;

	priv->dbus = 0;
	priv->dbus_watch = 0;
	priv->dbus_io = NULL;
	priv->dbus_io_watch = 0;
	priv->dbus_daemon = g_strdup("dbus-daemon");
	priv->dbus_configfile = g_strdup(DEFAULT_SESSION_CONF);

	priv->first_time = TRUE;
	priv->keep_env = FALSE;

	priv->watchdog = g_object_new(DBUS_TEST_TYPE_WATCHDOG, NULL);
	priv->watchdog_source = g_timeout_add_seconds_full(G_PRIORITY_DEFAULT,
	                                                         5,
	                                                         watchdog_ping,
	                                                         g_object_ref(priv->watchdog),
	                                                         g_object_unref);

	priv->bus_type = DBUS_TEST_SERVICE_BUS_SESSION;

	return;
}

static void
task_unref (gpointer data, G_GNUC_UNUSED gpointer user_data)
{
	DbusTestTask * task = DBUS_TEST_TASK(data);

	gulong handler = GPOINTER_TO_UINT(g_object_get_data(G_OBJECT(task), SERVICE_CHANGE_HANDLER));
	if (handler != 0) {
		g_signal_handler_disconnect(G_OBJECT(task), handler);
	}

	g_object_unref(task);
	return;
}

static void
dbus_test_service_dispose (GObject *object)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(object));
	DbusTestService * self = DBUS_TEST_SERVICE(object);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(self);

	if (!g_queue_is_empty(&priv->tasks_last)) {
		g_queue_foreach(&priv->tasks_last, task_unref, NULL);
		g_queue_clear(&priv->tasks_last);
	}

	if (!g_queue_is_empty(&priv->tasks_normal)) {
		g_queue_foreach(&priv->tasks_normal, task_unref, NULL);
		g_queue_clear(&priv->tasks_normal);
	}

	if (!g_queue_is_empty(&priv->tasks_first)) {
		g_queue_foreach(&priv->tasks_first, task_unref, NULL);
		g_queue_clear(&priv->tasks_first);
	}

	if (priv->dbus_watch != 0) {
		g_source_remove(priv->dbus_watch);
		priv->dbus_watch = 0;
	}

	if (priv->dbus_io_watch != 0) {
		g_source_remove(priv->dbus_io_watch);
		priv->dbus_io_watch = 0;
	}

	if (priv->dbus_io != NULL) {
		g_io_channel_shutdown(priv->dbus_io, TRUE, NULL);
		g_io_channel_unref(priv->dbus_io);
		priv->dbus_io = NULL;
	}

	g_print("DBus daemon: Shutdown\n");
	if (priv->dbus != 0) {
		gchar * cmd = g_strdup_printf("kill -9 %d", priv->dbus);
		g_spawn_command_line_async(cmd, NULL);
		g_free(cmd);

		g_spawn_close_pid(priv->dbus);
		priv->dbus = 0;
	}

	if (priv->mainloop != NULL) {
		g_main_loop_unref(priv->mainloop);
		priv->mainloop = NULL;
	}

	g_clear_object(&priv->watchdog);

	if (priv->watchdog_source != 0) {
		g_source_remove(priv->watchdog_source);
		priv->watchdog_source = 0;
	}

	G_OBJECT_CLASS (dbus_test_service_parent_class)->dispose (object);
	return;
}

static void
dbus_test_service_finalize (GObject *object)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(object));
	DbusTestService * self = DBUS_TEST_SERVICE(object);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(self);

	g_free(priv->dbus_daemon);
	priv->dbus_daemon = NULL;
	g_free(priv->dbus_configfile);
	priv->dbus_configfile = NULL;

	G_OBJECT_CLASS (dbus_test_service_parent_class)->finalize (object);
	return;
}

DbusTestService *
dbus_test_service_new (G_GNUC_UNUSED const gchar * address)
{
	DbusTestService * service = g_object_new(DBUS_TEST_TYPE_SERVICE,
	                                         NULL);

	/* TODO: Use the address */

	return service;
}

/* Ping the watchdog so that it knows we're still alive */
static gboolean
watchdog_ping (gpointer user_data)
{
	DbusTestWatchdog * watchdog = DBUS_TEST_WATCHDOG(user_data);

	dbus_test_watchdog_ping(watchdog);

	return TRUE;
}

static gboolean
all_tasks_finished_helper (G_GNUC_UNUSED DbusTestService * service, DbusTestTask * task, G_GNUC_UNUSED gpointer user_data)
{
	DbusTestTaskState state = dbus_test_task_get_state(task);
	DbusTestTaskReturn ret  = dbus_test_task_get_return(task);

	if (state != DBUS_TEST_TASK_STATE_FINISHED && (ret != DBUS_TEST_TASK_RETURN_IGNORE || dbus_test_task_get_wait_finished(task))) {
		return FALSE;
	}

	return TRUE;
}

static gboolean
all_tasks_started_helper (G_GNUC_UNUSED DbusTestService * service, DbusTestTask * task, G_GNUC_UNUSED gpointer user_data)
{
	DbusTestTaskState state = dbus_test_task_get_state(task);

	if (state == DBUS_TEST_TASK_STATE_INIT || state == DBUS_TEST_TASK_STATE_WAITING) {
		return FALSE;
	}

	return TRUE;
}

static gboolean
all_tasks_bus_match (DbusTestService * service, DbusTestTask * task, G_GNUC_UNUSED gpointer user_data)
{
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	return priv->bus_type == DBUS_TEST_SERVICE_BUS_BOTH ||
		dbus_test_task_get_bus(task) == DBUS_TEST_SERVICE_BUS_BOTH ||
		dbus_test_task_get_bus(task) == priv->bus_type;
}

typedef struct {
	DbusTestService * service;
	gboolean passing;
	gpointer user_data;
	gboolean (*func) (DbusTestService * service, DbusTestTask * task, gpointer data);
} all_tasks_helper_data_t;

static void
all_tasks_helper (gpointer taskp, gpointer datap)
{
	all_tasks_helper_data_t * data = (all_tasks_helper_data_t *)datap;

	if (!data->passing) {
		/* Quick exit */
		return;
	}

	data->passing = data->func(data->service, DBUS_TEST_TASK(taskp), data->user_data);
}

static gboolean
all_tasks (DbusTestService * service, gboolean (*helper) (DbusTestService * service, DbusTestTask * task, gpointer user_data), gpointer user_data)
{
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	all_tasks_helper_data_t data = {
		.passing = TRUE,
		.service = service,
		.func = helper,
		.user_data = user_data
	};

	g_queue_foreach(&priv->tasks_first, all_tasks_helper, &data);
	if (!data.passing) {
		return FALSE;
	}

	g_queue_foreach(&priv->tasks_normal, all_tasks_helper, &data);
	if (!data.passing) {
		return FALSE;
	}

	g_queue_foreach(&priv->tasks_last, all_tasks_helper, &data);
	if (!data.passing) {
		return FALSE;
	}

	return TRUE;
}

static void
task_set_name_length (gpointer data, gpointer user_data)
{
	DbusTestTask * task = DBUS_TEST_TASK(data);
	glong * length = (glong *)user_data;

	dbus_test_task_set_name_spacing(task, *length);
	return;
}

static void
task_get_name_length (gpointer data, gpointer user_data)
{
	DbusTestTask * task = DBUS_TEST_TASK(data);
	glong * length = (glong *)user_data;

	const gchar * name = dbus_test_task_get_name(task);
	g_return_if_fail(name != NULL);

	glong nlength = g_utf8_strlen(name, -1);
	*length = MAX(*length, nlength);

	return;
}

static void
normalize_name_lengths (DbusTestService * service)
{
	glong length = 0;

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_queue_foreach(&priv->tasks_first, task_get_name_length, &length);
	g_queue_foreach(&priv->tasks_normal, task_get_name_length, &length);
	g_queue_foreach(&priv->tasks_last, task_get_name_length, &length);

	g_queue_foreach(&priv->tasks_first, task_set_name_length, &length);
	g_queue_foreach(&priv->tasks_normal, task_set_name_length, &length);
	g_queue_foreach(&priv->tasks_last, task_set_name_length, &length);

	return;
}

static void
task_starter (gpointer data, G_GNUC_UNUSED gpointer user_data)
{
	DbusTestTask * task = DBUS_TEST_TASK(data);

	dbus_test_task_run(task);

	return;
}

static gboolean
dbus_writes (GIOChannel * channel, GIOCondition condition, gpointer data)
{
	DbusTestService * service = DBUS_TEST_SERVICE(data);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	if (condition & G_IO_ERR) {
		g_critical("DBus writing failure!");
		return FALSE;
	}

	gchar * line;
	gsize termloc;
	GIOStatus status = g_io_channel_read_line (channel, &line, NULL, &termloc, NULL);
	g_return_val_if_fail(status == G_IO_STATUS_NORMAL, FALSE);
	line[termloc] = '\0';

	g_print("DBus daemon: %s\n", line);

	if (priv->first_time) {
		priv->first_time = FALSE;

		g_setenv("DBUS_STARTER_ADDRESS", line, TRUE);

		switch (priv->bus_type) {
		case DBUS_TEST_SERVICE_BUS_SESSION:
			g_setenv("DBUS_SESSION_BUS_ADDRESS", line, TRUE);
			g_setenv("DBUS_STARTER_BUS_TYPE", "session", TRUE);
			break;
		case DBUS_TEST_SERVICE_BUS_SYSTEM:
			g_setenv("DBUS_SYSTEM_BUS_ADDRESS", line, TRUE);
			g_setenv("DBUS_STARTER_BUS_TYPE", "system", TRUE);
			break;
		case DBUS_TEST_SERVICE_BUS_BOTH:
			g_setenv("DBUS_SESSION_BUS_ADDRESS", line, TRUE);
			g_setenv("DBUS_SYSTEM_BUS_ADDRESS", line, TRUE);
			g_setenv("DBUS_STARTER_BUS_TYPE", "session", TRUE);
			break;
		}

		if (priv->state == STATE_DAEMON_STARTING) {
			g_main_loop_quit(priv->mainloop);
		}
	}

	g_free(line);

	return TRUE;
}

static void
dbus_watcher (GPid pid, G_GNUC_UNUSED gint status, gpointer data)
{
	DbusTestService * service = DBUS_TEST_SERVICE(data);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_critical("DBus Daemon exited abruptly!");

	priv->daemon_crashed = TRUE;
	g_main_loop_quit(priv->mainloop);

	if (pid != 0) {
		g_spawn_close_pid(pid);
	}

	return;
}

static void
dbus_child_setup ()
{
	setpgrp();
}

static void
start_daemon (DbusTestService * service)
{
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	if (priv->dbus != 0) {
		return;
	}

	priv->state = STATE_DAEMON_STARTING;

	gint dbus_stdout = 0;
	GError * error = NULL;
	gchar * blank[1] = {NULL};
	gchar * current_dir = g_get_current_dir();
	gchar * dbus_startup[] = {priv->dbus_daemon, "--config-file", priv->dbus_configfile, "--print-address", NULL};
	g_spawn_async_with_pipes(current_dir,
	                         dbus_startup, /* argv */
	                         priv->keep_env ? NULL : blank, /* envp */
	                         G_SPAWN_SEARCH_PATH | G_SPAWN_DO_NOT_REAP_CHILD, /* flags */
	                         (GSpawnChildSetupFunc) dbus_child_setup, /* child setup func */
	                         NULL, /* child setup data */
	                         &priv->dbus, /* PID */
	                         NULL, /* stdin */
	                         &dbus_stdout, /* stdout */
	                         NULL, /* stderr */
	                         &error); /* error */

	g_free (current_dir);

	if (error != NULL) {
		g_critical("Unable to start dbus daemon: %s", error->message);
		g_error_free(error);
		priv->daemon_crashed = TRUE;
		return;
	}

	dbus_test_watchdog_add_pid(priv->watchdog, priv->dbus);

	priv->dbus_watch = g_child_watch_add(priv->dbus, dbus_watcher, service);

	priv->dbus_io = g_io_channel_unix_new(dbus_stdout);
	priv->dbus_io_watch = g_io_add_watch(priv->dbus_io,
	                                              G_IO_IN | G_IO_HUP | G_IO_ERR, /* conditions */
	                                              dbus_writes, /* func */
	                                              service); /* func data */

	g_main_loop_run(priv->mainloop);

	/* we should have a usable connection now, let's check */
	const gchar * bus_address = NULL;
	if (priv->bus_type == DBUS_TEST_SERVICE_BUS_SYSTEM) {
		bus_address = g_getenv("DBUS_SYSTEM_BUS_ADDRESS");
	} else {
		bus_address = g_getenv("DBUS_SESSION_BUS_ADDRESS");
	}
	g_return_if_fail(bus_address != NULL);
	gchar **tokens = g_strsplit (bus_address, ",", 0);

	guint i;
	gboolean is_valid = FALSE;
	for (i = 0; i < g_strv_length (tokens); i++) {
		if (strlen (tokens[i]) && g_dbus_is_supported_address (tokens[i], NULL)) {
			is_valid = TRUE;
			break;
		}
	}
	g_strfreev(tokens);

	if (!is_valid) {
		priv->state = STATE_DAEMON_FAILED;
		g_critical ("DBus daemon failed: Bus address is not supported");
		g_error_free (error);
		return;
	}

	priv->state = STATE_DAEMON_STARTED;
	return;
}

void
dbus_test_service_start_tasks (DbusTestService * service)
{
	g_return_if_fail(DBUS_TEST_SERVICE(service));
	g_return_if_fail(all_tasks(service, all_tasks_bus_match, NULL));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	start_daemon(service);
	g_return_if_fail(g_getenv("DBUS_SESSION_BUS_ADDRESS") != NULL ||
		g_getenv("DBUS_SYSTEM_BUS_ADDRESS") != NULL);
	g_return_if_fail(priv->state != STATE_DAEMON_FAILED);

	if (all_tasks(service, all_tasks_started_helper, NULL)) {
		/* If we have all started we can mark it as such as long
		   as we understand where we could hit this case */
		if (priv->state == STATE_INIT || priv->state == STATE_DAEMON_STARTED) {
			priv->state = STATE_STARTED;
		}
		return;
	}

	normalize_name_lengths(service);

	g_queue_foreach(&priv->tasks_first, task_starter, NULL);
	if (!g_queue_is_empty(&priv->tasks_first)) {
		g_usleep(100000);
	}

	g_queue_foreach(&priv->tasks_normal, task_starter, NULL);

	if (!g_queue_is_empty(&priv->tasks_last)) {
		g_usleep(100000);
	}
	g_queue_foreach(&priv->tasks_last, task_starter, NULL);

	if (!all_tasks(service, all_tasks_started_helper, NULL)) {
		priv->state = STATE_STARTING;
		g_main_loop_run(priv->mainloop);

		/* This should never happen, but let's be sure */
		g_return_if_fail(all_tasks(service, all_tasks_started_helper, NULL));
	}

	priv->state = STATE_STARTED;

	return;
}

static gboolean
all_tasks_passed_helper (G_GNUC_UNUSED DbusTestService * service, DbusTestTask * task, G_GNUC_UNUSED gpointer user_data)
{
	return dbus_test_task_passed(task);
}

static int
get_status (DbusTestService * service)
{
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	if (priv->daemon_crashed || priv->state == STATE_DAEMON_FAILED) {
		return -1;
	}

	if (all_tasks(service, all_tasks_passed_helper, NULL)) {
		return 0;
	} else {
		return -1;
	}
}

int
dbus_test_service_run (DbusTestService * service)
{
	g_return_val_if_fail(DBUS_TEST_SERVICE(service), -1);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	dbus_test_service_start_tasks(service);
	g_return_val_if_fail(priv->state == STATE_STARTED, get_status(service));

	if (all_tasks(service, all_tasks_finished_helper, NULL)) {
		return get_status(service);
	}

	priv->state = STATE_RUNNING;
	g_main_loop_run(priv->mainloop);

	/* This should never happen, but let's be sure */
	g_return_val_if_fail(all_tasks(service, all_tasks_finished_helper, NULL), -1);
	priv->state = STATE_FINISHED;

	return get_status(service);
}

static void
task_state_changed (G_GNUC_UNUSED DbusTestTask * task, G_GNUC_UNUSED DbusTestTaskState state, gpointer user_data)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(user_data));
	DbusTestService * service = DBUS_TEST_SERVICE(user_data);
	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	if (priv->state == STATE_STARTING && all_tasks(service, all_tasks_started_helper, NULL)) {
		g_main_loop_quit(priv->mainloop);
		return;
	}

	if (priv->state == STATE_RUNNING && all_tasks(service, all_tasks_finished_helper, NULL)) {
		g_main_loop_quit(priv->mainloop);
		return;
	}

	return;
}

void
dbus_test_service_add_task (DbusTestService * service, DbusTestTask * task)
{
	return dbus_test_service_add_task_with_priority(service, task, DBUS_TEST_SERVICE_PRIORITY_NORMAL);
}

void
dbus_test_service_add_task_with_priority (DbusTestService * service, DbusTestTask * task, DbusTestServicePriority prio)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));
	g_return_if_fail(DBUS_TEST_IS_TASK(task));

	/* Check to ensure that the task and the service match in thier
	   goals for busness. Fail early. */
	g_return_if_fail(all_tasks_bus_match(service, task, NULL));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	GQueue * queue = NULL;

	switch (prio) {
	case DBUS_TEST_SERVICE_PRIORITY_FIRST:
		queue = &priv->tasks_first;
		break;
	case DBUS_TEST_SERVICE_PRIORITY_NORMAL:
		queue = &priv->tasks_normal;
		break;
	case DBUS_TEST_SERVICE_PRIORITY_LAST:
		queue = &priv->tasks_last;
		break;
	default:
		g_assert_not_reached();
		break;
	}

	g_queue_push_tail(queue, g_object_ref(task));

	gulong connect = g_signal_connect(G_OBJECT(task), DBUS_TEST_TASK_SIGNAL_STATE_CHANGED, G_CALLBACK(task_state_changed), service);
	g_object_set_data(G_OBJECT(task), SERVICE_CHANGE_HANDLER, GUINT_TO_POINTER(connect));

	return;
}

/**
 * @service: A #DbusTestService
 * @task: Task to remove
 *
 * Removes a task from those managed by the service, it won't
 * be checked for status or managed anymore by the service.
 *
 * Return Value: Whether the task was found and removed, FALSE if not found
 */
gboolean
dbus_test_service_remove_task (DbusTestService * service, DbusTestTask * task)
{
	g_return_val_if_fail(DBUS_TEST_IS_SERVICE(service), FALSE);
	g_return_val_if_fail(DBUS_TEST_IS_TASK(task), FALSE);

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	guint count = 0;
	count += g_queue_remove_all(&priv->tasks_first, task);
	count += g_queue_remove_all(&priv->tasks_normal, task);
	count += g_queue_remove_all(&priv->tasks_last, task);

	/* Checking the count here so that we can generate a warning. Guessing that
	   this actually never happens, but it's easy to check */
	if (count > 1) {
		g_warning("Task '%s' was added to the service %d times!", dbus_test_task_get_name(task), count);
	}

	/* We're going to disconnect here even if count is zero because, well, it
	   shouldn't hurt in that case and might be good for us. */
	g_signal_handlers_disconnect_by_data(task, service);

	/* If we've added it multiple times, we made multiple references, fix it. */
	guint i;
	for (i = 0; i < count; i++) {
		g_object_unref(task);
	}

	return count > 0;
}

void
dbus_test_service_set_daemon (DbusTestService * service, const gchar * daemon)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_free(priv->dbus_daemon);
	priv->dbus_daemon = g_strdup(daemon);
	return;
}

void
dbus_test_service_set_conf_file (DbusTestService * service, const gchar * conffile)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_free(priv->dbus_configfile);
	priv->dbus_configfile = g_strdup(conffile);
	return;
}

void
dbus_test_service_set_keep_environment (DbusTestService * service, gboolean keep_env)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	priv->keep_env = keep_env;
}

void
dbus_test_service_stop (DbusTestService * service)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_main_loop_quit(priv->mainloop);
	return;
}

void dbus_test_service_set_bus (DbusTestService * service, DbusTestServiceBus bus)
{
	g_return_if_fail(DBUS_TEST_IS_SERVICE(service));

	DbusTestServicePrivate *priv = dbus_test_service_get_instance_private(service);

	g_return_if_fail(priv->dbus == 0); /* we can't change after we're running */

	if (bus == DBUS_TEST_SERVICE_BUS_BOTH) {
		g_warning("Setting bus to BOTH, which is typically only used as a default value.");
	}

	priv->bus_type = bus;
	g_warn_if_fail(all_tasks(service, all_tasks_bus_match, NULL));

	if (bus == DBUS_TEST_SERVICE_BUS_SYSTEM) {
		g_free(priv->dbus_configfile);
		priv->dbus_configfile = g_strdup(DEFAULT_SYSTEM_CONF);
	} else {
		/* BOTH and SESSION get the session config — for backwards compatibility there */
		g_free(priv->dbus_configfile);
		priv->dbus_configfile = g_strdup(DEFAULT_SESSION_CONF);
	}
}