~ubuntu-branches/ubuntu/precise/rygel/precise

« back to all changes in this revision

Viewing changes to src/plugins/media-export/rygel-media-export-dbus-service.vala

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Henriksson
  • Date: 2009-09-26 14:04:05 UTC
  • Revision ID: james.westby@ubuntu.com-20090926140405-d5x3j13k10psa1gu
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2009 Jens Georg <mail@jensge.org>.
 
3
 *
 
4
 * This file is part of Rygel.
 
5
 *
 
6
 * Rygel is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * Rygel is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public License
 
17
 * along with this program; if not, write to the Free Software Foundation,
 
18
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
19
 */
 
20
 
 
21
[DBus (name = "org.gnome.Rygel.MediaExport1")]
 
22
public class Rygel.MediaExportDBusService : Object {
 
23
    private const string RYGEL_MEDIA_EXPORT_PATH =
 
24
                                        "/org/gnome/Rygel/MediaExport1";
 
25
 
 
26
    private MediaExportRootContainer root_container;
 
27
 
 
28
    public MediaExportDBusService (MediaExportRootContainer root_container)
 
29
                                                            throws GLib.Error {
 
30
        this.root_container = root_container;
 
31
 
 
32
        var conn = DBus.Bus.get (DBus.BusType. SESSION);
 
33
 
 
34
        conn.register_object (RYGEL_MEDIA_EXPORT_PATH, this);
 
35
    }
 
36
 
 
37
    public void AddUri (string uri) {
 
38
        this.root_container.add_uri (uri);
 
39
    }
 
40
 
 
41
    public void RemoveUri (string uri) {
 
42
        this.root_container.remove_uri (uri);
 
43
    }
 
44
 
 
45
    public string[] GetUris () {
 
46
        return this.root_container.get_dynamic_uris ();
 
47
    }
 
48
}