|
1
|
|
|
<?php |
|
2
|
|
|
|
|
|
|
|
|
|
3
|
|
|
namespace Db3v4l\Command; |
|
4
|
|
|
|
|
5
|
|
|
use Db3v4l\Core\DatabaseSchemaManager; |
|
|
|
|
|
|
6
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
|
|
|
|
|
|
7
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
|
|
|
|
|
8
|
|
|
|
|
9
|
|
|
class CollationList extends DatabaseManagingCommand |
|
|
|
|
|
|
10
|
|
|
{ |
|
11
|
|
|
protected static $defaultName = 'db3v4l:collation:list'; |
|
12
|
|
|
|
|
13
|
|
|
protected function configure() |
|
|
|
|
|
|
14
|
|
|
{ |
|
15
|
|
|
$this |
|
16
|
|
|
->setDescription('Lists available collations for all database instances') |
|
17
|
|
|
->addCommonOptions() |
|
|
|
|
|
|
18
|
|
|
; |
|
19
|
|
|
} |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
|
|
|
|
|
22
|
|
|
* @param InputInterface $input |
|
|
|
|
|
|
23
|
|
|
* @param OutputInterface $output |
|
|
|
|
|
|
24
|
|
|
* @return int |
|
|
|
|
|
|
25
|
|
|
* @throws \Exception |
|
|
|
|
|
|
26
|
|
|
*/ |
|
27
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
|
28
|
|
|
{ |
|
29
|
|
|
$start = microtime(true); |
|
30
|
|
|
|
|
31
|
|
|
// as per https://www.php.net/manual/en/function.ignore-user-abort.php: for cli scripts, it is probably a good idea |
|
32
|
|
|
// to use ignore_user_abort |
|
33
|
|
|
ignore_user_abort(true); |
|
34
|
|
|
|
|
35
|
|
|
$this->setOutput($output); |
|
36
|
|
|
$this->setVerbosity($output->getVerbosity()); |
|
37
|
|
|
|
|
38
|
|
|
$instanceList = $this->parseCommonOptions($input); |
|
39
|
|
|
|
|
40
|
|
|
if ($this->outputFormat === 'text') { |
|
41
|
|
|
$this->writeln('<info>Analyzing databases...</info>', OutputInterface::VERBOSITY_VERBOSE); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
$results = $this->listCollations($instanceList); |
|
45
|
|
|
|
|
46
|
|
|
$time = microtime(true) - $start; |
|
47
|
|
|
|
|
48
|
|
|
$this->writeResults($results, $time); |
|
49
|
|
|
|
|
50
|
|
|
return (int)$results['failed']; |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
/** |
|
|
|
|
|
|
54
|
|
|
* @param string[][] $instanceList |
|
|
|
|
|
|
55
|
|
|
* @return array |
|
|
|
|
|
|
56
|
|
|
* @throws \Exception |
|
|
|
|
|
|
57
|
|
|
*/ |
|
58
|
|
|
protected function listCollations($instanceList) |
|
59
|
|
|
{ |
|
60
|
|
|
return $this->executeSqlAction( |
|
61
|
|
|
$instanceList, |
|
62
|
|
|
'Listing of collations', |
|
63
|
|
|
function ($schemaManager, $instanceName) { |
|
|
|
|
|
|
64
|
|
|
/** @var DatabaseSchemaManager $schemaManager */ |
|
|
|
|
|
|
65
|
|
|
return $schemaManager->getListCollationsSqlAction(); |
|
66
|
|
|
} |
|
67
|
|
|
); |
|
68
|
|
|
} |
|
69
|
|
|
} |
|
70
|
|
|
|