forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfigTrait.php
151 lines (127 loc) · 6.61 KB
/
ConfigTrait.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
namespace PHPPM\Commands;
use Symfony\Component\Console\Helper\Table;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Process\PhpExecutableFinder;
trait ConfigTrait
{
protected $file = './ppm.json';
protected function configurePPMOptions(\Symfony\Component\Console\Command\Command $command)
{
$command
->addOption('bridge', null, InputOption::VALUE_OPTIONAL, 'The bridge we use to convert a ReactPHP-Request to your target framework.', 'HttpKernel')
->addOption('host', null, InputOption::VALUE_OPTIONAL, 'Load-Balancer host. Default is 127.0.0.1', '127.0.0.1')
->addOption('port', null, InputOption::VALUE_OPTIONAL, 'Load-Balancer port. Default is 8080', 8080)
->addOption('workers', null, InputOption::VALUE_OPTIONAL, 'Worker count. Default is 8. Should be minimum equal to the number of CPU cores.', 8)
->addOption('app-env', null, InputOption::VALUE_OPTIONAL, 'The environment that your application will use to bootstrap (if any)', 'dev')
->addOption('debug', null, InputOption::VALUE_OPTIONAL, 'Enable/Disable debugging so that your application is more verbose, enables also hot-code reloading. 1|0', 1)
->addOption('logging', null, InputOption::VALUE_OPTIONAL, 'Enable/Disable http logging to stdout. 1|0', 1)
->addOption('static', null, InputOption::VALUE_OPTIONAL, 'Enable/Disable static file serving. 1|0', 1)
->addOption('max-requests', null, InputOption::VALUE_OPTIONAL, 'Max requests per worker until it will be restarted', 1000)
->addOption('concurrent-requests', null, InputOption::VALUE_OPTIONAL, 'If a worker is allowed to handle more than one request at the same time. This can lead to issues when the application does not support it but makes it faster. (like when they operate on globals at the same time) 1|0', 0)
->addOption('bootstrap', null, InputOption::VALUE_OPTIONAL, 'The class that will be used to bootstrap your application', 'PHPPM\Bootstraps\Symfony')
->addOption('cgi-path', null, InputOption::VALUE_OPTIONAL, 'Full path to the php-cgi executable', false)
->addOption('socket-path', null, InputOption::VALUE_OPTIONAL, 'Path to a folder where socket files will be placed. Relative to working-directory or cwd()', '.ppm/run/');
}
protected function renderConfig(OutputInterface $output, array $config)
{
$table = new Table($output);
$rows = array_map(function ($a, $b) {
return [$a, $b];
}, array_keys($config), $config);
$table->addRows($rows);
$table->render();
}
/**
* @return string|null
*/
protected function getConfigPath()
{
$possiblePaths = [
$this->file,
sprintf('%s/%s', dirname($GLOBALS['argv'][0]), $this->file)
];
foreach ($possiblePaths as $path) {
if (file_exists($path)) {
return realpath($path);
}
}
}
protected function loadConfig(InputInterface $input, OutputInterface $output)
{
$config = [];
if ($path = $this->getConfigPath()) {
$content = file_get_contents($path);
$config = json_decode($content, true);
}
$config['bridge'] = $this->optionOrConfigValue($input, 'bridge', $config);
$config['host'] = $this->optionOrConfigValue($input, 'host', $config);
$config['port'] = (int)$this->optionOrConfigValue($input, 'port', $config);
$config['workers'] = (int)$this->optionOrConfigValue($input, 'workers', $config);
$config['app-env'] = $this->optionOrConfigValue($input, 'app-env', $config);
$config['debug'] = $this->optionOrConfigValue($input, 'debug', $config);
$config['logging'] = $this->optionOrConfigValue($input, 'logging', $config);
$config['static'] = (boolean)$this->optionOrConfigValue($input, 'static', $config);
$config['bootstrap'] = $this->optionOrConfigValue($input, 'bootstrap', $config);
$config['max-requests'] = (int)$this->optionOrConfigValue($input, 'max-requests', $config);
$config['concurrent-requests'] = (boolean)$this->optionOrConfigValue($input, 'concurrent-requests', $config);
$config['socket-path'] = $this->optionOrConfigValue($input, 'socket-path', $config);
$config['cgi-path'] = $this->optionOrConfigValue($input, 'cgi-path', $config);
if (false === $config['cgi-path']) {
//not set in config nor in command options -> autodetect path
$executableFinder = new PhpExecutableFinder();
$binary = $executableFinder->find();
$cgiPaths = [
$binary . '-cgi', //php7.0 -> php7.0-cgi
str_replace('php', 'php-cgi', $binary), //php7.0 => php-cgi7.0
];
foreach ($cgiPaths as $cgiPath) {
$path = trim(`which $cgiPath`);
if ($path) {
$config['cgi-path'] = $path;
break;
}
}
if (false === $config['cgi-path']) {
$output->writeln('<error>PPM could find a php-cgi path. Please specify by --cgi-path=</error>');
exit(1);
}
}
return $config;
}
protected function optionOrConfigValue(InputInterface $input, $name, $config)
{
if ($input->hasParameterOption('--' . $name)) {
return $input->getOption($name);
}
return isset($config[$name]) ? $config[$name] : $input->getOption($name);
}
/**
* @param InputInterface $input
* @param OutputInterface $output
* @param bool $render
* @return array|mixed
*/
protected function initializeConfig(InputInterface $input, OutputInterface $output, $render = true)
{
if ($workingDir = $input->getArgument('working-directory')) {
chdir($workingDir);
}
$config = $this->loadConfig($input, $output);
if ($path = $this->getConfigPath()) {
$modified = '';
$fileConfig = json_decode(file_get_contents($path), true);
if (json_encode($fileConfig) !== json_encode($config)) {
$modified = ', modified by command arguments';
}
$output->writeln(sprintf('<info>Read configuration %s%s.</info>', $path, $modified));
}
$output->writeln(sprintf('<info>%s</info>', getcwd()));
if ($render) {
$this->renderConfig($output, $config);
}
return $config;
}
}