3 namespace Org\Mxchange\CoreFramework\Middleware\Compressor;
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
7 use Org\Mxchange\CoreFramework\Compressor\Compressor;
8 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
9 use Org\Mxchange\CoreFramework\Middleware\BaseMiddleware;
10 use Org\Mxchange\CoreFramework\Registry\Registerable;
13 * Middleware class for selecting the right compressor channel
15 * @author Roland Haeder <webmaster@shipsimu.org>
17 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
18 * @license GNU GPL 3.0 or any newer version
19 * @link http://www.shipsimu.org
21 * This program is free software: you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation, either version 3 of the License, or
24 * (at your option) any later version.
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
31 * You should have received a copy of the GNU General Public License
32 * along with this program. If not, see <http://www.gnu.org/licenses/>.
34 class CompressorChannel extends BaseMiddleware implements Registerable {
36 * Real compressor instance
38 private $compressor = NULL;
41 * Protected constructor
45 private function __construct () {
46 // Call parent constructor!
47 parent::__construct(__CLASS__);
51 * Create a new compressor channel.
53 * @return $compressorInstance A prepared instance of this class
55 public static final function createCompressorChannel () {
57 $compressorInstance = new CompressorChannel();
59 // Is the compressor handler set?
61 (is_null($compressorInstance->getCompressor()))
62 || (!$compressorInstance->getCompressor() instanceof Compressor)
64 // Init base directory
66 FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('framework_base_path') .
67 FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('compressor_base_path');
69 // Get a directory pointer
70 $directoryInstance = ObjectFactory::createObjectByConfiguredName('directory_class', array($baseDir));
72 // Read all directories but no sub directories, .htaccess files and NullCompressor class
73 while ($directoryEntry = $directoryInstance->readDirectoryExcept(array('class_NullCompressor.php'))) {
75 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('COMPRESSOR: directoryEntry=' . $directoryEntry);
77 // Is this a class file?
78 if ((substr($directoryEntry, 0, 6) == 'class_') && (substr($directoryEntry, -4, 4) == '.php')) {
79 /* Get the compressor's name. That's why you must name
80 * your files like your classes and also that's why you
81 * must keep on class in one file.
84 // Base name of compressor class
85 $baseClassName = substr($directoryEntry, 6, -4);
87 // Create full class name (with namespace
88 $fullClassName = sprintf(
89 'Org\Mxchange\CoreFramework\Compressor\%s\%s',
90 str_replace('Compressor', '', $baseClassName),
94 // Get an instance from our object factory
95 $tempInstance = ObjectFactory::createObjectByName($fullClassName);
98 if (is_null($tempInstance)) {
99 // Then skip to the next one
103 // Set the compressor
104 $compressorInstance->setCompressor($tempInstance);
106 // No more searches required because we have found a valid compressor stream
111 // Close the directory
112 $directoryInstance->closeDirectory();
115 // Check again if there is a compressor
117 (is_null($compressorInstance->getCompressor()))
118 || (!is_object($compressorInstance->getCompressor()))
119 || (!$compressorInstance instanceof Compressor)
121 // Set the null compressor handler. This should not be configureable!
122 // @TODO Is there a configurable fall-back compressor needed, or is NullCompressor okay?
123 $compressorInstance->setCompressor(ObjectFactory::createObjectByName('Org\Mxchange\CoreFramework\Compressor\Null\NullCompressor'));
126 // Return the compressor instance
127 return $compressorInstance;
131 * Getter for compressor instance
133 * @return $compressor The compressor instance
135 public final function getCompressor () {
136 return $this->compressor;
140 * Setter for compressor
142 * @param $compressorInstance The compressor instance we shall use
145 public final function setCompressor (Compressor $compressorInstance = NULL) {
146 $this->compressor = $compressorInstance;
150 * Getter for the file extension of the current compressor
152 public final function getCompressorExtension () {
153 // Get compressor extension from current compressor
154 return $this->getCompressor()->getCompressorExtension();