about summary refs log tree commit diff
path: root/pkgs/applications/video/miro/gconf.patch
blob: bc516da9cbfa3b2076ffe5f058b7dd9f79c23db2 (plain) (blame)
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
diff --git a/plat/associate.py b/plat/associate.py
index 0f3cd31..f9b5a76 100644
--- a/plat/associate.py
+++ b/plat/associate.py
@@ -31,69 +31,8 @@
 Holds functions that associate Miro with certain protocols
 """
 
-import gconf
-from miro.plat.config import gconf_lock
-
 def associate_protocols(command):
-    _associate_protocol("magnet", command, False)
+    pass
 
 def disassociate_protocols(command):
-    _disassociate_protocol("magnet", command)
-
-def _associate_protocol(name, command, overwrite_existing=False):
-    url_handlers_key = "/desktop/gnome/url-handlers/" + name + "/"
-    if not _is_associated(name) or overwrite_existing:
-        gconf_lock.acquire()
-        try:
-            gconf_client = gconf.client_get_default()
-            if gconf_client.set_string(url_handlers_key + "command", command):
-                gconf_client.set_bool(url_handlers_key + "needs_terminal", False)
-                gconf_client.set_bool(url_handlers_key + "enabled", True)
-                success = True
-            else:
-                success = False
-        finally:
-            gconf_lock.release()
-    else:
-        success = True
-    return success
-
-def _disassociate_protocol(name, command):
-    url_handlers_key = "/desktop/gnome/url-handlers/" + name + "/"
-    if _is_associated(name, command):
-        gconf_lock.acquire()
-        try:
-            gconf_client = gconf.client_get_default()
-            if gconf_client.set_bool(url_handlers_key + "enabled", False):
-                success = True
-            else:
-                success = False
-        finally:
-            gconf_lock.release()
-    else:
-        success = True
-    return success
-
-def _is_associated(protocol, command=None):
-    """ Checks whether a protocol currently is
-        associated with the given command, or,
-        if none is given, whether the protocol
-        is associated with anything at all.
-    """
-    url_handlers_key = "/desktop/gnome/url-handlers/" + protocol + "/"
-    gconf_lock.acquire()
-    try:
-        gconf_client = gconf.client_get_default()
-        key = gconf_client.get(url_handlers_key + "command")
-        if key is None:
-            associated = False
-        else:
-            enabled = gconf_client.get(url_handlers_key + "enabled")
-            if command:
-                associated = key.get_string() == command and enabled.get_bool()
-            else:
-                associated = key.get_string() != "" and enabled.get_bool()
-    finally:
-        gconf_lock.release()
-    return associated
-
+    pass
diff --git a/plat/config.py b/plat/config.py
index 40895af..24f8815 100644
--- a/plat/config.py
+++ b/plat/config.py
@@ -39,51 +39,20 @@ Preferences are listed in miro.pref and also miro.plat.options.
 import os
 import logging
 from miro import prefs
-import gconf
+import shelve
 import threading
 from miro.plat import options
 from miro.plat import resources
 
-client = gconf.client_get_default()
-gconf_lock = threading.RLock()
-
-
-def gconf_key(key):
-    if options.gconf_name is None:
-        options.gconf_name = "miro"
-    return '/apps/%s/%s' % (options.gconf_name, key)
-
-
-def _convert_gconf_value(value):
-    if value.type == gconf.VALUE_STRING:
-        return value.get_string()
-    if value.type == gconf.VALUE_INT:
-        return value.get_int()
-    if value.type == gconf.VALUE_BOOL:
-        return value.get_bool()
-    if value.type == gconf.VALUE_FLOAT:
-        return value.get_float()
-    if value.type == gconf.VALUE_LIST:
-        return [_convert_gconf_value(v) for v in value.get_list()]
-    raise TypeError("unknown gconf type %s" % value.type)
-
-
-def _get_gconf(fullkey, default=None):
-    gconf_lock.acquire()
-    try:
-        value = client.get(fullkey)
-        if value != None:
-            try:
-                return _convert_gconf_value(value)
-            except TypeError, e:
-                logging.warn("type error while getting gconf value %s: %s",
-                        fullkey, str(e))
-        return default
-    finally:
-        gconf_lock.release()
-
-
-class GconfDict:
+
+class ConfigFile(object):
+    def __init__(self):
+        support_dir = get(prefs.SUPPORT_DIRECTORY)
+        if not os.path.exists(support_dir):
+            os.makedirs(support_dir)
+        path = os.path.join(support_dir, 'config')
+        self.conf = shelve.open(path, 'c', -1, True)
+
     def get(self, key, default=None):
         if not isinstance(key, str):
             raise TypeError()
@@ -91,19 +56,16 @@ class GconfDict:
         if "MIRO_%s" % key.upper() in os.environ:
             return os.environ["MIRO_%s" % key.upper()]
 
-        fullkey = gconf_key(key)
-        return _get_gconf(fullkey, default)
+        return self.conf.get(key, default)
+
+    def __del__(self):
+        self.conf.close()
 
     def __contains__(self, key):
         if "MIRO_%s" % key.upper() in os.environ:
             return True
 
-        gconf_lock.acquire()
-        try:
-            fullkey = gconf_key(key)
-            return client.get(fullkey) is not None
-        finally:
-            gconf_lock.release()
+        return key in self.conf
 
     def __getitem__(self, key):
         rv = self.get(key)
@@ -116,43 +78,11 @@ class GconfDict:
         if "MIRO_%s" % key.upper() in os.environ:
             return
 
-        gconf_lock.acquire()
-        try:
-            if not isinstance(key, str):
-                raise TypeError()
-
-            fullkey = gconf_key(key)
-            if isinstance(value, str):
-                client.set_string(fullkey, value)
-            elif isinstance(value, bool):
-                client.set_bool(fullkey, value)
-            elif isinstance(value, int):
-                client.set_int(fullkey, value)
-            elif isinstance(value, float):
-                client.set_float(fullkey, value)
-            elif isinstance(value, list):
-                # this is lame, but there isn't enough information to
-                # figure it out another way
-                if len(value) == 0 or isinstance(value[0], str):
-                    list_type = gconf.VALUE_STRING
-                elif isinstance(value[0], int):
-                    list_type = gconf.VALUE_INT
-                elif isinstance(value[0], float):
-                    list_type = gconf.VALUE_FLOAT
-                elif isinstance(value[0], bool):
-                    list_type = gconf.VALUE_BOOL
-                else:
-                    raise TypeError("unknown gconf type %s" % type(value[0]))
-
-                client.set_list(fullkey, list_type, value)
-            else:
-                raise TypeError()
-        finally:
-            gconf_lock.release()
+        self.conf[key] = value
 
 
 def load():
-    return GconfDict()
+    return ConfigFile()
 
 
 def save(data):
@@ -208,25 +138,4 @@ def get(descriptor):
         value = get(prefs.SUPPORT_DIRECTORY)
         value = os.path.join(value, 'miro-helper.log')
 
-    elif descriptor == prefs.HTTP_PROXY_ACTIVE:
-        return _get_gconf("/system/http_proxy/use_http_proxy")
-
-    elif descriptor == prefs.HTTP_PROXY_HOST:
-        return _get_gconf("/system/http_proxy/host")
-
-    elif descriptor == prefs.HTTP_PROXY_PORT:
-        return _get_gconf("/system/http_proxy/port")
-
-    elif descriptor == prefs.HTTP_PROXY_AUTHORIZATION_ACTIVE:
-        return _get_gconf("/system/http_proxy/use_authentication")
-
-    elif descriptor == prefs.HTTP_PROXY_AUTHORIZATION_USERNAME:
-        return _get_gconf("/system/http_proxy/authentication_user")
-
-    elif descriptor == prefs.HTTP_PROXY_AUTHORIZATION_PASSWORD:
-        return _get_gconf("/system/http_proxy/authentication_password")
-
-    elif descriptor == prefs.HTTP_PROXY_IGNORE_HOSTS:
-        return _get_gconf("/system/http_proxy/ignore_hosts", [])
-
     return value
diff --git a/plat/frontends/widgets/application.py b/plat/frontends/widgets/application.py
index a1eaaf3..20f4c23 100644
--- a/plat/frontends/widgets/application.py
+++ b/plat/frontends/widgets/application.py
@@ -35,7 +35,6 @@ except RuntimeError:
     sys.exit(1)
 import gobject
 import os
-import gconf
 import shutil
 import platform
 
@@ -53,7 +52,6 @@ from miro import prefs
 from miro.frontends.widgets.application import Application
 # from miro.plat.frontends.widgets import threads
 from miro.plat import renderers, options
-from miro.plat.config import gconf_lock, gconf_key
 try:
     from miro.plat.frontends.widgets import miroappindicator
     APP_INDICATOR_SUPPORT = True
@@ -77,29 +75,13 @@ import sys
 
 
 def _get_pref(key, getter_name):
-    gconf_lock.acquire()
-    try:
-        client = gconf.client_get_default()
-        fullkey = gconf_key(key)
-        value = client.get(fullkey)
-        if value is not None:
-            getter = getattr(value, getter_name)
-            return getter()
-        else:
-            return None
-    finally:
-        gconf_lock.release()
+    # XXX: ugly!
+    return app.config._data.get(key)
 
 
 def _set_pref(key, setter_name, value):
-    gconf_lock.acquire()
-    try:
-        client = gconf.client_get_default()
-        fullkey = gconf_key(key)
-        setter = getattr(client, setter_name)
-        setter(fullkey, value)
-    finally:
-        gconf_lock.release()
+    # XXX: ugly!
+    app.config._data[key] = value
 
 
 def get_int(key):
diff --git a/plat/options.py b/plat/options.py
index 4ea1a67..8e75e20 100644
--- a/plat/options.py
+++ b/plat/options.py
@@ -69,14 +69,14 @@ USE_RENDERER = LinuxPref(
 
 GSTREAMER_IMAGESINK = LinuxPref(
     key="DefaultGstreamerImagesink",
-    default="gconfvideosink",
+    default="autovideosink",
     alias="gstreamer-imagesink",
     helptext=("Which GStreamer image sink to use for video.  "
               "(autovideosink, ximagesink, xvimagesink, gconfvideosink, ...)"))
 
 GSTREAMER_AUDIOSINK = LinuxPref(
     key="DefaultGstreamerAudiosink",
-    default="gconfaudiosink",
+    default="autoaudiosink",
     alias="gstreamer-audiosink",
     helptext=("Which GStreamer sink to use for audio.  "
               "(autoaudiosink, osssink, alsasink, gconfaudiosink, ...)"))
diff --git a/plat/upgrade.py b/plat/upgrade.py
index 9677e3a..f812ad4 100644
--- a/plat/upgrade.py
+++ b/plat/upgrade.py
@@ -30,7 +30,6 @@
 import os
 import shutil
 from miro.plat import resources
-import gconf
 
 
 def upgrade():
@@ -64,47 +63,3 @@ def upgrade():
             os.remove(old_file)
         except OSError:
             pass
-
-    # gconf settings
-    client = gconf.client_get_default()
-
-    def _copy_gconf(src, dst):
-        for entry in client.all_entries(src):
-            entry_dst = dst + '/' + entry.key.split('/')[-1]
-            client.set(entry_dst, entry.value)
-        for subdir in client.all_dirs(src):
-            subdir_dst = dst + '/' + subdir.split('/')[-1]
-            _copy_gconf(subdir, subdir_dst)
-
-    if ((client.dir_exists("/apps/democracy/player")
-         and not client.dir_exists("/apps/miro"))):
-        _copy_gconf("/apps/democracy/player", "/apps/miro")
-        client.recursive_unset("/apps/democracy", 1)
-
-    # Set the MoviesDirectory and NonVideoDirectory based on the
-    # possibilities that we've had over the years and what exists on
-    # the user's system.  This codifies it in the user's gconf so that
-    # when we change it in future, then the user isn't affected.
-    from miro.plat import options
-    if options.gconf_name is None:
-        options.gconf_name = "miro"
-    key = "/apps/%s/MoviesDirectory" % options.gconf_name
-    if client.get(key) is None:
-        for mem in ["~/.miro/Movies",     # packages
-                    "~/Videos/Miro",
-                    "~/Movies/Miro",      # pre 3.5
-                    "~/Movies/Democracy"  # democracy player
-                    ]:
-            mem = os.path.expanduser(mem)
-            if os.path.exists(mem):
-                client.set_string(key, mem)
-                break
-
-    key = "/apps/%s/NonVideoDirectory" % options.gconf_name
-    if client.get(key) is None:
-        for mem in ["~/.miro/Nonvideo"   # packages
-                    ]:
-            mem = os.path.expanduser(mem)
-            if os.path.exists(mem):
-                client.set_string(key, mem)
-                break