-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathextract.pl
424 lines (299 loc) · 13.7 KB
/
extract.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#!/usr/bin/perl -w
##############################################################################
##
## Disclaimer:
## This program is provided with no warranty of any kind, either expressed or
## implied. It is the responsibility of the user (you) to fully research and
## comprehend the usage of this program. As with any tool, it can be misused,
## either intentionally (you're a vandal) or unintentionally (you're a moron).
## THE AUTHOR(S) IS(ARE) NOT RESPONSIBLE FOR ANYTHING YOU DO WITH THIS PROGRAM
## or anything that happens because of your use (or misuse) of this program,
## including but not limited to anything you, your lawyers, or anyone else
## can dream up. And now, a relevant quote directly from the GPL:
##
## NO WARRANTY
##
## 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
## FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
## OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
## PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
## OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
## TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
## PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
## REPAIR OR CORRECTION.
##
##############################################################################
# Written by: Marius Voila <[email protected]>
#
# Purpose: This program will extract the necessary portions from a full
# database mysqldump file required to restore a single table.
#
# Creation Date: 2007-05-23
#
# Changelog:
# 2012-04-28 v1.0.1 Marius Voila
# - bug fixes
# - small updates
# 2007-05-23 v1.0 Marius Voila
# - initial release
#
#############################################################################
## FIXME's:
use strict;
## Global Variable(s)
my %conf = (
"programName" => $0, ## The name of this program
"version" => '1.0.1', ## The version of this program
"authorName" => 'Marius Voila', ## Author's Name
"authorEmail" => '[email protected]', ## Author's Email Address
"debug" => 0, ## Default debug level
"mode" => '',
## PROGRAM VARIABLES
"logFile" => '', ## default log file, if none specified on command line
"prepend" => '', ## Something that gets added to every msg that the script outputs
"alertCommand" => '', ## cmd to run if printmsg() contains the string 'ERR' or 'CRIT' or 'WARN'
"noExtras" => 0, ## if 1, then we'll skip extra cmds for disabling foreign key checks, etc. at top of file
"listTables" => 0, ## if 1, then return a list of tables contained in the restore file
);
$conf{'programName'} =~ s/(.)*[\/,\\]//; ## Remove path from filename
$0 = "[$conf{'programName'}]";
#############################
##
## MAIN PROGRAM
##
#############################
## Initialize
initialize();
## Process Command Line
processCommandLine();
## get current timestamp for use later
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
$mon +=1;
if ($mon < 10) {$mon = "0" . $mon}
if ($mday < 10) {$mday = "0" . $mday}
$year +=1900;
printmsg ("current date is $mon/$mday/$year",3);
if ($conf{'mode'} eq "running") {
printmsg ("INFO => PROGRAM STARTED",1);
#############################
######## MAIN CODE ####
#############################
if ($conf{'restoreFile'}) {
## open the mysqldump file
open(STDIN, "<$conf{'restoreFile'}") || quit("ERROR => Couldn't open file $conf{'restoreFile'}: $!", 3);
}
my $flag = 0;
## go through the file one line at a time
while (my $line = <STDIN>) {
if ($conf{'listTables'}) {
if ($line =~ /^-- Table structure for table `(.*)`/) {
print $1 . "\n";
}
}
else {
## if we're not ignoring extra lines, and we haven't set the flag, and if it's not a 40000 code, then print
if (!$conf{'noExtras'} && !$flag) {
if ($line =~ /^\/\*!(.....).*\*\//) { print $line unless ($1 == 40000); }
}
## set a flag when we encounter the table we want
if ($line =~ /^-- Table structure for table `$conf{'tableName'}`/) {
$flag = 1;
printmsg("Turning flag on", 1);
}
## turn flag off as soon as we encounter next table definition
elsif ($line =~ /^-- Table structure for table/) {
$flag = 0;
printmsg("Turning flag off", 1);
}
## if flag is set, then print to STDOUT, otherwise just move on
if ($flag) {
print $line;
}
}
}
#############################
######## END MAIN CODE ####
#############################
}
## Quit
quit("",0);
######################################################################
## Function: help ()
##
## Description: For all those newbies ;)
## Prints a help message and exits the program.
##
######################################################################
sub help {
print <<EOM;
$conf{'programName'}-$conf{'version'} by $conf{'authorName'} <$conf{'authorEmail'}>
This program will parse a full mysqldump file and
extract the necessary portions required to restore
a single table. The output is printed to STDOUT, so you'll
want to redirect to a file from the command line, like so:
$conf{'programName'} > somefile.sql
Brought to you by the fine tech folk at www.mariusv.com - Once a Geek, forever a Geek!
Usage: $conf{'programName'} -t <table name> -r <restore file> [options]
Required:
-t <table name> table name to extract from the file
Optional:
-r <restore file> mysqldump file that you want to parse. If not specified,
then it reads from STDIN
--listTables If set, then a list of tables existing in your restore file is returned,
and no other actions are taken
--noExtras If set, then extra cmds at top of mysqldump file
will not be included (such as disabling foreign key checks).
Usually you will want these things changed before restoring a
table, so the default is for these to be included.
-v verbosity - use multiple times for greater effect
-h Display this help message
EOM
exit(1);
}
######################################################################
## Function: initialize ()
##
## Does all the script startup jibberish.
##
######################################################################
sub initialize {
## Set STDOUT to flush immediatly after each print
$| = 1;
## Intercept signals
$SIG{'QUIT'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
$SIG{'INT'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
$SIG{'KILL'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
$SIG{'TERM'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
## ALARM and HUP signals are not supported in Win32
unless ($^O =~ /win/i) {
$SIG{'HUP'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
$SIG{'ALRM'} = sub { quit("$$ - $conf{'programName'} - EXITING: Received SIG$_[0]", 1); };
}
return(1);
}
######################################################################
## Function: processCommandLine ()
##
## Processes command line storing important data in global var %conf
##
######################################################################
sub processCommandLine {
############################
## Process command line ##
############################
my $x;
my @ARGS = @ARGV;
my $numargv = scalar(@ARGS);
help() unless ($numargv);
for (my $i = 0; $i < $numargv; $i++) {
$x = $ARGS[$i];
if ($x =~ /^-h$|^--help$/) { help(); }
elsif ($x =~ /^-v+/i) { my $tmp = (length($&) - 1); $conf{'debug'} += $tmp; }
elsif ($x =~ /^-l$/) { $i++; $conf{'logFile'} = $ARGS[$i];}
elsif ($x =~ /^-p$/) { $i++; $conf{'policyName'} = $ARGS[$i];}
elsif ($x =~ /^-t$/) { $i++; $conf{'tableName'} = $ARGS[$i];}
elsif ($x =~ /^-r$/) { $i++; $conf{'restoreFile'}= $ARGS[$i];}
elsif ($x =~ /^--noExtras$/i) { $conf{'noExtras'} = 1; }
elsif ($x =~ /^--listTables$/i) { $conf{'listTables'} = 1; }
else {
printmsg("Error: \"$x\" is not a recognised option!", 0);
help();
}
}
my @required = (
'tableName',
);
if ($conf{'listTables'}) {
$conf{'mode'} = 'running';
return(1);
}
foreach (@required) {
if (!$conf{$_}) {
quit("ERROR: Value [$_] was not set after parsing command line arguments!", 1);
}
}
$conf{'mode'} = 'running';
return(1);
}
###############################################################################################
## Function: printmsg (string $message, int $level)
##
## Description: Handles all messages - logging them to a log file,
## printing them to the screen or both depending on
## the $level passed in, $conf{'debug'} and wether
## $conf{'mode'}.
##
## Input: $message A message to be printed, logged, etc.
## $level The debug level of the message. If
## not defined 0 will be assumed. 0 is
## considered a normal message, 1 and
## higher is considered a debug message.
## $leaveCarriageReturn Whether or not to strip carriage returns (always will strip, unless other than 0)
##
## Output: Prints to STDOUT, to LOGFILE, both, or none depending
## on the state of the program.
##
## Example: printmsg ("WARNING: We believe in generic error messages... NOT!", 1);
###############################################################################################
sub printmsg {
my %incoming = ();
(
$incoming{'message'},
$incoming{'level'},
$incoming{'leaveCarriageReturn'},
) = @_;
$incoming{'level'} = 0 if (!defined($incoming{'level'}));
$incoming{'leaveCarriageReturn'} = 0 if (!defined($incoming{'leaveCarriageReturn'}));
$incoming{'message'} =~ s/\r|\n/ /sg unless ($incoming{'leaveCarriageReturn'} >= 1);
## Add program name and PID
## $incoming{'message'} = "- $conf{'programName'} [$$]: " . $incoming{'message'};
## add prepend info
## $incoming{'message'} = "$conf{'prepend'} : $incoming{'message'}";
## Continue on if the debug level is >= the incoming message level
if ($conf{'debug'} >= $incoming{'level'}) {
## Print to the log file
if ($conf{'logFile'}) {
open (LOGFILE, ">>$conf{'logFile'}");
print LOGFILE "$conf{'programName'}:[". localtime() . "] $incoming{'message'}\n";
close (LOGFILE);
}
if ($conf{'alertCommand'} && ($conf{'debug'} == 0) && ($incoming{'message'} =~ /ERR|CRIT|WARN/) ) {
my $tmpAlert = $conf{'alertCommand'};
$tmpAlert =~ s/MESSAGE/$incoming{'message'}/g;
system ($tmpAlert);
}
## Print to STDOUT
if ($conf{'debug'} >= 1) {
print STDOUT "$conf{'programName'}:[" . localtime() . "]($incoming{'level'}): $incoming{'message'}\n";
}
else {
print STDOUT "$conf{'programName'}:[" . localtime() . "] $incoming{'message'}\n";
}
}
## Return
return(0);
}
######################################################################
## Function: quit (string $message, int $errorLevel)
##
## Description: Exits the program, optionally printing $message. It
## returns an exit error level of $errorLevel to the
## system (0 means no errors, and is assumed if empty.)
##
## Example: quit("Exiting program normally", 0);
######################################################################
sub quit {
my %incoming = ();
(
$incoming{'message'},
$incoming{'errorLevel'}
) = @_;
$incoming{'errorLevel'} = 0 if (!defined($incoming{'errorLevel'}));
## Print exit message
if ($incoming{'message'}) {
printmsg($incoming{'message'}, 0);
}
## Exit
exit($incoming{'errorLevel'});
}