-
Notifications
You must be signed in to change notification settings - Fork 0
/
dcdb-export.perl
executable file
·244 lines (162 loc) · 5.31 KB
/
dcdb-export.perl
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
#!/usr/bin/perl -w
use lib qw(. lib dclib);
use DiaColloDB;
use Getopt::Long qw(:config no_ignore_case);
use Pod::Usage;
use File::Basename qw(basename);
use strict;
##----------------------------------------------------------------------
## Globals
##----------------------------------------------------------------------
##-- program vars
our $prog = basename($0);
our ($help,$version);
our $dbdir = undef;
our $outdir = undef;
our %coldb = (flags=>'r');
our %export = (export_sdat=>1, export_cof=>1, export_tdf=>1);
our $dotime = 1; ##-- report timing?
##----------------------------------------------------------------------
## Command-line processing
##----------------------------------------------------------------------
GetOptions(##-- general
'help|h' => \$help,
'version|V' => \$version,
#'verbose|v=i' => \$verbose,
##-- I/O
'timing|times|time|t!' => \$dotime,
'export-sdat|sdat|strings|s!' => \$export{export_sdat},
'export-raw|raw!' => sub { $export{export_sdat}=!$_[1]; },
'export-cof|cof|c!' => \$export{export_cof},
'export-tdf|tdf!' => \$export{export_tdf},
'output-directory|outdir|odir|od|o=s' => \$outdir
);
pod2usage({-exitval=>0,-verbose=>0}) if ($help);
pod2usage({-exitval=>1,-verbose=>0,-msg=>"$prog: ERROR: no DBDIR specified!"}) if (!@ARGV);
if ($version) {
print STDERR "$prog version $DiaColloDB::VERSION by Bryan Jurish\n";
exit 0 if ($version);
}
##----------------------------------------------------------------------
## MAIN
##----------------------------------------------------------------------
##-- setup logger
DiaColloDB::Logger->ensureLog();
##-- open colloc-db
$dbdir = shift(@ARGV);
$dbdir =~ s{/$}{};
my $coldb = DiaColloDB->new(%coldb)
or die("$prog: failed to create new DiaColloDB object: $!");
$coldb->open($dbdir)
or die("$prog: DiaColloDB::open() failed for '$dbdir': $!");
##-- export
my $timer = DiaColloDB::Timer->start;
$outdir //= "$dbdir.export";
$coldb->dbexport($outdir,%export)
or die("$prog: DiaColloDB::export() failed to '$outdir': $!");
##-- cleanup
$coldb->close();
##-- timing
$coldb->info("operation completed in ", $timer->timestr) if ($dotime);
__END__
###############################################################
## pods
###############################################################
=pod
=head1 NAME
dcdb-export.perl - export a text representation of a DiaColloDB diachronic collocation database
=head1 SYNOPSIS
dcdb-export.perl [OPTIONS] DBDIR
General Options:
-help
-version
-[no]time ##-- do/don't report timing information (default=do)
Export Options:
-[no]raw ##-- inverse of -[no]sdat
-[no]sdat ##-- do/don't export stringified tuples (*.sdat; default=do)
-[no]cof ##-- do/don't export co-frequency files (cof.*; default=do)
-[no]tdf ##-- do/don't export term-document files (tdf.*; default=do)
-output DIR ##-- dump directory (default=DBDIR.export)
=cut
###############################################################
## DESCRIPTION
###############################################################
=pod
=head1 DESCRIPTION
dcdb-export.perl
exports the L<DiaColloDB|DiaColloDB> database directory specified
in the L<DBDIR|/DBDIR> argument as text to the
output directory specified by the
L<-output|/-output DIR> option.
Mainly useful for debugging.
=cut
###############################################################
## OPTIONS AND ARGUMENTS
###############################################################
=pod
=head1 OPTIONS AND ARGUMENTS
=cut
###############################################################
# Arguments
###############################################################
=pod
=head2 Arguments
=over 4
=item DBDIR
L<DiaColloDB|DiaColloDB> database directory to be exported.
=back
=cut
###############################################################
# General Options
###############################################################
=pod
=head2 General Options
=over 4
=item -help
Display a brief help message and exit.
=item -version
Display version information and exit.
=back
=cut
###############################################################
# Export Options
###############################################################
=pod
=head2 Export Options
=over 4
=item -raw
=item -noraw
Don't/do export stringified tuples (inverse of -[no]sdat; default=do):
=item -sdat
=item -sdat
Do/don't export stringified tuples (*.sdat; default=do).
=item -[no]cof
Do/don't export co-frequency files (cof.*; default=do).
=item -[no]tdf
Do/don't export term-document files (tdf.*; default=do).
=item -output DIR
Export to directory I<DIR> (default=L<DBDIR|/DBDIR>.export)
=back
=cut
###############################################################
# Bugs and Limitations
###############################################################
=pod
=head1 BUGS AND LIMITATIONS
Probably many.
=cut
###############################################################
# Footer
###############################################################
=pod
=head1 ACKNOWLEDGEMENTS
Perl by Larry Wall.
=head1 AUTHOR
Bryan Jurish E<lt>moocow@cpan.orgE<gt>
=head1 SEE ALSO
L<DiaColloDB(3pm)|DiaColloDB>,
L<dcdb-create.perl(1)|dcdb-create.perl>,
L<dcdb-info.perl(1)|dcdb-info.perl>,
L<dcdb-query.perl(1)|dcdb-query.perl>,
perl(1).
=cut