Use it in MMDBusCategory.
[mmediamanager.git] / src / mm-dbus-category.c
blob0e621743e9f9ddcd22dc2f048eeaa04ff2c0e929
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.
21 #include <glib.h>
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,
33 MMFilter *f)
35 DBusGConnection *connection;
36 DBusGProxy *app_proxy;
37 MMApplication *app;
38 MMHitCollection *hit_collection = NULL;
39 GError *error = NULL;
40 gboolean ret;
41 char *serial_filter;
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);
50 if (!connection) {
51 g_warning ("Unable to get a connection to the session bus: %s", error->message);
52 g_error_free (error);
53 return NULL;
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);
62 ret = dbus_g_proxy_call (app_proxy,
63 "GetHits",
64 &error,
65 G_TYPE_STRING,
66 mm_category_get_name (c),
67 G_TYPE_STRING,
68 serial_filter,
69 G_TYPE_INVALID,
70 G_TYPE_STRING,
71 &serial_hit_collection,
72 G_TYPE_INVALID);
73 if (!ret) {
74 g_warning ("Error while calling GetHits on %s: %s", mm_application_get_id (app),
75 error->message);
76 g_error_free (error);
77 goto out;
80 hit_collection = mm_hit_collection_unserialize (serial_hit_collection);
82 out:
83 g_free (serial_filter);
84 g_free (serial_hit_collection);
85 g_object_unref (app_proxy);
87 return hit_collection;
90 static void
91 mm_dbus_category_class_init (MMDBusCategoryClass *klass)
93 MMCategoryClass *cat_class = MM_CATEGORY_CLASS (klass);
95 cat_class->get_hits = mm_dbus_category_get_hits;
98 static void
99 mm_dbus_category_init (MMDBusCategory *cat)
101 /* empty */
104 /* public methods */
105 MMCategory *
106 mm_dbus_category_new (MMDBusApplication *app,
107 const char *name,
108 GIcon *icon)
110 MMCategory *category;
112 category = MM_CATEGORY (g_object_new (MM_TYPE_DBUS_CATEGORY, NULL));
113 mm_category_set_attributes (category, MM_APPLICATION (app), name, icon);
115 return category;