[gnome-games/wip/exalm/platform-preferences: 40/44] core: Add PlatformRegister
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/exalm/platform-preferences: 40/44] core: Add PlatformRegister
- Date: Tue, 18 Sep 2018 16:48:31 +0000 (UTC)
commit 090a9e2051a4bbbf2bc28021181fd836bf438670
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Mon May 21 02:22:51 2018 +0500
core: Add PlatformRegister
This will be used in the following commits to represent the global
collection of Platform objects.
src/core/platform-register.vala | 37 +++++++++++++++++++++++++++++++++++++
src/meson.build | 1 +
2 files changed, 38 insertions(+)
---
diff --git a/src/core/platform-register.vala b/src/core/platform-register.vala
new file mode 100644
index 00000000..db8ae63b
--- /dev/null
+++ b/src/core/platform-register.vala
@@ -0,0 +1,37 @@
+// This file is part of GNOME Games. License: GPL-3.0+.
+
+private class Games.PlatformRegister : Object {
+ private static PlatformRegister instance;
+ private HashTable<string, Platform> platforms;
+
+ private PlatformRegister () {
+ platforms = new HashTable<string, Platform> (str_hash, str_equal);
+ }
+
+ public static PlatformRegister get_register () {
+ if (instance == null)
+ instance = new PlatformRegister ();
+
+ return instance;
+ }
+
+ public void add_platform (Platform platform) {
+ var platform_id = platform.get_id ();
+
+ assert (!platforms.contains (platform_id));
+
+ platforms[platform_id] = platform;
+ }
+
+ public Platform get_platform (string platform_id) {
+ return platforms[platform_id];
+ }
+
+ public List<Platform> get_all_platforms () {
+ var values = platforms.get_values ();
+ var result = values.copy ();
+ result.sort (Platform.compare);
+
+ return result;
+ }
+}
diff --git a/src/meson.build b/src/meson.build
index fcd62b54..3c0e4e89 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -30,6 +30,7 @@ vala_sources = [
'core/media-set/media-set.vala',
'core/media-set/media-set-error.vala',
'core/platform.vala',
+ 'core/platform-register.vala',
'core/players.vala',
'core/plugin.vala',
'core/plugin-register.vala',
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]