blob: 72ba265cd2c7b813a78e04660519fcf9fb99d616 [file] [log] [blame]
Nils Diewald2db9ad02013-10-29 19:26:43 +00001#!/usr/bin/env perl
2use strict;
3use warnings;
Akron941c1a62016-02-23 17:41:41 +01004use FindBin;
5BEGIN { unshift @INC, "$FindBin::Bin/../lib" };
6use File::Spec::Functions qw/catfile catdir/;
7use Getopt::Long qw/GetOptions :config no_auto_abbrev/;
Nils Diewald7364d1f2013-11-05 19:26:35 +00008use Benchmark qw/:hireswallclock/;
9use IO::Compress::Gzip qw/$GzipError/;
Nils Diewald2db9ad02013-10-29 19:26:43 +000010use Log::Log4perl;
Akron941c1a62016-02-23 17:41:41 +010011use Pod::Usage;
Akron11c80302016-03-18 19:44:43 +010012use Cache::FastMmap;
Akron941c1a62016-02-23 17:41:41 +010013use Directory::Iterator;
Akron93d620e2016-02-05 19:40:05 +010014use KorAP::XML::Krill;
Akron941c1a62016-02-23 17:41:41 +010015use KorAP::XML::Archive;
Akron93d620e2016-02-05 19:40:05 +010016use KorAP::XML::Tokenizer;
Akrone1dbc382016-07-08 22:24:52 +020017use KorAP::XML::Batch::File;
Akron941c1a62016-02-23 17:41:41 +010018use Parallel::ForkManager;
Akron75ba57d2016-03-07 23:36:27 +010019# TODO: use Parallel::Loops
Akron08385f62016-03-22 20:37:04 +010020# TODO: make output files
Akron93d620e2016-02-05 19:40:05 +010021
Akron941c1a62016-02-23 17:41:41 +010022# CHANGES:
23# ----------------------------------------------------------
24# 2013/11/25
25# - Initial release
26#
27# 2014/10/29
28# - Merges foundry data to create indexer friendly documents
29#
Akron93d620e2016-02-05 19:40:05 +010030# 2016/02/04
31# - renamed to korapxml2krill
32# - added Schreibgebrauch support
Akron069bd712016-02-12 19:09:06 +010033#
34# 2016/02/12
35# - fixed foundry skipping
Akron941c1a62016-02-23 17:41:41 +010036# - Support overwrite in archive processing
Akron150b29e2016-02-14 23:06:48 +010037#
38# 2016/02/14
39# - Added version information
Akron941c1a62016-02-23 17:41:41 +010040# - Added support for archive files
41#
42# 2016/02/15
43# - Fixed temporary directory bug
44# - Improved skipping before unzipping
45# - Added EXPERIMENTAL concurrency support
46#
47# 2016/02/23
48# - Merge korapxml2krill and korapxml2krill_dir
Akrone10ad322016-02-27 10:54:26 +010049#
50# 2016/02/27
51# - Added extract function
Akron35db6e32016-03-17 22:42:22 +010052#
53# 2016/03/17
54# - Added meta switch
Akron11c80302016-03-18 19:44:43 +010055#
56# 2016/03/18
57# - Added meta data caching
Akron2cfe8092016-06-24 17:48:49 +020058#
Akronf3f0c942016-06-27 13:27:14 +020059# 2016/06/27
Akron2cfe8092016-06-24 17:48:49 +020060# - Added multi archive support
61# - Added prefix negation support
Akronf3f0c942016-06-27 13:27:14 +020062# - Added Malt#Dependency support
Akron8b990522016-07-06 16:45:57 +020063#
64# 2016/07/06
65# - Added MDParser#Dependency
Akron4c0cf312016-10-15 16:42:09 +020066#
67# 2016/10/15
Nils Diewald0e489772016-10-24 15:16:52 +020068# - Fixed temporary path issue in script
69#
70# 2016/10/24
71# - Improved Windows support
Akron4c0cf312016-10-15 16:42:09 +020072#
Akron941c1a62016-02-23 17:41:41 +010073# ----------------------------------------------------------
Akron069bd712016-02-12 19:09:06 +010074
Nils Diewald0e489772016-10-24 15:16:52 +020075our $LAST_CHANGE = '2016/10/24';
Akron941c1a62016-02-23 17:41:41 +010076our $LOCAL = $FindBin::Bin;
77our $VERSION_MSG = <<"VERSION";
78Version $KorAP::XML::Krill::VERSION - diewald\@ids-mannheim.de - $LAST_CHANGE
79VERSION
80
Akron941c1a62016-02-23 17:41:41 +010081# Parse comand
82my $cmd;
83our @ARGV;
84if ($ARGV[0] && index($ARGV[0], '-') != 0) {
85 $cmd = shift @ARGV;
Akron150b29e2016-02-14 23:06:48 +010086};
Akron93d620e2016-02-05 19:40:05 +010087
Akron5f51d422016-08-16 16:26:43 +020088my (@skip, @sigle, @anno, @input);
Akron35db6e32016-03-17 22:42:22 +010089my $text;
Akrone10ad322016-02-27 10:54:26 +010090
Akron941c1a62016-02-23 17:41:41 +010091# Parse options from the command line
Nils Diewald7364d1f2013-11-05 19:26:35 +000092GetOptions(
Akron08385f62016-03-22 20:37:04 +010093 'input|i=s' => \@input,
Akron941c1a62016-02-23 17:41:41 +010094 'output|o=s' => \(my $output),
95 'overwrite|w' => \(my $overwrite),
Akron35db6e32016-03-17 22:42:22 +010096 'meta|m=s' => \(my $meta),
Akronaf386982016-10-12 00:33:25 +020097 'token|t=s' => \(my $token_base = 'OpenNLP#tokens'),
Akron941c1a62016-02-23 17:41:41 +010098 'gzip|z' => \(my $gzip),
Akrone10ad322016-02-27 10:54:26 +010099 'skip|s=s' => \@skip,
100 'sigle|sg=s' => \@sigle,
Akron11c80302016-03-18 19:44:43 +0100101 'cache|c=s' => \(my $cache_file = 'korapxml2krill.cache'),
Akron941c1a62016-02-23 17:41:41 +0100102 'log|l=s' => \(my $log_level = 'ERROR'),
Akron5f51d422016-08-16 16:26:43 +0200103 'anno|a=s' => \@anno,
Akron941c1a62016-02-23 17:41:41 +0100104 'primary|p!' => \(my $primary),
105 'pretty|y' => \(my $pretty),
106 'jobs|j=i' => \(my $jobs = 0),
Akron7d4cdd82016-08-17 21:39:45 +0200107 'cache-size|cs=s' => \(my $cache_size = '50m'),
108 'cache-delete|cd!' => \(my $cache_delete = 1),
109 'cache-init|ci!' => \(my $cache_init = 1),
Akron941c1a62016-02-23 17:41:41 +0100110 'help|h' => sub {
111 pod2usage(
112 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
Akron7d4cdd82016-08-17 21:39:45 +0200113 -verbose => 99,
114 -msg => $VERSION_MSG,
115 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100116 );
117 },
118 'version|v' => sub {
119 pod2usage(
Akron7d4cdd82016-08-17 21:39:45 +0200120 -verbose => 0,
121 -msg => $VERSION_MSG,
122 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100123 )
124 }
Nils Diewald7364d1f2013-11-05 19:26:35 +0000125);
126
Akron941c1a62016-02-23 17:41:41 +0100127my %ERROR_HASH = (
128 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
Akron7d4cdd82016-08-17 21:39:45 +0200129 -verbose => 99,
130 -msg => $VERSION_MSG,
131 -output => '-',
132 -exit => 1
Akron941c1a62016-02-23 17:41:41 +0100133);
Nils Diewald7364d1f2013-11-05 19:26:35 +0000134
Akron941c1a62016-02-23 17:41:41 +0100135# Input has to be defined
Akron08385f62016-03-22 20:37:04 +0100136pod2usage(%ERROR_HASH) unless @input;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000137
Akrone1dbc382016-07-08 22:24:52 +0200138# Gzip has no effect, if no output is given
139pod2usage(%ERROR_HASH) if $gzip && !$output;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000140
Akron941c1a62016-02-23 17:41:41 +0100141# Initialize log4perl object
Nils Diewald7364d1f2013-11-05 19:26:35 +0000142Log::Log4perl->init({
143 'log4perl.rootLogger' => uc($log_level) . ', STDERR',
144 'log4perl.appender.STDERR' => 'Log::Log4perl::Appender::ScreenColoredLevels',
145 'log4perl.appender.STDERR.layout' => 'PatternLayout',
146 'log4perl.appender.STDERR.layout.ConversionPattern' => '[%r] %F %L %c - %m%n'
147});
148
149my $log = Log::Log4perl->get_logger('main');
150
Akrone1dbc382016-07-08 22:24:52 +0200151my %skip;
152$skip{lc($_)} = 1 foreach @skip;
153
154my @layers;
155push(@layers, ['Base', 'Sentences']);
156push(@layers, ['Base', 'Paragraphs']);
157
158# Connexor
159push(@layers, ['Connexor', 'Morpho']);
160push(@layers, ['Connexor', 'Syntax']);
161push(@layers, ['Connexor', 'Phrase']);
162push(@layers, ['Connexor', 'Sentences']);
163
164# CoreNLP
165push(@layers, ['CoreNLP', 'NamedEntities']);
166push(@layers, ['CoreNLP', 'Sentences']);
167push(@layers, ['CoreNLP', 'Morpho']);
168push(@layers, ['CoreNLP', 'Constituency']);
169
170# DeReKo
171push(@layers, ['DeReKo', 'Structure']);
172
173# Glemm
174push(@layers, ['Glemm', 'Morpho']);
175
176# Malt
177push(@layers, ['Malt', 'Dependency']);
178
179# MDParser
180push(@layers, ['MDParser', 'Dependency']);
181
182# Mate
183push(@layers, ['Mate', 'Morpho']);
184push(@layers, ['Mate', 'Dependency']);
185
186# OpenNLP
187push(@layers, ['OpenNLP', 'Morpho']);
188push(@layers, ['OpenNLP', 'Sentences']);
189
190# Schreibgebrauch
191push(@layers, ['Sgbr', 'Lemma']);
192push(@layers, ['Sgbr', 'Morpho']);
193
194# TreeTagger
195push(@layers, ['TreeTagger', 'Morpho']);
196push(@layers, ['TreeTagger', 'Sentences']);
197
198# XIP
199push(@layers, ['XIP', 'Morpho']);
200push(@layers, ['XIP', 'Constituency']);
201push(@layers, ['XIP', 'Sentences']);
202push(@layers, ['XIP', 'Dependency']);
203
204# Check filters
205my @filtered_anno;
206if ($skip{'#all'}) {
207 foreach (@anno) {
208 push @filtered_anno, [ split('#', $_) ];
209 };
210}
211
212# Add all annotations that are not skipped
213else {
214 # Add to index file - respect skipping
215 foreach my $info (@layers) {
216 # Skip if Foundry or Foundry#Layer should be skipped
217 unless ($skip{lc($info->[0])} || $skip{lc($info->[0]) . '#' . lc($info->[1])}) {
218 push @filtered_anno, $info;
219 };
220 };
221};
222
223# Get tokenization basis
224my ($token_base_foundry, $token_base_layer) = split(/#/, $token_base) if ($token_base);
225
226# TODO: This should not be initialized for batch
227my $cache = Cache::FastMmap->new(
228 share_file => $cache_file,
229 cache_size => $cache_size,
Akron03b24db2016-08-16 20:54:32 +0200230 init_file => $cache_init
Akrone1dbc382016-07-08 22:24:52 +0200231);
232
Akron03b24db2016-08-16 20:54:32 +0200233# Create batch object
Akrone1dbc382016-07-08 22:24:52 +0200234my $batch_file = KorAP::XML::Batch::File->new(
Akron03b24db2016-08-16 20:54:32 +0200235 cache => $cache,
Akrone1dbc382016-07-08 22:24:52 +0200236 meta_type => $meta,
237 overwrite => $overwrite,
Akron03b24db2016-08-16 20:54:32 +0200238 foundry => $token_base_foundry,
239 layer => $token_base_layer,
240 gzip => $gzip,
241 log => $log,
242 primary => $primary,
243 pretty => $pretty,
244 anno => \@filtered_anno
Akrone1dbc382016-07-08 22:24:52 +0200245);
246
Akron941c1a62016-02-23 17:41:41 +0100247
248# Get file name based on path information
249sub get_file_name ($) {
Akron08385f62016-03-22 20:37:04 +0100250 my $i = $input[0];
Akron3ec48972016-08-17 23:24:52 +0200251 if (-d $i) {
252 $i =~ s![^\/]+$!!;
253 };
Akron941c1a62016-02-23 17:41:41 +0100254 my $file = shift;
Akron3ec48972016-08-17 23:24:52 +0200255
256 # Remove temp dir fragments
Akron62557602016-06-27 14:10:13 +0200257 $file =~ s!^/?tmp/[^/]+!!;
Akron08385f62016-03-22 20:37:04 +0100258 $file =~ s/^?\/?$i//;
Akron941c1a62016-02-23 17:41:41 +0100259 $file =~ tr/\//-/;
260 $file =~ s{^-+}{};
261 return $file;
Nils Diewald59094f22014-11-05 18:20:50 +0000262};
263
Akrone10ad322016-02-27 10:54:26 +0100264# Convert sigle to path construct
265s!^\s*([^_]+?)_([^\.]+?)\.(.+?)\s*$!$1/$2/$3! foreach @sigle;
266
Akron7d4cdd82016-08-17 21:39:45 +0200267if ($cmd) {
268 if ($output && (!-e $output || !-d $output)) {
269 print "Directory '$output' does not exist.\n\n";
270 exit(0);
271 };
272};
273
274
Akron941c1a62016-02-23 17:41:41 +0100275# Process a single file
276unless ($cmd) {
Akron08385f62016-03-22 20:37:04 +0100277 my $input = $input[0];
Nils Diewald59094f22014-11-05 18:20:50 +0000278
Akron941c1a62016-02-23 17:41:41 +0100279 BEGIN {
280 $main::TIME = Benchmark->new;
281 $main::LAST_STOP = Benchmark->new;
282 };
283
284 sub stop_time {
285 my $new = Benchmark->new;
Akron5f51d422016-08-16 16:26:43 +0200286 $log->info(
Akron941c1a62016-02-23 17:41:41 +0100287 'The code took: '.
Akron5f51d422016-08-16 16:26:43 +0200288 timestr(timediff($new, $main::LAST_STOP)) .
289 ' (overall: ' . timestr(timediff($new, $main::TIME)) . ')'
290 );
Akron941c1a62016-02-23 17:41:41 +0100291 $main::LAST_STOP = $new;
292 };
293
294 # Create and parse new document
295 $input =~ s{([^/])$}{$1/};
Akron941c1a62016-02-23 17:41:41 +0100296
Akron7d4cdd82016-08-17 21:39:45 +0200297 # Process file
Akrone1dbc382016-07-08 22:24:52 +0200298 $batch_file->process($input, $output);
Akron941c1a62016-02-23 17:41:41 +0100299
Akron11c80302016-03-18 19:44:43 +0100300 # Delete cache file
301 unlink($cache_file) if $cache_delete;
302
Akron5f51d422016-08-16 16:26:43 +0200303 stop_time;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000304}
Nils Diewald59094f22014-11-05 18:20:50 +0000305
Akrone10ad322016-02-27 10:54:26 +0100306# Extract XML files
307elsif ($cmd eq 'extract') {
308
Akron7d4cdd82016-08-17 21:39:45 +0200309 # Create new archive object
Akronb0c88db2016-06-29 16:33:18 +0200310 if (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone10ad322016-02-27 10:54:26 +0100311
Akron7d4cdd82016-08-17 21:39:45 +0200312 # Check zip capabilities
Akrone10ad322016-02-27 10:54:26 +0100313 unless ($archive->test_unzip) {
314 print "Unzip is not installed or incompatible.\n\n";
315 exit(1);
316 };
317
Akronb0c88db2016-06-29 16:33:18 +0200318 # Add further annotation archived
319 $archive->attach($_) foreach @input;
320
Akron651cb8d2016-08-16 21:44:49 +0200321 my $prefix = 1;
322
Akron03b24db2016-08-16 20:54:32 +0200323 # No sigles given
324 unless (@sigle) {
325
326 # Get files
327 foreach ($archive->list_texts) {
328
329 # Split path information
Akron651cb8d2016-08-16 21:44:49 +0200330 ($prefix, my ($corpus, $doc, $text)) = $archive->split_path($_);
Akron03b24db2016-08-16 20:54:32 +0200331
332 # TODO: Make this OS independent
333 push @sigle, join '/', $corpus, $doc, $text;
334 };
335 };
336
Akrone10ad322016-02-27 10:54:26 +0100337 # Iterate over all given sigles and extract
338 foreach (@sigle) {
339 print "$_ ";
Akron7d4cdd82016-08-17 21:39:45 +0200340
Akron03b24db2016-08-16 20:54:32 +0200341 # TODO: Make this OS independent
Akron651cb8d2016-08-16 21:44:49 +0200342 print '' . (
343 $archive->extract(
344 ($prefix ? './' : '') . $_, $output
345 ) ? '' : 'not '
346 );
Akrone10ad322016-02-27 10:54:26 +0100347 print "extracted.\n";
348 };
349
350 print "\n";
351 exit(1);
Akronb0c88db2016-06-29 16:33:18 +0200352 }
Akron7d4cdd82016-08-17 21:39:45 +0200353
354 # Can't create archive object
Akronb0c88db2016-06-29 16:33:18 +0200355 else {
356 $log->error('Unable to extract from primary archive ' . $input[0]);
Akrone10ad322016-02-27 10:54:26 +0100357 };
358}
359
Akron941c1a62016-02-23 17:41:41 +0100360# Process an archive
361elsif ($cmd eq 'archive') {
Nils Diewald2db9ad02013-10-29 19:26:43 +0000362
Akrone1dbc382016-07-08 22:24:52 +0200363 # TODO: Support sigles
Akron941c1a62016-02-23 17:41:41 +0100364
Akron7d4cdd82016-08-17 21:39:45 +0200365 # Zero means: everything runs in the parent process
Akron941c1a62016-02-23 17:41:41 +0100366 my $pool = Parallel::ForkManager->new($jobs);
367
Akron7d4cdd82016-08-17 21:39:45 +0200368 my $count = 0; # Texts to process
Akron941c1a62016-02-23 17:41:41 +0100369 my $iter = 1; # Current text in process
370
371 # Report on fork message
372 $pool->run_on_finish (
373 sub {
Akron7d4cdd82016-08-17 21:39:45 +0200374 my ($pid, $code) = @_;
Akron941c1a62016-02-23 17:41:41 +0100375 my $data = pop;
Akron7d4cdd82016-08-17 21:39:45 +0200376
Akron08385f62016-03-22 20:37:04 +0100377 print 'Convert ['. ($jobs > 0 ? "\$$pid:" : '') .
Akron651cb8d2016-08-16 21:44:49 +0200378 ($iter++) . "/$count]" .
379 ($code ? " $code" : '') .
Akron4c0cf312016-10-15 16:42:09 +0200380 ' ' . $data->[0] . "\n";
381 $data->[1] = undef if $data->[1];
Akron941c1a62016-02-23 17:41:41 +0100382 }
383 );
384
385 my $t;
Akron7d4cdd82016-08-17 21:39:45 +0200386 my $temp;
Akron941c1a62016-02-23 17:41:41 +0100387 print "Reading data ...\n";
388
Akron7d4cdd82016-08-17 21:39:45 +0200389 # unless (Cache::FastMmap->new(
390 # share_file => $cache_file,
391 # cache_size => $cache_size,
392 # init_file => $cache_init
393 # )) {
394 # print "Unable to intialize cache '$cache_file'\n\n";
395 # exit(1);
396 # };
Akron11c80302016-03-18 19:44:43 +0100397
Akron941c1a62016-02-23 17:41:41 +0100398 # Input is a directory
Akron08385f62016-03-22 20:37:04 +0100399 if (-d $input[0]) {
400 my $it = Directory::Iterator->new($input[0]);
Akron941c1a62016-02-23 17:41:41 +0100401 my @dirs;
402 my $dir;
403
Akron7d4cdd82016-08-17 21:39:45 +0200404 # Todo: Make a DO WHILE
Akron941c1a62016-02-23 17:41:41 +0100405 while (1) {
406 if (!$it->is_directory && ($dir = $it->get) && $dir =~ s{/data\.xml$}{}) {
Akron7d4cdd82016-08-17 21:39:45 +0200407 push @dirs, $dir;
408 $it->prune;
Akron941c1a62016-02-23 17:41:41 +0100409 };
410 last unless $it->next;
411 };
412
413 print "Start processing ...\n";
414 $t = Benchmark->new;
415 $count = scalar @dirs;
416
417 DIRECTORY_LOOP:
418 for (my $i = 0; $i < $count; $i++) {
419
Akrone1dbc382016-07-08 22:24:52 +0200420 my $filename = catfile(
Akron7d4cdd82016-08-17 21:39:45 +0200421 $output,
422 get_file_name($dirs[$i]) . '.json' . ($gzip ? '.gz' : '')
Akrone1dbc382016-07-08 22:24:52 +0200423 );
Akron941c1a62016-02-23 17:41:41 +0100424
425 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200426 $pool->start and next DIRECTORY_LOOP;
Akron3ec48972016-08-17 23:24:52 +0200427
428 if ($batch_file->process($dirs[$i] => $filename)) {
Akron4c0cf312016-10-15 16:42:09 +0200429 $pool->finish(0, ["Processed " . $filename]);
Akron3ec48972016-08-17 23:24:52 +0200430 }
431 else {
Akron4c0cf312016-10-15 16:42:09 +0200432 $pool->finish(1, ["Unable to process " . $dirs[$i]]);
Akron3ec48972016-08-17 23:24:52 +0200433 };
Akron941c1a62016-02-23 17:41:41 +0100434 };
435 }
436
437 # Input is a file
Akron29866ac2016-06-24 16:40:47 +0200438 elsif (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone1dbc382016-07-08 22:24:52 +0200439
Akron941c1a62016-02-23 17:41:41 +0100440 unless ($archive->test_unzip) {
441 print "Unzip is not installed or incompatible.\n\n";
442 exit(1);
443 };
444
Akron08385f62016-03-22 20:37:04 +0100445 # Add further annotation archived
Akron29866ac2016-06-24 16:40:47 +0200446 $archive->attach($_) foreach @input;
Akron08385f62016-03-22 20:37:04 +0100447
Akron941c1a62016-02-23 17:41:41 +0100448 print "Start processing ...\n";
449 $t = Benchmark->new;
450 my @dirs = $archive->list_texts;
451 $count = scalar @dirs;
452
453 ARCHIVE_LOOP:
454 for (my $i = 0; $i < $count; $i++) {
455
456 # Split path information
457 my ($prefix, $corpus, $doc, $text) = $archive->split_path($dirs[$i]);
458
Akrone1dbc382016-07-08 22:24:52 +0200459 my $filename = catfile(
Akron7d4cdd82016-08-17 21:39:45 +0200460 $output,
461 get_file_name(
462 catfile($corpus, $doc, $text)
463 . '.json' . ($gzip ? '.gz' : '')
464 )
Akrone1dbc382016-07-08 22:24:52 +0200465 );
Akron941c1a62016-02-23 17:41:41 +0100466
467 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200468 $pool->start and next ARCHIVE_LOOP;
Akron941c1a62016-02-23 17:41:41 +0100469
Akron4c0cf312016-10-15 16:42:09 +0200470 # Create temporary file
471 $temp = File::Temp->newdir;
472
Akronbdf434a2016-10-24 17:42:07 +0200473 # TODO: Check if $filename exist at the beginning,
474 # because extraction can be horrible slow!
475
Akron941c1a62016-02-23 17:41:41 +0100476 # Extract from archive
477 if ($archive->extract($dirs[$i], $temp)) {
478
Akron7d4cdd82016-08-17 21:39:45 +0200479 # Create corpus directory
480 my $input = catdir("$temp", $corpus);
Akron941c1a62016-02-23 17:41:41 +0100481
Akron7d4cdd82016-08-17 21:39:45 +0200482 # Temporary directory
483 my $dir = catdir($input, $doc, $text);
Akron941c1a62016-02-23 17:41:41 +0100484
Akron7d4cdd82016-08-17 21:39:45 +0200485 # Write file
486 if ($batch_file->process($dir => $filename)) {
Akron4c0cf312016-10-15 16:42:09 +0200487 # Delete temporary file
488 $pool->finish(0, ["Processed " . $filename, $temp]);
Akron7d4cdd82016-08-17 21:39:45 +0200489 }
490 else {
Akron4c0cf312016-10-15 16:42:09 +0200491 # Delete temporary file
492 $pool->finish(1, ["Unable to process " . $dir, $temp]);
Akron7d4cdd82016-08-17 21:39:45 +0200493 };
Akron941c1a62016-02-23 17:41:41 +0100494 }
Akron7d4cdd82016-08-17 21:39:45 +0200495
496 # Unable to extract
Akron941c1a62016-02-23 17:41:41 +0100497 else {
Akron4c0cf312016-10-15 16:42:09 +0200498 $pool->finish(1, ["Unable to extract " . $dirs[$i], $temp]);
Akron941c1a62016-02-23 17:41:41 +0100499 };
500 };
501 }
502
503 else {
504 print "Input is neither a directory nor an archive.\n\n";
505 };
506
507 $pool->wait_all_children;
508
Akron11c80302016-03-18 19:44:43 +0100509 # Delete cache file
510 unlink($cache_file) if $cache_delete;
511
Akron941c1a62016-02-23 17:41:41 +0100512 print "Done.\n";
513 print timestr(timediff(Benchmark->new, $t))."\n\n";
514}
515
516# Unknown command
517else {
518 warn "Unknown command '$cmd'.\n\n";
519 pod2usage(%ERROR_HASH);
520}
Nils Diewald2db9ad02013-10-29 19:26:43 +0000521
522__END__
Akron941c1a62016-02-23 17:41:41 +0100523
524=pod
525
526=encoding utf8
527
528=head1 NAME
529
Akronf7ad89e2016-03-16 18:22:47 +0100530korapxml2krill - Merge KorapXML data and create Krill documents
Akron941c1a62016-02-23 17:41:41 +0100531
532
533=head1 SYNOPSIS
534
Akronc13a1702016-03-15 19:33:14 +0100535 $ korapxml2krill -z --input <directory> --output <filename>
536 $ korapxml2krill archive -z --input <directory> --output <directory>
537 $ korapxml2krill extract --input <directory> --output <filename> --sigle <SIGLE>
Akron941c1a62016-02-23 17:41:41 +0100538
539
540=head1 DESCRIPTION
541
542L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files
543compatible with the L<Krill|https://github.com/KorAP/Krill> indexer.
Akronf7ad89e2016-03-16 18:22:47 +0100544The C<korapxml2krill> command line tool is a simple wrapper to the library.
Akron941c1a62016-02-23 17:41:41 +0100545
546
547=head1 INSTALLATION
548
549The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>.
550
Akronaf386982016-10-12 00:33:25 +0200551 $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git
Akron941c1a62016-02-23 17:41:41 +0100552
Akronc13a1702016-03-15 19:33:14 +0100553In case everything went well, the C<korapxml2krill> tool will
Akronf7ad89e2016-03-16 18:22:47 +0100554be available on your command line immediately.
Akron74381512016-10-14 11:56:22 +0200555Minimum requirement for L<KorAP::XML::Krill> is Perl 5.14.
Akron941c1a62016-02-23 17:41:41 +0100556
557=head1 ARGUMENTS
558
559=over 2
560
561=item B<archive>
562
Akrone10ad322016-02-27 10:54:26 +0100563Process an archive as a Zip-file or a folder of KorAP-XML documents.
564
565=item B<extract>
566
567Extract KorAP-XML files from a Zip-file.
Akron941c1a62016-02-23 17:41:41 +0100568
569=back
570
571
572=head1 OPTIONS
573
574=over 2
575
Akron2cfe8092016-06-24 17:48:49 +0200576=item B<--input|-i> <directory|file|files>
Akron941c1a62016-02-23 17:41:41 +0100577
Akronf7ad89e2016-03-16 18:22:47 +0100578Directory or archive file of documents to convert.
Akron941c1a62016-02-23 17:41:41 +0100579
Akron0c3e3752016-06-28 15:55:53 +0200580Archiving supports multiple input archives with the constraint,
Akron2cfe8092016-06-24 17:48:49 +0200581that the first archive listed contains all primary data files
582and all meta data files.
Akron2cfe8092016-06-24 17:48:49 +0200583
584 -i file/news.zip -i file/news.malt.zip -i #file/news.tt.zip
585
Akron0c3e3752016-06-28 15:55:53 +0200586(The directory structure follows the base directory format,
587that may include a C<.> root folder.
588In this case further archives lacking a C<.> root folder
589need to be passed with a hash sign in front of the archive's name.)
Akron2cfe8092016-06-24 17:48:49 +0200590
Akron651cb8d2016-08-16 21:44:49 +0200591B<The root folder switch is experimental and may vanish in future versions.>
592
Akron941c1a62016-02-23 17:41:41 +0100593=item B<--output|-o> <directory|file>
594
595Output folder for archive processing or
596document name for single output (optional),
Akronf7ad89e2016-03-16 18:22:47 +0100597writes to C<STDOUT> by default
598(in case C<output> is not mandatory due to further options).
Akron941c1a62016-02-23 17:41:41 +0100599
600=item B<--overwrite|-w>
601
602Overwrite files that already exist.
603
604=item B<--token|-t> <foundry>[#<file>]
605
606Define the default tokenization by specifying
607the name of the foundry and optionally the name
Akronc13a1702016-03-15 19:33:14 +0100608of the layer-file. Defaults to C<OpenNLP#tokens>.
Akron941c1a62016-02-23 17:41:41 +0100609
610=item B<--skip|-s> <foundry>[#<layer>]
611
Akronf7ad89e2016-03-16 18:22:47 +0100612Skip specific annotations by specifying the foundry
613(and optionally the layer with a C<#>-prefix),
614e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>.
Akron941c1a62016-02-23 17:41:41 +0100615Can be set multiple times.
616
Akronc13a1702016-03-15 19:33:14 +0100617=item B<--anno|-a> <foundry>#<layer>
Akron941c1a62016-02-23 17:41:41 +0100618
Akronf7ad89e2016-03-16 18:22:47 +0100619Convert specific annotations by specifying the foundry
620(and optionally the layer with a C<#>-prefix),
621e.g. C<Mate> or C<Mate#Morpho>.
622Can be set multiple times.
Akron941c1a62016-02-23 17:41:41 +0100623
624=item B<--primary|-p>
625
Akronc13a1702016-03-15 19:33:14 +0100626Output primary data or not. Defaults to C<true>.
Akronf7ad89e2016-03-16 18:22:47 +0100627Can be flagged using C<--no-primary> as well.
628This is I<deprecated>.
Akron941c1a62016-02-23 17:41:41 +0100629
630=item B<--jobs|-j>
631
632Define the number of concurrent jobs in seperated forks
Akronf7ad89e2016-03-16 18:22:47 +0100633for archive processing.
Akron11c80302016-03-18 19:44:43 +0100634Defaults to C<0> (everything runs in a single process).
Akronf7ad89e2016-03-16 18:22:47 +0100635This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +0100636
Akron35db6e32016-03-17 22:42:22 +0100637=item B<--meta|-m>
Akron941c1a62016-02-23 17:41:41 +0100638
Akron35db6e32016-03-17 22:42:22 +0100639Define the metadata parser to use. Defaults to C<I5>.
640Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace.
641This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +0100642
643=item B<--pretty|-y>
644
Akronc13a1702016-03-15 19:33:14 +0100645Pretty print JSON output. Defaults to C<false>.
Akron35db6e32016-03-17 22:42:22 +0100646This is I<deprecated>.
Akron941c1a62016-02-23 17:41:41 +0100647
648=item B<--gzip|-z>
649
Akronf7ad89e2016-03-16 18:22:47 +0100650Compress the output.
651Expects a defined C<output> file in single processing.
Akron941c1a62016-02-23 17:41:41 +0100652
Akron11c80302016-03-18 19:44:43 +0100653=item B<--cache|-c>
654
655File to mmap a cache (using L<Cache::FastMmap>).
656Defaults to C<korapxml2krill.cache> in the calling directory.
657
658=item B<--cache-size|-cs>
659
660Size of the cache. Defaults to C<50m>.
661
662=item B<--cache-init|-ci>
663
664Initialize cache file.
665Can be flagged using C<--no-cache-init> as well.
666Defaults to C<true>.
667
668=item B<--cache-delete|-cd>
669
670Delete cache file after processing.
671Can be flagged using C<--no-cache-delete> as well.
672Defaults to C<true>.
673
Akrone10ad322016-02-27 10:54:26 +0100674=item B<--sigle|-sg>
675
676Extract the given text sigles.
Akrone10ad322016-02-27 10:54:26 +0100677Can be set multiple times.
Akronf7ad89e2016-03-16 18:22:47 +0100678I<Currently only supported on C<extract>.>
Akronb0c88db2016-06-29 16:33:18 +0200679Sigles have the structure C<Corpus>/C<Document>/C<Text>.
Akrone10ad322016-02-27 10:54:26 +0100680
Akron941c1a62016-02-23 17:41:41 +0100681=item B<--log|-l>
682
683The L<Log4perl> log level, defaults to C<ERROR>.
684
685=item B<--help|-h>
686
687Print this document.
688
689=item B<--version|-v>
690
691Print version information.
692
693=back
694
Akronc13a1702016-03-15 19:33:14 +0100695=head1 ANNOTATION SUPPORT
696
697L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers
698developed in the KorAP project that are part of the KorAP preprocessing pipeline.
699The base foundry with paragraphs, sentences, and the text element are mandatory for
700L<Krill|https://github.com/KorAP/Krill>.
701
Akronf7ad89e2016-03-16 18:22:47 +0100702=over 2
Akronc13a1702016-03-15 19:33:14 +0100703
704=item B<Base>
705
706=over 4
707
Akronf7ad89e2016-03-16 18:22:47 +0100708=item #Paragraphs
Akronc13a1702016-03-15 19:33:14 +0100709
Akronf7ad89e2016-03-16 18:22:47 +0100710=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100711
712=back
713
714=item B<Connexor>
715
716=over 4
717
Akronf7ad89e2016-03-16 18:22:47 +0100718=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100719
Akronf7ad89e2016-03-16 18:22:47 +0100720=item #Phrase
Akronc13a1702016-03-15 19:33:14 +0100721
Akronf7ad89e2016-03-16 18:22:47 +0100722=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100723
Akronf7ad89e2016-03-16 18:22:47 +0100724=item #Syntax
Akronc13a1702016-03-15 19:33:14 +0100725
726=back
727
728=item B<CoreNLP>
729
730=over 4
731
Akronf7ad89e2016-03-16 18:22:47 +0100732=item #Constituency
Akronc13a1702016-03-15 19:33:14 +0100733
Akronf7ad89e2016-03-16 18:22:47 +0100734=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100735
Akronf7ad89e2016-03-16 18:22:47 +0100736=item #NamedEntities
Akronc13a1702016-03-15 19:33:14 +0100737
Akronf7ad89e2016-03-16 18:22:47 +0100738=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100739
740=back
741
742=item B<DeReKo>
743
744=over 4
745
Akronf7ad89e2016-03-16 18:22:47 +0100746=item #Structure
Akronc13a1702016-03-15 19:33:14 +0100747
748=back
749
750=item B<Glemm>
751
752=over 4
753
Akronf7ad89e2016-03-16 18:22:47 +0100754=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100755
756=back
757
758=item B<Mate>
759
760=over 4
761
Akronf7ad89e2016-03-16 18:22:47 +0100762=item #Dependency
Akronc13a1702016-03-15 19:33:14 +0100763
Akronf7ad89e2016-03-16 18:22:47 +0100764=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100765
766=back
767
768=item B<OpenNLP>
769
770=over 4
771
Akronf7ad89e2016-03-16 18:22:47 +0100772=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100773
Akronf7ad89e2016-03-16 18:22:47 +0100774=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100775
776=back
777
778=item B<Sgbr>
779
780=over 4
781
Akronf7ad89e2016-03-16 18:22:47 +0100782=item #Lemma
Akronc13a1702016-03-15 19:33:14 +0100783
Akronf7ad89e2016-03-16 18:22:47 +0100784=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100785
786=back
787
788=item B<TreeTagger>
789
790=over 4
791
Akronf7ad89e2016-03-16 18:22:47 +0100792=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100793
Akronf7ad89e2016-03-16 18:22:47 +0100794=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100795
796=back
797
798=item B<XIP>
799
800=over 4
801
Akronf7ad89e2016-03-16 18:22:47 +0100802=item #Constituency
Akronc13a1702016-03-15 19:33:14 +0100803
Akronf7ad89e2016-03-16 18:22:47 +0100804=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100805
Akronf7ad89e2016-03-16 18:22:47 +0100806=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100807
808=back
809
810=back
811
812More importers are in preparation.
813New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace.
814See the built-in annotation importers as examples.
815
Akron941c1a62016-02-23 17:41:41 +0100816=head1 AVAILABILITY
817
818 https://github.com/KorAP/KorAP-XML-Krill
819
820
821=head1 COPYRIGHT AND LICENSE
822
823Copyright (C) 2015-2016, L<IDS Mannheim|http://www.ids-mannheim.de/>
Akronf7ad89e2016-03-16 18:22:47 +0100824
Akron941c1a62016-02-23 17:41:41 +0100825Author: L<Nils Diewald|http://nils-diewald.de/>
826
827L<KorAP::XML::Krill> is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
828Corpus Analysis Platform at the
829L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
830member of the
831L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>.
832
833This program is free software published under the
834L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-Krill/master/LICENSE>.
835
836=cut