summaryrefslogtreecommitdiff
path: root/src/librygel-ruih/rygel-ruih-ui-listing.vala
blob: f664c91d767e52a914ffbf62c29a7c68db4ee1cb (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
/*
 * Copyright (C) 2013  Cable Television Laboratories, Inc.
 *
 * Author: Neha Shanbhag <N.Shanbhag@cablelabs.com>
 * Contact: http://www.cablelabs.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
 */

using Gee;

public abstract class UIListing
{
    protected const string DESCRIPTION = "description";
    protected const string FORK = "fork";
    protected const string ICON = "icon";
    protected const string ICONLIST = "iconList";
    protected const string LIFETIME = "lifetime";
    protected const string NAME = "name";
    protected const string PROTOCOL = "protocol";
    protected const string PROTOCOL_INFO = "protocolInfo";
    protected const string SHORT_NAME = "shortName";
    protected const string UI = "ui";
    protected const string URI = "uri";
    protected const string UIID = "uiID";

    public abstract bool match (ArrayList<ProtocolElem>? protocols,
                                ArrayList<FilterEntry> filters);
    public abstract string to_ui_listing (ArrayList<FilterEntry> filters);

    public string to_xml (Gee.HashMap<string, string> hash_map) {
        var sb = new StringBuilder ();
        foreach (var e in hash_map.entries) {
            sb.append_printf ("<%s>%s</%s>\n", e.key, e.value, e.key);
        }

        return sb.str;
    }

    // Convenience method to avoid a lot of inline loops
    public bool filters_match (ArrayList<FilterEntry>? filters,
                               string? name,
                               string? value) {
        if (filters == null || name == null || value == null) {
            return false;
        }

        foreach (var entry in filters) {
            if ((entry != null) && (entry.matches (name, value))) {
                return true;
            }
        }

        return false;
    }
}