summaryrefslogtreecommitdiff
path: root/src/plugins/external/rygel-external-interfaces.vala
blob: bf56450095e245b95cd8bc0bd5a9576cd85b6721 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
 * Copyright (C) 2009,2010 Nokia Corporation.
 *
 * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 *                               <zeeshan.ali@nokia.com>
 *
 * This file is part of Rygel.
 *
 * Rygel 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.
 *
 * Rygel 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 Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

[DBus (name = "org.gnome.UPnP.MediaObject2")]
public interface Rygel.External.MediaObjectProxy : DBusProxy {
    public static const string IFACE = "org.gnome.UPnP.MediaObject2";
    public static const string[] PROPERTIES = { "Parent",
                                                "Type",
                                                "Path",
                                                "DisplayName" };

    public abstract ObjectPath parent { owned get; set; }
    public abstract string display_name { owned get; set; }
    [DBus (name = "Type")]
    public abstract string object_type { owned get; set; }
}

[DBus (name = "org.gnome.UPnP.MediaContainer2")]
public interface Rygel.External.MediaContainerProxy : DBusProxy,
                                                      MediaObjectProxy {
    public static const string IFACE = "org.gnome.UPnP.MediaContainer2";
    public static const string[] PROPERTIES = { "ChildCount", "Searchable" };

    public abstract signal void updated ();

    public abstract uint child_count { get; set; }
    public abstract uint item_count { get; set; }
    public abstract uint container_count { get; set; }
    public abstract bool searchable { get; set; }

    public abstract async HashTable<string,Variant>[] list_children
                                        (uint     offset,
                                         uint     max_count,
                                         string[] filter) throws DBusError;
    public abstract async HashTable<string,Variant>[] list_containers
                                        (uint     offset,
                                         uint     max_count,
                                         string[] filter) throws DBusError;
    public abstract async HashTable<string,Variant>[] list_items
                                        (uint     offset,
                                         uint     max_count,
                                         string[] filter) throws DBusError;

    // Optional API
    public abstract async HashTable<string,Variant>[] search_objects
                                        (string   query,
                                        uint     offset,
                                        uint     max_count,
                                        string[] filter) throws DBusError;

    public abstract ObjectPath icon { owned get; set; }
}

[DBus (name = "org.gnome.UPnP.MediaItem2")]
public interface Rygel.External.MediaItemProxy : DBusProxy, MediaObjectProxy {
    public static const string IFACE = "org.gnome.UPnP.MediaItem2";
    public static const string[] PROPERTIES = { "URLs",
                                                "MIMEType",
                                                "DLNAProfile",
                                                "Size",
                                                "Artist",
                                                "Album",
                                                "Date",
                                                "Duration",
                                                "Bitrate",
                                                "SampleRate",
                                                "BitsPerSample",
                                                "Width",
                                                "Height",
                                                "ColorDepth",
                                                "PixelWidth",
                                                "PixelHeight",
                                                "Thumbnail",
                                                "AlbumArt",
                                                "TrackNumber" };

    [DBus (name = "URLs")]
    public abstract string[] urls { owned get; set; }
    public abstract string mime_type { owned get; set; }

    // Optional API
    public abstract int size { get; set; }
    public abstract string artist { owned get; set; }
    public abstract string album { owned get; set; }
    public abstract string date { owned get; set; }
    public abstract string genre { owned get; set; }
    public abstract string dlna_profile { owned get; set; }

    // video and audio/music
    // in seconds
    public abstract int duration { get; set; }
    // in bytes/second (braindead, yes but tell that to UPnP authors)
    public abstract int bitrate { get; set; }
    public abstract int sample_rate { get; set; }
    public abstract int bits_per_sample { get; set; }

    // video and images
    public abstract int width { get; set; }
    public abstract int height { get; set; }
    public abstract int color_depth { get; set; }
    public abstract ObjectPath thumbnail { owned get; set; }

    // audio and music
    public abstract ObjectPath album_art { owned get; set; }
}