[rygel/wip/gobject: 34/35] core: RootDeviceFactory to GObject-style
- From: Krzesimir Nowak <krnowak src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel/wip/gobject: 34/35] core: RootDeviceFactory to GObject-style
- Date: Tue, 15 Jan 2013 14:16:38 +0000 (UTC)
commit 02a14fda930dc66089aa31afdbef58f01215d003
Author: Jens Georg <jensg openismus com>
Date: Thu Dec 6 23:26:36 2012 +0100
core: RootDeviceFactory to GObject-style
src/librygel-core/rygel-root-device-factory.vala | 17 ++++++++++++++---
1 files changed, 14 insertions(+), 3 deletions(-)
---
diff --git a/src/librygel-core/rygel-root-device-factory.vala b/src/librygel-core/rygel-root-device-factory.vala
index ed6afad..99aa36d 100644
--- a/src/librygel-core/rygel-root-device-factory.vala
+++ b/src/librygel-core/rygel-root-device-factory.vala
@@ -39,16 +39,25 @@ public errordomain RootDeviceFactoryError {
* Call rygel_root_device_factory_create() with a plugin
* to create a root device for the plugin.
*/
-public class Rygel.RootDeviceFactory {
- public GUPnP.Context context {get; private set;}
+public class Rygel.RootDeviceFactory : Object,
+ Initable {
+ public GUPnP.Context context {get; construct;}
private Configuration config;
private string desc_dir;
public RootDeviceFactory (GUPnP.Context context) throws GLib.Error {
+ Object (context : context);
+ init ();
+ }
+
+ public bool init (Cancellable? cancellable = null) throws GLib.Error {
+ if (this.config != null) {
+ return true;
+ }
+
this.config = MetaConfig.get_default ();
- this.context = context;
/* We store the modified descriptions in the user's config dir */
var config_dir = Environment.get_user_config_dir ();
@@ -56,6 +65,8 @@ public class Rygel.RootDeviceFactory {
this.desc_dir = Path.build_filename (config_dir,
Environment.get_application_name ());
this.ensure_dir_exists (this.desc_dir);
+
+ return true;
}
public RootDevice create (Plugin plugin) throws GLib.Error {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]