[rygel/wip/media-engine: 15/17] core: Add empty Configuration implementation



commit 34db4238cada7c8a6f2202b831c9033d98276606
Author: Jens Georg <jensg openismus com>
Date:   Wed Oct 3 13:49:46 2012 +0200

    core: Add empty Configuration implementation

 src/librygel-core/filelist.am                   |    1 +
 src/librygel-core/rygel-base-configuration.vala |  120 +++++++++++++++++++++++
 2 files changed, 121 insertions(+), 0 deletions(-)
---
diff --git a/src/librygel-core/filelist.am b/src/librygel-core/filelist.am
index 2331754..510fe33 100644
--- a/src/librygel-core/filelist.am
+++ b/src/librygel-core/filelist.am
@@ -12,6 +12,7 @@ LIBRYGEL_CORE_VAPI_SOURCE_FILES = \
 	rygel-resource-info.vala \
 	rygel-media-device.vala \
 	rygel-configuration.vala \
+	rygel-base-configuration.vala \
 	rygel-free-desktop-interfaces.vala \
 	rygel-state-machine.vala
 
diff --git a/src/librygel-core/rygel-base-configuration.vala b/src/librygel-core/rygel-base-configuration.vala
new file mode 100644
index 0000000..4be5395
--- /dev/null
+++ b/src/librygel-core/rygel-base-configuration.vala
@@ -0,0 +1,120 @@
+/*
+ * Copyright (C) 2012 Intel Corporation.
+ *
+ * Author: Jens Georg <jensg openismus 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 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 program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+/**
+ * Base class that can be used for configuration implementations.
+ *
+ * Mainly useful to only implement a small subset of the configuration.
+ */
+public class Rygel.BaseConfiguration : Rygel.Configuration, Object {
+    public virtual bool get_upnp_enabled () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_interface () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual int get_port () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual bool get_transcoding () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual bool get_allow_upload () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual bool get_allow_deletion () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_log_levels () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_plugin_path () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_engine_path () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_media_engine () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_video_upload_folder () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_music_upload_folder () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_picture_upload_folder () throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual bool get_enabled (string section) throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_title (string section) throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual string get_string (string section,
+                              string key)
+                              throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual Gee.ArrayList<string> get_string_list (string section,
+                                                  string key)
+                                                  throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual int get_int (string section,
+                                string key,
+                                int    min,
+                                int    max)
+                                throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual Gee.ArrayList<int> get_int_list (string section,
+                                                    string key)
+                                                    throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+
+    public virtual bool get_bool (string section,
+                                  string key)
+                                  throws GLib.Error {
+        throw new ConfigurationError.NO_VALUE_SET (_("Not implemented"));
+    }
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]