/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2007 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * 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 #include #include #include #include #include #include #include "pk-debug.h" #include "pk-task-common.h" #include "pk-task-list.h" /** * pk_monitor_task_list_changed_cb: **/ static void pk_monitor_task_list_changed_cb (PkTaskList *tlist, gpointer data) { pk_task_list_print (tlist); } /** * pk_libgbus_connection_changed_cb: **/ static void pk_libgbus_connection_changed_cb (LibGBus *gbus, gboolean connected, gpointer data) { GMainLoop *loop = (GMainLoop *) data; if (connected == FALSE) { pk_debug ("not monitoring as disconnected"); g_main_loop_quit (loop); } } /** * main: **/ int main (int argc, char *argv[]) { PkTaskList *tlist; gboolean ret; GPtrArray *task_list; GMainLoop *loop; LibGBus *libgbus; gboolean connected; if (! g_thread_supported ()) { g_thread_init (NULL); } dbus_g_thread_init (); g_type_init (); pk_debug_init (TRUE); if (!g_thread_supported ()) g_thread_init (NULL); dbus_g_thread_init (); loop = g_main_loop_new (NULL, FALSE); libgbus = libgbus_new (); libgbus_assign (libgbus, LIBGBUS_SYSTEM, PK_DBUS_SERVICE); g_signal_connect (libgbus, "connection-changed", G_CALLBACK (pk_libgbus_connection_changed_cb), loop); connected = libgbus_is_connected (libgbus); pk_debug ("connected=%i", connected); tlist = pk_task_list_new (); g_signal_connect (tlist, "task-list-changed", G_CALLBACK (pk_monitor_task_list_changed_cb), NULL); ret = pk_task_list_refresh (tlist); if (ret == FALSE) { g_error ("cannot refresh job list"); } task_list = pk_task_list_get_latest (tlist); pk_task_list_print (tlist); g_main_loop_run (loop); g_object_unref (tlist); g_object_unref (libgbus); return 0; }