1 /* MManager - a Desktop wide manager for multimedia applications.
3 * Copyright (C) 2008 Cosimo Cecchi <cosimoc@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
22 #include <glib-object.h>
23 #include <dbus/dbus-glib.h>
24 #include "mm-dbus-category.h"
25 #include "mm-category.h"
26 #include "mm-dbus-application.h"
27 #include "mm-string-utils.h"
29 G_DEFINE_TYPE (MMDBusCategory
, mm_dbus_category
, MM_TYPE_CATEGORY
);
31 static MMHitCollection
*
32 mm_dbus_category_get_hits (MMCategory
*c
,
35 DBusGConnection
*connection
;
36 DBusGProxy
*app_proxy
;
38 MMHitCollection
*hit_collection
= NULL
;
42 char *serial_hit_collection
= NULL
;
44 g_return_val_if_fail (c
!= NULL
, NULL
);
45 g_return_val_if_fail (MM_IS_CATEGORY (c
), NULL
);
46 g_return_val_if_fail (f
!= NULL
, NULL
);
47 g_return_val_if_fail (MM_IS_FILTER (f
), NULL
);
49 connection
= dbus_g_bus_get (DBUS_BUS_SESSION
, &error
);
51 g_warning ("Unable to get a connection to the session bus: %s", error
->message
);
56 app
= mm_category_get_application (c
);
57 app_proxy
= dbus_g_proxy_new_for_name (connection
,
58 mm_application_get_id (app
),
59 mm_dbus_application_get_path (MM_DBUS_APPLICATION (app
)),
60 "org.gnome.MediaManager.Application");
61 serial_filter
= mm_filter_serialize (f
, &error
);
63 g_warning ("Unable to serialize the filter object: %s", error
->message
);
67 ret
= dbus_g_proxy_call (app_proxy
,
71 mm_category_get_name (c
),
76 &serial_hit_collection
,
79 g_warning ("Error while calling GetHits on %s: %s", mm_application_get_id (app
),
85 hit_collection
= mm_hit_collection_unserialize (serial_hit_collection
, &error
);
87 g_warning ("Unable to unserialize the HitCollection: %s", error
->message
);
93 g_free (serial_filter
);
94 g_free (serial_hit_collection
);
95 g_object_unref (app_proxy
);
97 return hit_collection
;
101 mm_dbus_category_class_init (MMDBusCategoryClass
*klass
)
103 MMCategoryClass
*cat_class
= MM_CATEGORY_CLASS (klass
);
105 cat_class
->get_hits
= mm_dbus_category_get_hits
;
109 mm_dbus_category_init (MMDBusCategory
*cat
)
116 mm_dbus_category_new (MMDBusApplication
*app
,
120 MMCategory
*category
;
122 category
= MM_CATEGORY (g_object_new (MM_TYPE_DBUS_CATEGORY
, NULL
));
123 mm_category_set_attributes (category
, MM_APPLICATION (app
), name
, icon
);