Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
MathGenerateSql
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 execute
0.00% covered (danger)
0.00%
0 / 13
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @ingroup Maintenance
19 */
20
21require_once __DIR__ . '/../../../maintenance/Maintenance.php';
22
23class MathGenerateSql extends Maintenance {
24    private const AVAILABLE_DIALECTS = [ 'mysql', 'postgres', 'sqlite' ];
25
26    public function execute() {
27        $sqlPath = dirname( __DIR__ ) . "/sql";
28        $tables = $sqlPath . "/*.json";
29        $this->output( "Looking for Doctrine DBAL definitions at '$tables'.\n" );
30        foreach ( glob( $tables ) as $file ) {
31            $table = basename( $file, ".json" );
32            $this->output( "Processing '$table'.\n" );
33            foreach ( self::AVAILABLE_DIALECTS as $dialect ) {
34                $target = "$sqlPath/$dialect/$table.sql";
35                $this->output( "Writing '$target'.\n" );
36                $this->loadWithArgv( [ "--json=$file", "--type=$dialect", "--sql=$target" ] );
37                $child = $this->runChild( 'GenerateSchemaSql' );
38                $child->execute();
39            }
40        }
41        $this->output( "done.\n" );
42    }
43}
44
45$maintClass = MathGenerateSql::class;
46require_once RUN_MAINTENANCE_IF_MAIN;