]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/dumpschema.php
Pretty up the table dumper :D
[quix0rs-gnu-social.git] / scripts / dumpschema.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * StatusNet - a distributed open-source microblogging tool
5  * Copyright (C) 2008, 2009, StatusNet, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
22
23 $helptext = <<<END_OF_CHECKSCHEMA_HELP
24 Attempt to pull a schema definition for a given table.
25
26 END_OF_CHECKSCHEMA_HELP;
27
28 require_once INSTALLDIR.'/scripts/commandline.inc';
29
30 function indentOptions($indent)
31 {
32     $cutoff = 3;
33     if ($indent < $cutoff) {
34         $space = str_repeat(' ', $indent * 4);
35         $sep = ",";
36         $lf = "\n";
37         $endspace = "$lf" . str_repeat(' ', ($indent - 1) * 4);
38     } else {
39         $space = '';
40         $sep = ", ";
41         $lf = '';
42         $endspace = '';
43     }
44     if ($indent - 1 < $cutoff) {
45     }
46     return array($space, $sep, $lf, $endspace);
47 }
48
49 function prettyDumpArray($arr, $key=null, $indent=0)
50 {
51     list($space, $sep, $lf, $endspace) = indentOptions($indent);
52     list($inspace, $insep, $inlf, $inendspace) = indentOptions($indent + 1);
53
54     print "{$space}";
55     if (!is_numeric($key)) {
56         print "'$key' => ";
57     }
58     if (is_array($arr)) {
59         print "array({$inlf}";
60         $n = 0;
61         foreach ($arr as $key => $row) {
62             $n++;
63             prettyDumpArray($row, $key, $indent + 1);
64             if ($n < count($arr)) {
65                 print "$insep$inlf";
66             }
67         }
68         // hack!
69         print "{$inendspace})";
70     } else {
71         print var_export($arr, true);
72     }
73 }
74
75 function dumpTable($tableName)
76 {
77     $schema = Schema::get();
78     $def = $schema->getTableDef($tableName);
79     prettyDumpArray($def, $tableName);
80     echo "\n";
81 }
82
83 if (count($args)) {
84     foreach ($args as $tableName) {
85         dumpTable($tableName);
86     }
87 } else {
88     show_help($helptext);
89 }