5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
22 * @ingroup Maintenance
26 require_once __DIR__
. '/commandLine.inc';
28 function cdbShowHelp( $command ) {
30 'load' => 'load a cdb file for reading',
31 'get' => 'get a value for a key',
34 'help' => 'help about a command',
37 $command = 'fullhelp';
39 if ( $command === 'fullhelp' ) {
40 $max_cmd_len = max( array_map( 'strlen', array_keys( $commandList ) ) );
41 foreach ( $commandList as $cmd => $desc ) {
42 printf( "%-{$max_cmd_len}s: %s\n", $cmd, $desc );
44 } elseif ( isset( $commandList[$command] ) ) {
45 print "$command: $commandList[$command]\n";
47 print "$command: command does not exist or no help for it\n";
55 static $fileHandle = false;
57 $line = Maintenance
::readconsole();
58 if ( $line === false ) {
62 $args = explode( ' ', $line );
63 $command = array_shift( $args );
68 // show an help message
69 cdbShowHelp( array_shift( $args ) );
72 if ( !isset( $args[0] ) ) {
73 print "Need a filename there buddy\n";
77 print "Loading cdb file $file...";
79 $fileHandle = CdbReader
::open( $file );
80 } catch ( CdbException
$e ) {
84 print "not a cdb file or unable to read it\n";
91 print "Need to load a cdb file first\n";
94 if ( !isset( $args[0] ) ) {
95 print "Need to specify a key, Luke\n";
99 $res = $fileHandle->get( $args[0] );
100 } catch ( CdbException
$e ) {
101 print "Unable to read key from file\n";
104 if ( $res === false ) {
105 print "No such key/value pair\n";
106 } elseif ( is_string( $res ) ) {
123 print "Bad command\n";
126 if ( function_exists( 'readline_add_history' ) ) {
127 readline_add_history( $line );