]> git.mxchange.org Git - core.git/commitdiff
added files for database format-upgrade
authorRoland Haeder <roland@mxchange.org>
Mon, 21 Nov 2016 20:38:56 +0000 (21:38 +0100)
committerRoland Häder <roland@mxchange.org>
Fri, 19 Jan 2018 21:18:53 +0000 (22:18 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
inc/main/classes/registry/format_upgrade/.htaccess [new file with mode: 0644]
inc/main/classes/registry/format_upgrade/database/.htaccess [new file with mode: 0644]
inc/main/classes/registry/format_upgrade/database/class_ [new file with mode: 0644]
inc/main/classes/registry/format_upgrade/database/class_LocalFileDatabaseFormatUpgradeRegistry.php [new file with mode: 0644]
inc/main/interfaces/registry/format_upgrade/.htaccess [new file with mode: 0644]
inc/main/interfaces/registry/format_upgrade/class_RegisterableFormatUpgrade.php [new file with mode: 0644]

diff --git a/inc/main/classes/registry/format_upgrade/.htaccess b/inc/main/classes/registry/format_upgrade/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/inc/main/classes/registry/format_upgrade/database/.htaccess b/inc/main/classes/registry/format_upgrade/database/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/inc/main/classes/registry/format_upgrade/database/class_ b/inc/main/classes/registry/format_upgrade/database/class_
new file mode 100644 (file)
index 0000000..7da3a87
--- /dev/null
@@ -0,0 +1,59 @@
+<?php
+/**
+ * A ??? database-format-upgrade registry
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class ???FormatUpgradeRegistry extends BaseRegistry implements RegisterableFormatUpgrade {
+       /**
+        * Instance of this class
+        */
+       private static $registryInstance = null;
+
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Singleton getter for self instance. This class has no factory pattern
+        * because here is no need for special parameters.
+        *
+        * @return      $registryInstance       Instance of this class
+        */
+       public final static function getRegistry () {
+               // Is an instance there?
+               if (is_null(self::$registryInstance)) {
+                       // Not yet, so create one
+                       self::$registryInstance = new ???FormatUpgradeRegistry();
+               } // END - if
+
+               // Return the instance
+               return self::$registryInstance;
+       }
+}
+
+// [EOF]
+?>
diff --git a/inc/main/classes/registry/format_upgrade/database/class_LocalFileDatabaseFormatUpgradeRegistry.php b/inc/main/classes/registry/format_upgrade/database/class_LocalFileDatabaseFormatUpgradeRegistry.php
new file mode 100644 (file)
index 0000000..25c7ef2
--- /dev/null
@@ -0,0 +1,59 @@
+<?php
+/**
+ * A LocalFileDatabase database-format-upgrade registry
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class LocalFileDatabaseFormatUpgradeRegistry extends BaseRegistry implements RegisterableFormatUpgrade {
+       /**
+        * Instance of this class
+        */
+       private static $registryInstance = null;
+
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Singleton getter for self instance. This class has no factory pattern
+        * because here is no need for special parameters.
+        *
+        * @return      $registryInstance       Instance of this class
+        */
+       public final static function getRegistry () {
+               // Is an instance there?
+               if (is_null(self::$registryInstance)) {
+                       // Not yet, so create one
+                       self::$registryInstance = new LocalFileDatabaseFormatUpgradeRegistry();
+               } // END - if
+
+               // Return the instance
+               return self::$registryInstance;
+       }
+}
+
+// [EOF]
+?>
diff --git a/inc/main/interfaces/registry/format_upgrade/.htaccess b/inc/main/interfaces/registry/format_upgrade/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/inc/main/interfaces/registry/format_upgrade/class_RegisterableFormatUpgrade.php b/inc/main/interfaces/registry/format_upgrade/class_RegisterableFormatUpgrade.php
new file mode 100644 (file)
index 0000000..7fde65b
--- /dev/null
@@ -0,0 +1,36 @@
+<?php
+/**
+ * An interface for format-upgrade registries
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 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 General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface RegisterableFormatUpgrade extends FrameworkInterface {
+       /**
+        * Registers given format-upgrade class with this registry
+        *
+        * @param       $upgradeInstance        An instance of a UpgradeableDatabaseFormat class
+        * @return      void
+        */
+       function registerFormatUpgrader (UpgradeableDatabaseFormat $upgradeInstance);
+
+}
+
+// [EOF]
+?>