summaryrefslogtreecommitdiff
path: root/src/telepathy-logger.c
blob: 52eb57442d14af1827ebb315c60080acb65f2cc9 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2009 Collabora Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Authors: Cosimo Alfarano <cosimo.alfarano@collabora.co.uk>
 */

#include "dbus-service.h"

#include <glib.h>
#include <telepathy-glib/dbus.h>

#include <telepathy-logger/channel-factory.h>
#include <telepathy-logger/channel-text.h>
#include <telepathy-logger/observer.h>

static GMainLoop *loop = NULL;


static void
telepathy_logger_dbus_init (void)
{
	TplDBusService *dbus_srv;
	DBusGConnection *bus;
	TpDBusDaemon *tp_bus;
	GError *error = NULL;

	bus = tp_get_bus();
	tp_bus = tp_dbus_daemon_new(bus);

	if ( tp_dbus_daemon_request_name (tp_bus, TPL_DBUS_SRV_WELL_KNOWN_BUS_NAME,
			TRUE, &error) ) {
		g_print("%s DBus well known name registered\n",
				TPL_DBUS_SRV_WELL_KNOWN_BUS_NAME);
	} else {
		g_print("Well Known name request error: %s\n", error->message);
		g_clear_error(&error);
		g_error_free(error);
	}

	dbus_srv = tpl_dbus_service_new ();
	dbus_g_connection_register_g_object (bus,
			TPL_DBUS_SRV_OBJECT_PATH,
			G_OBJECT(dbus_srv));
}


int
main(int argc,
    char *argv[])
{
  TplObserver *observer;
  GError *error = NULL;

	g_type_init ();
  tpl_channel_factory_init ();

  g_debug ("Initialising TPL Channel Factory");
  tpl_channel_factory_add ("org.freedesktop.Telepathy.Channel.Type.Text",
      (TplChannelConstructor) tpl_channel_text_new);
  g_debug ("- TplChannelText registred.");

	observer = tpl_observer_new ();
  g_debug ("Registering channel factory into TplObserver");
  tpl_observer_set_channel_factory (observer, tpl_channel_factory_build);

  if (tpl_observer_register_dbus (observer, &error) == FALSE)
    {
      g_debug ("Error during D-Bus registration: %s", error->message);
      return 1;
    }

  telepathy_logger_dbus_init ();

	loop = g_main_loop_new (NULL, FALSE);
	g_main_loop_run (loop);

  g_object_unref (observer);
  tpl_channel_factory_deinit ();

	return 0;
}