18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
#include <drizzled/configmake.h>
27
#include <boost/program_options.hpp>
28
#include <boost/scoped_ptr.hpp>
29
namespace po= boost::program_options;
21
#include "drizzled/global.h"
31
24
#include <string.h>
32
25
#include <assert.h>
34
27
#include <stdarg.h>
37
#include "drizzled/charset_info.h"
38
#include "drizzled/internal/m_string.h"
28
#include <mystrings/m_ctype.h>
29
#include <mystrings/m_string.h>
30
#include <mysys/my_getopt.h>
40
32
#define SHOW_VERSION "0.1"
42
using namespace drizzled;
35
get_one_option(int optid, const struct my_option *opt, char *argument);
37
static void get_options(int *argc,char * * *argv);
38
static void print_version(void);
39
static void usage(void);
40
static const char *opt_tmpdir;
41
static const char *new_auto_increment;
45
42
uint64_t new_auto_increment_value;
49
opt_extract_table_message,
43
static const char *load_default_groups[]= { "archive_reader", 0 };
44
static char **default_argv;
45
int opt_check, opt_force, opt_quiet, opt_backup= 0, opt_extract_frm;
46
int opt_autoincrement;
55
48
int main(int argc, char *argv[])
59
po::options_description commandline_options("Options used only in command line");
60
commandline_options.add_options()
61
("force,f",po::value<bool>(&opt_force)->default_value(false)->zero_tokens(),
62
"Restart with -r if there are any errors in the table")
63
("help,?","Display this help and exit")
64
("version,V","Print version and exit")
65
("no-defaults", po::value<bool>()->default_value(false)->zero_tokens(),
66
"Configuration file defaults are not used if no-defaults is set")
69
po::options_description archive_reader_options("Options specific to the archive reader");
70
archive_reader_options.add_options()
71
("tmpdir,t",po::value<string>(&opt_tmpdir)->default_value(""),
72
"Path for temporary files.")
73
("set-auto-increment,A",po::value<uint64_t>(&new_auto_increment_value)->default_value(0),
74
"Force auto_increment to start at this or higher value. If no value is given, then sets the next auto_increment value to the highest used value for the auto key + 1.")
75
("silent,s",po::value<bool>(&opt_silent)->default_value(false)->zero_tokens(),
76
"Only print errors. One can use two -s to make archive_reader very silent.")
77
("quick,q",po::value<bool>(&opt_quick)->default_value(false)->zero_tokens(),
78
"Faster repair but not modifying the data")
79
("repair,r",po::value<bool>(&opt_quick)->default_value(false)->zero_tokens(),
80
"Repair a damaged Archive version 3 or above file.")
81
("back-up,b",po::value<bool>(&opt_backup)->default_value(false)->zero_tokens(),
82
"Make a backup of an archive table.")
83
("check,c",po::value<bool>(&opt_check)->default_value(false)->zero_tokens(),
84
"Check table for errors")
85
("extract-table-message,e",po::value<bool>(&opt_extract_table_message)->default_value(false)->zero_tokens(),
86
"Extract the table protobuf message.")
90
boost::scoped_ptr<azio_stream> reader_handle_ap(new azio_stream);
91
azio_stream &reader_handle= *reader_handle_ap.get();
93
std::string system_config_dir_archive_reader(SYSCONFDIR);
94
system_config_dir_archive_reader.append("/drizzle/archive_reader.cnf");
96
std::string user_config_dir((getenv("XDG_CONFIG_HOME")? getenv("XDG_CONFIG_HOME"):"~/.config"));
98
if (user_config_dir.compare(0, 2, "~/") == 0)
101
homedir= getenv("HOME");
103
user_config_dir.replace(0, 1, homedir);
106
po::options_description long_options("Allowed Options");
107
long_options.add(commandline_options).add(archive_reader_options);
109
po::variables_map vm;
110
po::store(po::parse_command_line(argc,argv,long_options),vm);
112
if (! vm["no-defaults"].as<bool>())
114
std::string user_config_dir_archive_reader(user_config_dir);
115
user_config_dir_archive_reader.append("/drizzle/archive_reader.cnf");
117
ifstream user_archive_reader_ifs(user_config_dir_archive_reader.c_str());
118
po::store(parse_config_file(user_archive_reader_ifs, archive_reader_options), vm);
120
ifstream system_archive_reader_ifs(system_config_dir_archive_reader.c_str());
121
store(parse_config_file(system_archive_reader_ifs, archive_reader_options), vm);
126
if (vm.count("force") || vm.count("quiet") || vm.count("tmpdir"))
127
cout << "Not implemented yet";
129
if (vm.count("version"))
131
printf("%s Ver %s, for %s-%s (%s)\n", internal::my_progname, SHOW_VERSION,
132
HOST_VENDOR, HOST_OS, HOST_CPU);
136
if (vm.count("set-auto-increment"))
138
opt_autoincrement= true;
141
if (vm.count("help") || argc == 0)
143
printf("%s Ver %s, for %s-%s (%s)\n", internal::my_progname, SHOW_VERSION,
144
HOST_VENDOR, HOST_OS, HOST_CPU);
145
puts("This software comes with ABSOLUTELY NO WARRANTY. This is free "
147
"and you are welcome to modify and redistribute it under the GPL "
149
puts("Read and modify Archive files directly\n");
150
printf("Usage: %s [OPTIONS] file_to_be_looked_at [file_for_backup]\n", internal::my_progname);
151
cout << long_options << endl;
51
azio_stream reader_handle;
55
get_options(&argc, &argv);
157
59
printf("No file specified. \n");
161
63
if (!(ret= azopen(&reader_handle, argv[0], O_RDONLY, AZ_METHOD_BLOCK)))
163
65
printf("Could not open Archive file\n");
167
69
if (opt_autoincrement)
169
boost::scoped_ptr<azio_stream> writer_handle_ap(new azio_stream);
170
azio_stream &writer_handle= *writer_handle_ap.get();
71
azio_stream writer_handle;
172
73
if (new_auto_increment_value)
353
252
azclose(&reader_handle);
258
bool get_one_option(int optid, const struct my_option *opt, char *argument)
273
printf("Not implemented yet\n");
277
printf("Not implemented yet\n");
283
printf("Not implemented yet\n");
286
opt_autoincrement= 1;
288
new_auto_increment_value= strtoull(argument, NULL, 0);
290
new_auto_increment_value= 0;
299
static struct my_option my_long_options[] =
302
"Make a backup of an archive table.",
303
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
304
{"check", 'c', "Check table for errors.",
305
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
307
"Extract the frm file.",
308
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
310
"Restart with -r if there are any errors in the table.",
311
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
313
"Display this help and exit.",
314
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
315
{"quick", 'q', "Faster repair by not modifying the data file.",
316
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
317
{"repair", 'r', "Repair a damaged Archive version 3 or above file.",
318
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
319
{"set-auto-increment", 'A',
320
"Force auto_increment to start at this or higher value. If no value is given, then sets the next auto_increment value to the highest used value for the auto key + 1.",
321
(char**) &new_auto_increment,
322
(char**) &new_auto_increment,
323
0, GET_ULL, OPT_ARG, 0, 0, 0, 0, 0, 0},
325
"Only print errors. One can use two -s to make archive_reader very silent.",
326
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
328
"Path for temporary files.",
329
(char**) &opt_tmpdir,
330
0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
332
"Print version and exit.",
333
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
334
{ 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
337
static void usage(void)
340
puts("Copyright (C) 2007 MySQL AB");
341
puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\
342
\nand you are welcome to modify and redistribute it under the GPL \
344
puts("Read and modify Archive files directly\n");
345
printf("Usage: %s [OPTIONS] file_to_be_looked_at [file_for_backup]\n", my_progname);
346
print_defaults("drizzle", load_default_groups);
347
my_print_help(my_long_options);
350
static void print_version(void)
352
printf("%s Ver %s, for %s-%s (%s)\n", my_progname, SHOW_VERSION,
353
HOST_VENDOR, HOST_OS, HOST_CPU);
356
static void get_options(int *argc, char ***argv)
358
load_defaults("drizzle", load_default_groups, argc, argv);
361
handle_options(argc, argv, my_long_options, get_one_option);
360
cerr<<"Error"<<e.what()<<endl;