| Total Complexity | 42 |
| Total Lines | 303 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Complex classes like SQLExecutingCommand often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use SQLExecutingCommand, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 18 | abstract class SQLExecutingCommand extends BaseCommand |
||
| 19 | { |
||
| 20 | /** @var DatabaseConfigurationManager $dbConfigurationManager */ |
||
| 21 | protected $dbConfigurationManager; |
||
| 22 | /** @var SqlExecutorFactory $executorFactory */ |
||
| 23 | protected $executorFactory; |
||
| 24 | protected $processManager; |
||
| 25 | /** @var DatabaseManagerFactory $databaseManagerFactory */ |
||
| 26 | protected $databaseManagerFactory; |
||
| 27 | |||
| 28 | const DEFAULT_OUTPUT_FORMAT = 'text'; |
||
| 29 | const DEFAULT_PARALLEL_PROCESSES = 16; |
||
| 30 | const DEFAULT_PROCESS_TIMEOUT = 600; |
||
| 31 | const DEFAULT_EXECUTOR_TYPE = 'NativeClient'; |
||
| 32 | |||
| 33 | protected $outputFormat; |
||
| 34 | protected $outputFile; |
||
| 35 | protected $maxParallelProcesses; |
||
| 36 | protected $processTimeout; |
||
| 37 | protected $executionStrategy; |
||
| 38 | protected $executeInProcess; |
||
| 39 | |||
| 40 | public function __construct( |
||
| 53 | } |
||
| 54 | |||
| 55 | protected function addCommonOptions() |
||
| 67 | ; |
||
| 68 | } |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @param InputInterface $input |
||
| 72 | * @return string[][] the list of instances to use. key: name, value: connection spec |
||
| 73 | */ |
||
| 74 | protected function parseCommonOptions(InputInterface $input) |
||
| 75 | { |
||
| 76 | $this->outputFormat = $input->getOption('output-type'); |
||
| 77 | $this->outputFile = $input->getOption('output-file'); |
||
| 78 | $this->processTimeout = $input->getOption('timeout'); |
||
| 79 | $this->maxParallelProcesses = $input->getOption('max-parallel'); |
||
| 80 | $this->executionStrategy = $input->getOption('execution-strategy'); |
||
| 81 | $this->executeInProcess = $input->getOption('execute-in-process'); |
||
| 82 | |||
| 83 | // On Debian, which we use by default, SF has troubles understanding that php was compiled with --enable-sigchild |
||
| 84 | // We thus force it, but give end users an option to disable this |
||
| 85 | // For more details, see comment 12 at https://bugs.launchpad.net/ubuntu/+source/php5/+bug/516061 |
||
| 86 | if (! $input->getOption('dont-force-enabled-sigchild')) { |
||
| 87 | Process::forceSigchildEnabled(true); |
||
| 88 | } |
||
| 89 | |||
| 90 | return $this->dbConfigurationManager->getInstancesConfiguration( |
||
| 91 | $this->dbConfigurationManager->listInstances($input->getOption('only-instances'), $input->getOption('except-instances')) |
||
| 92 | ); |
||
| 93 | } |
||
| 94 | |||
| 95 | /** |
||
| 96 | * @param string[][] $instanceList list of instances to execute the action on. Key: instance name, value: connection spec |
||
| 97 | * @param string $actionName used to build error messages |
||
| 98 | * @param callable $getSqlActionCallable the method used to retrieve the desired SqlAction. |
||
| 99 | * It will be passed as arguments the SchemaManager and instance name, and should return a CommandAction or FileAction |
||
| 100 | * @param bool $timed whether to use a timed executor |
||
| 101 | * @param callable $onForkedProcessOutput a callback invoked when forked processes produce output |
||
| 102 | * @return array 'succeeded': int, 'failed': int, 'data': mixed[] |
||
| 103 | * @throws \Exception |
||
| 104 | */ |
||
| 105 | protected function executeSqlAction($instanceList, $actionName, $getSqlActionCallable, $timed = false, $onForkedProcessOutput = null) |
||
| 106 | { |
||
| 107 | $processes = []; |
||
| 108 | $callables = []; |
||
| 109 | $outputFilters = []; |
||
| 110 | $tempSQLFileNames = []; |
||
| 111 | $executors = []; |
||
| 112 | |||
| 113 | try { |
||
| 114 | |||
| 115 | foreach ($instanceList as $instanceName => $dbConnectionSpec) { |
||
| 116 | |||
| 117 | $schemaManager = $this->databaseManagerFactory->getDatabaseManager($dbConnectionSpec); |
||
| 118 | |||
| 119 | /** @var CommandAction|FileAction $sqlAction */ |
||
| 120 | $sqlAction = call_user_func_array($getSqlActionCallable, [$schemaManager, $instanceName]); |
||
| 121 | |||
| 122 | if ($sqlAction instanceof CommandAction) { |
||
| 123 | $filename = null; |
||
| 124 | $sql = $sqlAction->getCommand(); |
||
| 125 | } else if ($sqlAction instanceof FileAction) { |
||
| 126 | $filename = $sqlAction->getFilename(); |
||
| 127 | $sql = null; |
||
| 128 | } else { |
||
| 129 | // this is a coding error, not a sql execution error |
||
| 130 | throw new \Exception("Unsupported action type: " . get_class($sqlAction)); |
||
| 131 | } |
||
| 132 | $filterCallable = $sqlAction->getResultsFilterCallable(); |
||
| 133 | |||
| 134 | if ($filename === null && $sql === null) { |
||
| 135 | // no sql to execute as forked process - we run the 'filter' functions in a separate loop |
||
| 136 | $callables[$instanceName] = $filterCallable; |
||
| 137 | } else { |
||
| 138 | $outputFilters[$instanceName] = $filterCallable; |
||
| 139 | |||
| 140 | if ($filename === null && !$sqlAction->isSingleStatement()) { |
||
| 141 | $filename = tempnam(sys_get_temp_dir(), 'db3v4l_') . '.sql'; |
||
| 142 | file_put_contents($filename, $sql); |
||
| 143 | $tempSQLFileNames[] = $filename; |
||
| 144 | } |
||
| 145 | |||
| 146 | if ($this->executeInProcess) { |
||
| 147 | $executor = $this->executorFactory->createInProcessExecutor($instanceName, $dbConnectionSpec, $this->executionStrategy, $timed); |
||
| 148 | if ($filename === null) { |
||
| 149 | $callables[$instanceName] = $executor->getExecuteCommandCallable($sql); |
||
| 150 | } else { |
||
| 151 | $callables[$instanceName] = $executor->getExecuteFileCallable($filename); |
||
| 152 | } |
||
| 153 | } else { |
||
| 154 | $executor = $this->executorFactory->createForkedExecutor($instanceName, $dbConnectionSpec, $this->executionStrategy, $timed); |
||
| 155 | $executors[$instanceName] = $executor; |
||
| 156 | |||
| 157 | if ($filename === null) { |
||
| 158 | $process = $executor->getExecuteStatementProcess($sql); |
||
| 159 | } else { |
||
| 160 | $process = $executor->getExecuteFileProcess($filename); |
||
| 161 | } |
||
| 162 | |||
| 163 | if ($this->outputFormat === 'text') { |
||
| 164 | $this->writeln('Command line: ' . $process->getCommandLine(), OutputInterface::VERBOSITY_VERY_VERBOSE); |
||
| 165 | } |
||
| 166 | |||
| 167 | $process->setTimeout($this->processTimeout); |
||
| 168 | |||
| 169 | $processes[$instanceName] = $process; |
||
| 170 | } |
||
| 171 | } |
||
| 172 | } |
||
| 173 | |||
| 174 | /// @todo refactor the filtering loop so that filters can be applied as well to inProcess executors |
||
| 175 | |||
| 176 | $succeeded = 0; |
||
| 177 | $failed = 0; |
||
| 178 | $results = []; |
||
| 179 | |||
| 180 | foreach ($callables as $instanceName => $callable) { |
||
| 181 | try { |
||
| 182 | $results[$instanceName] = call_user_func($callable); |
||
| 183 | $succeeded++; |
||
| 184 | } catch (\Throwable $t) { |
||
| 185 | $results[$instanceName] = [ |
||
| 186 | 'exitcode' => $t->getCode(), |
||
| 187 | 'stderr' => $t->getMessage(), |
||
| 188 | ]; |
||
| 189 | $failed++; |
||
| 190 | $this->writeErrorln("\n<error>$actionName in instance '$instanceName' failed! Reason: " . $t->getMessage() . "</error>\n", OutputInterface::VERBOSITY_NORMAL); |
||
| 191 | } |
||
| 192 | } |
||
| 193 | |||
| 194 | if (count($processes)) { |
||
| 195 | if ($this->outputFormat === 'text') { |
||
| 196 | $this->writeln('<info>Starting parallel execution...</info>', OutputInterface::VERBOSITY_VERY_VERBOSE); |
||
| 197 | } |
||
| 198 | $this->processManager->runParallel($processes, $this->maxParallelProcesses, 100, $onForkedProcessOutput); |
||
| 199 | |||
| 200 | foreach ($processes as $instanceName => $process) { |
||
| 201 | if ($process->isSuccessful()) { |
||
| 202 | /// @todo is it necessary to have rtrim here ? shall we maybe move it to the executor ? |
||
| 203 | $output = rtrim($process->getOutput()); |
||
| 204 | if (isset($outputFilters[$instanceName])) { |
||
| 205 | try { |
||
| 206 | $output = call_user_func_array($outputFilters[$instanceName], [$output, $executors[$instanceName]]); |
||
| 207 | } catch (\Throwable $t) { |
||
| 208 | $output = [ |
||
| 209 | // q: shall we add to the results the sql output ? |
||
| 210 | 'exitcode' => $t->getCode(), |
||
| 211 | 'stderr' => $t->getMessage(), |
||
| 212 | ]; |
||
| 213 | $failed++; |
||
| 214 | $succeeded--; |
||
| 215 | $this->writeErrorln("\n<error>$actionName in instance '$instanceName' failed! Reason: " . $t->getMessage() . "</error>\n", OutputInterface::VERBOSITY_NORMAL); |
||
| 216 | } |
||
| 217 | } |
||
| 218 | $results[$instanceName] = $output; |
||
| 219 | $succeeded++; |
||
| 220 | } else { |
||
| 221 | $err = trim($process->getErrorOutput()); |
||
| 222 | // some command-line database tools mix up stdout and stderr - we go out of our way to accommodate them... |
||
| 223 | if ($err === '') { |
||
| 224 | $err = trim($process->getOutput()); |
||
| 225 | } |
||
| 226 | $results[$instanceName] = [ |
||
| 227 | 'exitcode' => $process->getExitCode(), |
||
| 228 | 'stderr' => $err, |
||
| 229 | ]; |
||
| 230 | |||
| 231 | $failed++; |
||
| 232 | $this->writeErrorln("\n<error>$actionName in instance '$instanceName' failed! Reason: " . $err . "</error>\n", OutputInterface::VERBOSITY_NORMAL); |
||
| 233 | } |
||
| 234 | } |
||
| 235 | } |
||
| 236 | |||
| 237 | } finally { |
||
| 238 | // make sure that we clean up temp files, as they might contain sensitive data |
||
| 239 | foreach($tempSQLFileNames as $tempSQLFileName) { |
||
| 240 | unlink($tempSQLFileName); |
||
| 241 | } |
||
| 242 | } |
||
| 243 | |||
| 244 | uksort($results, function ($a, $b) { |
||
| 245 | $aParts = explode('_', $a, 2); |
||
| 246 | $bParts = explode('_', $b, 2); |
||
| 247 | $cmp = strcasecmp($aParts[0], $bParts[0]); |
||
| 248 | if ($cmp !== 0) { |
||
| 249 | return $cmp; |
||
| 250 | } |
||
| 251 | if (count($aParts) == 1) { |
||
| 252 | return -1; |
||
| 253 | } |
||
| 254 | if (count($bParts) == 1) { |
||
| 255 | return 1; |
||
| 256 | } |
||
| 257 | $aVersion = str_replace('_', '.', $aParts[1]); |
||
| 258 | $bVersion = str_replace('_', '.', $bParts[1]); |
||
| 259 | return version_compare($aVersion, $bVersion); |
||
| 260 | }); |
||
| 261 | |||
| 262 | return [ |
||
| 263 | 'succeeded' => $succeeded, |
||
| 264 | 'failed' => $failed, |
||
| 265 | 'data' => $results |
||
| 266 | ]; |
||
| 267 | } |
||
| 268 | |||
| 269 | /** |
||
| 270 | * @param array $results |
||
| 271 | * @return string |
||
| 272 | * @throws \OutOfBoundsException for unsupported output formats |
||
| 273 | */ |
||
| 274 | protected function formatResults(array $results) |
||
| 275 | { |
||
| 276 | switch ($this->outputFormat) { |
||
| 277 | case 'json': |
||
| 278 | return json_encode($results['data'], JSON_PRETTY_PRINT); |
||
| 279 | case 'php': |
||
| 280 | return var_export($results['data'], true); |
||
| 281 | case 'text': |
||
| 282 | case 'yml': |
||
| 283 | case 'yaml': |
||
| 284 | return Yaml::dump($results['data'], 2, 4, Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK); |
||
| 285 | default: |
||
| 286 | throw new \OutOfBoundsException("Unsupported output format: '{$this->outputFormat}'"); |
||
| 287 | break; |
||
| 288 | } |
||
| 289 | } |
||
| 290 | |||
| 291 | /** |
||
| 292 | * @param array $results should contain elements: succeeded(int) failed(int), data(mixed) |
||
| 293 | * @param float $time execution time in seconds |
||
| 294 | * @throws \Exception for unsupported formats |
||
| 295 | * @todo since we use could be using forked processes, we can not measure total memory used... is it worth measuring just ours? |
||
| 296 | */ |
||
| 297 | protected function writeResults(array $results, $time = null) |
||
| 313 | } |
||
| 314 | } |
||
| 315 | } |
||
| 316 | |||
| 317 | protected function writeResultsToFile(array $results) |
||
| 321 | } |
||
| 322 | } |
||
| 323 |