File: data-source-registry.vala

package info (click to toggle)
zeitgeist 0.9.14-2.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 10,500 kB
  • ctags: 4,031
  • sloc: ansic: 16,835; sh: 11,484; xml: 8,822; python: 8,196; cpp: 2,970; sql: 1,192; makefile: 941
file content (165 lines) | stat: -rw-r--r-- 6,277 bytes parent folder | download | duplicates (5)
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * Copyright © 2012 Collabora Ltd.
 *             By Siegfried-Angel Gevatter Pujals <siegfried@gevatter.com>
 *
 * This program 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.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

namespace Zeitgeist
{

    [DBus (name = "org.gnome.zeitgeist.DataSourceRegistry")]
    protected interface RemoteRegistry: Object
    {
        [DBus (signature = "a(sssa(asaasay)bxb)")]
        public abstract async Variant get_data_sources (
            Cancellable? cancellable=null) throws Error;
        public abstract async bool register_data_source (string unique_id,
            string name, string description,
            [DBus (signature = "a(asaasay)")] Variant event_templates,
            Cancellable? cancellable=null, BusName? sender=null) throws Error;
        public abstract async void set_data_source_enabled (string unique_id,
            bool enabled, Cancellable? cancellable=null) throws Error;
        [DBus (signature = "(sssa(asaasay)bxb)")]
        public abstract async Variant get_data_source_from_id (
            string unique_id, Cancellable? cancellable=null) throws Error;

        public signal void data_source_disconnected (
            [DBus (signature = "(sssa(asaasay)bxb)")] Variant data_source);
        public signal void data_source_enabled (string unique_id,
            bool enabled);
        public signal void data_source_registered (
            [DBus (signature = "(sssa(asaasay)bxb)")] Variant data_source);
    }

    /**
     * Query the Zeitgeist Data-Source Registry extension
     *
     * The Zeitgeist engine maintains a publicly available list of recognized
     * data-sources (components inserting information into Zeitgeist).
     * ZeitgeistDataSourceRegistry is used to register new data sources,
     * get information about them and gives the ability to enable or disable
     * the data sources.
     */

    public class DataSourceRegistry : QueuedProxyWrapper
    {

        private RemoteRegistry proxy;

        public signal void source_disconnected (DataSource data_source);
        public signal void source_enabled (string unique_id, bool enabled);
        public signal void source_registered (DataSource data_source);

        public DataSourceRegistry ()
        {
            Bus.get_proxy.begin<RemoteRegistry> (BusType.SESSION,
                Utils.ENGINE_DBUS_NAME,
                "/org/gnome/zeitgeist/data_source_registry", 0, null,
                (obj, res) =>
                {
                    try
                    {
                        proxy = Bus.get_proxy.end (res);
                        proxy_acquired (proxy);
                    }
                    catch (IOError err)
                    {
                        critical (
                            "Unable to connect to Zeitgeist's " +
                            "DataSourceRegistry: %s", err.message);
                        proxy_unavailable (err);
                    }
                });
        }

        protected override void on_connection_established ()
        {
            proxy.data_source_disconnected.connect ((data_source) => {
                try
                {
                    var source = new DataSource.from_variant (data_source);
                    source_disconnected (source);
                }
                catch (DataModelError err)
                {
                    warning ("Error parsing data-source: %s", err.message);
                }
            });
            proxy.data_source_enabled.connect ((unique_id, enabled) => {
                // FIXME: why don't we return DataSource here too? :(
                source_enabled (unique_id, enabled);
            });
            proxy.data_source_registered.connect ((data_source) => {
                try
                {
                    var source = new DataSource.from_variant (data_source);
                    source_registered (source);
                }
                catch (DataModelError err)
                {
                    warning ("Error parsing data-source: %s", err.message);
                }
            });
        }

        protected override void on_connection_lost ()
        {
        }

        public async GenericArray<DataSource> get_data_sources (
            Cancellable? cancellable=null) throws Error
        {
            yield wait_for_proxy ();
            var result = yield proxy.get_data_sources (cancellable);
            return DataSources.from_variant (result);
        }

        public async DataSource get_data_source_from_id (
            string unique_id, Cancellable? cancellable=null) throws Error
        {
            yield wait_for_proxy ();
            var result = yield proxy.get_data_source_from_id (unique_id,
                cancellable);

            return new DataSource.from_variant (result);
        }

        public async bool register_data_source (
            DataSource data_source, Cancellable? cancellable=null) throws Error
        {
            yield wait_for_proxy ();
            return yield proxy.register_data_source (
                data_source.unique_id, data_source.name,
                data_source.description,
                Events.to_variant(data_source.event_templates),
                cancellable);
        }

        // FIXME: return bool with false if error? (+ rethrow error)
        public async void set_data_source_enabled (
            string unique_id, bool enabled, Cancellable? cancellable=null)
            throws Error
        {
            yield wait_for_proxy ();
            yield proxy.set_data_source_enabled (unique_id, enabled,
                cancellable);
        }

    }

}

// vim:expandtab:ts=4:sw=4