forked from OpenMage/magento-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler.php
132 lines (123 loc) · 4.24 KB
/
compiler.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage_Shell
* @copyright Copyright (c) 2006-2020 Magento, Inc. (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
require_once 'abstract.php';
/**
* Magento Compiler Shell Script
*
* @category Mage
* @package Mage_Shell
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Shell_Compiler extends Mage_Shell_Abstract
{
/**
* Compiler process object
*
* @var Mage_Compiler_Model_Process
*/
protected $_compiler;
/**
* Get compiler process object
*
* @return Mage_Compiler_Model_Process
*/
protected function _getCompiler()
{
if ($this->_compiler === null) {
$this->_compiler = Mage::getModel('compiler/process');
}
return $this->_compiler;
}
/**
* Run script
*
*/
public function run()
{
if (isset($this->_args['disable'])) {
$this->_getCompiler()->registerIncludePath(false);
echo "Compiler include path disabled\n";
} else if (isset($this->_args['enable'])) {
if ($this->_getCompiler()->getCompiledFilesCount() == 0) {
die("Compilation State: Not Compiled\nPlease run with option compile\n");
}
$this->_getCompiler()->registerIncludePath();
echo "Compiler include path enabled\n";
} else if (isset($this->_args['compile'])) {
try {
$this->_getCompiler()->run();
echo "Compilation successfully finished\n";
} catch (Mage_Core_Exception $e) {
echo $e->getMessage() . "\n";
} catch (Exception $e) {
echo "Compilation unknown error:\n\n";
echo $e . "\n";
}
} else if (isset($this->_args['clear'])) {
try {
$this->_getCompiler()->clear();
echo "Compilation successfully cleared\n";
} catch (Mage_Core_Exception $e) {
echo $e->getMessage() . "\n";
} catch (Exception $e) {
echo "Compilation unknown error:\n\n";
echo $e . "\n";
}
} else if (isset($this->_args['state']) || isset($this->_args['fullstate'])) {
$compiler = $this->_getCompiler();
$compilerConfig = '../includes/config.php';
if (file_exists($compilerConfig)) {
include $compilerConfig;
}
$status = defined('COMPILER_INCLUDE_PATH') ? 'Enabled' : 'Disabled';
$state = $compiler->getCollectedFilesCount() > 0 ? 'Compiled' : 'Not Compiled';
echo "Compiler Status: " . $status . "\n";
echo "Compilation State: " . $state . "\n";
echo "Collected Files Count: " . $compiler->getCollectedFilesCount() . "\n";
echo "Compiled Scopes Count: " . $compiler->getCompiledFilesCount() . "\n";
} else {
echo $this->usageHelp();
}
}
/**
* Retrieve Usage Help Message
*
*/
public function usageHelp()
{
return <<<USAGE
Usage: php -f compiler.php -- [options]
state Show Compilation State
compile Run Compilation Process
clear Disable Compiler include path and Remove compiled files
enable Enable Compiler include path
disable Disable Compiler include path
help This help
USAGE;
}
}
$shell = new Mage_Shell_Compiler();
$shell->run();