blob: 97a691821c714d749e759bb68dbadec0f6c60cc8 [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
68# - Fixed temporary path issue in script.
69#
Akron941c1a62016-02-23 17:41:41 +010070# ----------------------------------------------------------
Akron069bd712016-02-12 19:09:06 +010071
Akron4c0cf312016-10-15 16:42:09 +020072our $LAST_CHANGE = '2016/10/15';
Akron941c1a62016-02-23 17:41:41 +010073our $LOCAL = $FindBin::Bin;
74our $VERSION_MSG = <<"VERSION";
75Version $KorAP::XML::Krill::VERSION - diewald\@ids-mannheim.de - $LAST_CHANGE
76VERSION
77
Akron941c1a62016-02-23 17:41:41 +010078# Parse comand
79my $cmd;
80our @ARGV;
81if ($ARGV[0] && index($ARGV[0], '-') != 0) {
82 $cmd = shift @ARGV;
Akron150b29e2016-02-14 23:06:48 +010083};
Akron93d620e2016-02-05 19:40:05 +010084
Akron5f51d422016-08-16 16:26:43 +020085my (@skip, @sigle, @anno, @input);
Akron35db6e32016-03-17 22:42:22 +010086my $text;
Akrone10ad322016-02-27 10:54:26 +010087
Akron941c1a62016-02-23 17:41:41 +010088# Parse options from the command line
Nils Diewald7364d1f2013-11-05 19:26:35 +000089GetOptions(
Akron08385f62016-03-22 20:37:04 +010090 'input|i=s' => \@input,
Akron941c1a62016-02-23 17:41:41 +010091 'output|o=s' => \(my $output),
92 'overwrite|w' => \(my $overwrite),
Akron35db6e32016-03-17 22:42:22 +010093 'meta|m=s' => \(my $meta),
Akronaf386982016-10-12 00:33:25 +020094 'token|t=s' => \(my $token_base = 'OpenNLP#tokens'),
Akron941c1a62016-02-23 17:41:41 +010095 'gzip|z' => \(my $gzip),
Akrone10ad322016-02-27 10:54:26 +010096 'skip|s=s' => \@skip,
97 'sigle|sg=s' => \@sigle,
Akron11c80302016-03-18 19:44:43 +010098 'cache|c=s' => \(my $cache_file = 'korapxml2krill.cache'),
Akron941c1a62016-02-23 17:41:41 +010099 'log|l=s' => \(my $log_level = 'ERROR'),
Akron5f51d422016-08-16 16:26:43 +0200100 'anno|a=s' => \@anno,
Akron941c1a62016-02-23 17:41:41 +0100101 'primary|p!' => \(my $primary),
102 'pretty|y' => \(my $pretty),
103 'jobs|j=i' => \(my $jobs = 0),
Akron7d4cdd82016-08-17 21:39:45 +0200104 'cache-size|cs=s' => \(my $cache_size = '50m'),
105 'cache-delete|cd!' => \(my $cache_delete = 1),
106 'cache-init|ci!' => \(my $cache_init = 1),
Akron941c1a62016-02-23 17:41:41 +0100107 'help|h' => sub {
108 pod2usage(
109 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
Akron7d4cdd82016-08-17 21:39:45 +0200110 -verbose => 99,
111 -msg => $VERSION_MSG,
112 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100113 );
114 },
115 'version|v' => sub {
116 pod2usage(
Akron7d4cdd82016-08-17 21:39:45 +0200117 -verbose => 0,
118 -msg => $VERSION_MSG,
119 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100120 )
121 }
Nils Diewald7364d1f2013-11-05 19:26:35 +0000122);
123
Akron941c1a62016-02-23 17:41:41 +0100124my %ERROR_HASH = (
125 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
Akron7d4cdd82016-08-17 21:39:45 +0200126 -verbose => 99,
127 -msg => $VERSION_MSG,
128 -output => '-',
129 -exit => 1
Akron941c1a62016-02-23 17:41:41 +0100130);
Nils Diewald7364d1f2013-11-05 19:26:35 +0000131
Akron941c1a62016-02-23 17:41:41 +0100132# Input has to be defined
Akron08385f62016-03-22 20:37:04 +0100133pod2usage(%ERROR_HASH) unless @input;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000134
Akrone1dbc382016-07-08 22:24:52 +0200135# Gzip has no effect, if no output is given
136pod2usage(%ERROR_HASH) if $gzip && !$output;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000137
Akron941c1a62016-02-23 17:41:41 +0100138# Initialize log4perl object
Nils Diewald7364d1f2013-11-05 19:26:35 +0000139Log::Log4perl->init({
140 'log4perl.rootLogger' => uc($log_level) . ', STDERR',
141 'log4perl.appender.STDERR' => 'Log::Log4perl::Appender::ScreenColoredLevels',
142 'log4perl.appender.STDERR.layout' => 'PatternLayout',
143 'log4perl.appender.STDERR.layout.ConversionPattern' => '[%r] %F %L %c - %m%n'
144});
145
146my $log = Log::Log4perl->get_logger('main');
147
Akrone1dbc382016-07-08 22:24:52 +0200148my %skip;
149$skip{lc($_)} = 1 foreach @skip;
150
151my @layers;
152push(@layers, ['Base', 'Sentences']);
153push(@layers, ['Base', 'Paragraphs']);
154
155# Connexor
156push(@layers, ['Connexor', 'Morpho']);
157push(@layers, ['Connexor', 'Syntax']);
158push(@layers, ['Connexor', 'Phrase']);
159push(@layers, ['Connexor', 'Sentences']);
160
161# CoreNLP
162push(@layers, ['CoreNLP', 'NamedEntities']);
163push(@layers, ['CoreNLP', 'Sentences']);
164push(@layers, ['CoreNLP', 'Morpho']);
165push(@layers, ['CoreNLP', 'Constituency']);
166
167# DeReKo
168push(@layers, ['DeReKo', 'Structure']);
169
170# Glemm
171push(@layers, ['Glemm', 'Morpho']);
172
173# Malt
174push(@layers, ['Malt', 'Dependency']);
175
176# MDParser
177push(@layers, ['MDParser', 'Dependency']);
178
179# Mate
180push(@layers, ['Mate', 'Morpho']);
181push(@layers, ['Mate', 'Dependency']);
182
183# OpenNLP
184push(@layers, ['OpenNLP', 'Morpho']);
185push(@layers, ['OpenNLP', 'Sentences']);
186
187# Schreibgebrauch
188push(@layers, ['Sgbr', 'Lemma']);
189push(@layers, ['Sgbr', 'Morpho']);
190
191# TreeTagger
192push(@layers, ['TreeTagger', 'Morpho']);
193push(@layers, ['TreeTagger', 'Sentences']);
194
195# XIP
196push(@layers, ['XIP', 'Morpho']);
197push(@layers, ['XIP', 'Constituency']);
198push(@layers, ['XIP', 'Sentences']);
199push(@layers, ['XIP', 'Dependency']);
200
201# Check filters
202my @filtered_anno;
203if ($skip{'#all'}) {
204 foreach (@anno) {
205 push @filtered_anno, [ split('#', $_) ];
206 };
207}
208
209# Add all annotations that are not skipped
210else {
211 # Add to index file - respect skipping
212 foreach my $info (@layers) {
213 # Skip if Foundry or Foundry#Layer should be skipped
214 unless ($skip{lc($info->[0])} || $skip{lc($info->[0]) . '#' . lc($info->[1])}) {
215 push @filtered_anno, $info;
216 };
217 };
218};
219
220# Get tokenization basis
221my ($token_base_foundry, $token_base_layer) = split(/#/, $token_base) if ($token_base);
222
223# TODO: This should not be initialized for batch
224my $cache = Cache::FastMmap->new(
225 share_file => $cache_file,
226 cache_size => $cache_size,
Akron03b24db2016-08-16 20:54:32 +0200227 init_file => $cache_init
Akrone1dbc382016-07-08 22:24:52 +0200228);
229
Akron03b24db2016-08-16 20:54:32 +0200230# Create batch object
Akrone1dbc382016-07-08 22:24:52 +0200231my $batch_file = KorAP::XML::Batch::File->new(
Akron03b24db2016-08-16 20:54:32 +0200232 cache => $cache,
Akrone1dbc382016-07-08 22:24:52 +0200233 meta_type => $meta,
234 overwrite => $overwrite,
Akron03b24db2016-08-16 20:54:32 +0200235 foundry => $token_base_foundry,
236 layer => $token_base_layer,
237 gzip => $gzip,
238 log => $log,
239 primary => $primary,
240 pretty => $pretty,
241 anno => \@filtered_anno
Akrone1dbc382016-07-08 22:24:52 +0200242);
243
Akron941c1a62016-02-23 17:41:41 +0100244
245# Get file name based on path information
246sub get_file_name ($) {
Akron08385f62016-03-22 20:37:04 +0100247 my $i = $input[0];
Akron3ec48972016-08-17 23:24:52 +0200248 if (-d $i) {
249 $i =~ s![^\/]+$!!;
250 };
Akron941c1a62016-02-23 17:41:41 +0100251 my $file = shift;
Akron3ec48972016-08-17 23:24:52 +0200252
253 # Remove temp dir fragments
Akron62557602016-06-27 14:10:13 +0200254 $file =~ s!^/?tmp/[^/]+!!;
Akron08385f62016-03-22 20:37:04 +0100255 $file =~ s/^?\/?$i//;
Akron941c1a62016-02-23 17:41:41 +0100256 $file =~ tr/\//-/;
257 $file =~ s{^-+}{};
258 return $file;
Nils Diewald59094f22014-11-05 18:20:50 +0000259};
260
Akrone10ad322016-02-27 10:54:26 +0100261# Convert sigle to path construct
262s!^\s*([^_]+?)_([^\.]+?)\.(.+?)\s*$!$1/$2/$3! foreach @sigle;
263
Akron7d4cdd82016-08-17 21:39:45 +0200264if ($cmd) {
265 if ($output && (!-e $output || !-d $output)) {
266 print "Directory '$output' does not exist.\n\n";
267 exit(0);
268 };
269};
270
271
Akron941c1a62016-02-23 17:41:41 +0100272# Process a single file
273unless ($cmd) {
Akron08385f62016-03-22 20:37:04 +0100274 my $input = $input[0];
Nils Diewald59094f22014-11-05 18:20:50 +0000275
Akron941c1a62016-02-23 17:41:41 +0100276 BEGIN {
277 $main::TIME = Benchmark->new;
278 $main::LAST_STOP = Benchmark->new;
279 };
280
281 sub stop_time {
282 my $new = Benchmark->new;
Akron5f51d422016-08-16 16:26:43 +0200283 $log->info(
Akron941c1a62016-02-23 17:41:41 +0100284 'The code took: '.
Akron5f51d422016-08-16 16:26:43 +0200285 timestr(timediff($new, $main::LAST_STOP)) .
286 ' (overall: ' . timestr(timediff($new, $main::TIME)) . ')'
287 );
Akron941c1a62016-02-23 17:41:41 +0100288 $main::LAST_STOP = $new;
289 };
290
291 # Create and parse new document
292 $input =~ s{([^/])$}{$1/};
Akron941c1a62016-02-23 17:41:41 +0100293
Akron7d4cdd82016-08-17 21:39:45 +0200294 # Process file
Akrone1dbc382016-07-08 22:24:52 +0200295 $batch_file->process($input, $output);
Akron941c1a62016-02-23 17:41:41 +0100296
Akron11c80302016-03-18 19:44:43 +0100297 # Delete cache file
298 unlink($cache_file) if $cache_delete;
299
Akron5f51d422016-08-16 16:26:43 +0200300 stop_time;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000301}
Nils Diewald59094f22014-11-05 18:20:50 +0000302
Akrone10ad322016-02-27 10:54:26 +0100303# Extract XML files
304elsif ($cmd eq 'extract') {
305
Akron7d4cdd82016-08-17 21:39:45 +0200306 # Create new archive object
Akronb0c88db2016-06-29 16:33:18 +0200307 if (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone10ad322016-02-27 10:54:26 +0100308
Akron7d4cdd82016-08-17 21:39:45 +0200309 # Check zip capabilities
Akrone10ad322016-02-27 10:54:26 +0100310 unless ($archive->test_unzip) {
311 print "Unzip is not installed or incompatible.\n\n";
312 exit(1);
313 };
314
Akronb0c88db2016-06-29 16:33:18 +0200315 # Add further annotation archived
316 $archive->attach($_) foreach @input;
317
Akron651cb8d2016-08-16 21:44:49 +0200318 my $prefix = 1;
319
Akron03b24db2016-08-16 20:54:32 +0200320 # No sigles given
321 unless (@sigle) {
322
323 # Get files
324 foreach ($archive->list_texts) {
325
326 # Split path information
Akron651cb8d2016-08-16 21:44:49 +0200327 ($prefix, my ($corpus, $doc, $text)) = $archive->split_path($_);
Akron03b24db2016-08-16 20:54:32 +0200328
329 # TODO: Make this OS independent
330 push @sigle, join '/', $corpus, $doc, $text;
331 };
332 };
333
Akrone10ad322016-02-27 10:54:26 +0100334 # Iterate over all given sigles and extract
335 foreach (@sigle) {
336 print "$_ ";
Akron7d4cdd82016-08-17 21:39:45 +0200337
Akron03b24db2016-08-16 20:54:32 +0200338 # TODO: Make this OS independent
Akron651cb8d2016-08-16 21:44:49 +0200339 print '' . (
340 $archive->extract(
341 ($prefix ? './' : '') . $_, $output
342 ) ? '' : 'not '
343 );
Akrone10ad322016-02-27 10:54:26 +0100344 print "extracted.\n";
345 };
346
347 print "\n";
348 exit(1);
Akronb0c88db2016-06-29 16:33:18 +0200349 }
Akron7d4cdd82016-08-17 21:39:45 +0200350
351 # Can't create archive object
Akronb0c88db2016-06-29 16:33:18 +0200352 else {
353 $log->error('Unable to extract from primary archive ' . $input[0]);
Akrone10ad322016-02-27 10:54:26 +0100354 };
355}
356
Akron941c1a62016-02-23 17:41:41 +0100357# Process an archive
358elsif ($cmd eq 'archive') {
Nils Diewald2db9ad02013-10-29 19:26:43 +0000359
Akrone1dbc382016-07-08 22:24:52 +0200360 # TODO: Support sigles
Akron941c1a62016-02-23 17:41:41 +0100361
Akron7d4cdd82016-08-17 21:39:45 +0200362 # Zero means: everything runs in the parent process
Akron941c1a62016-02-23 17:41:41 +0100363 my $pool = Parallel::ForkManager->new($jobs);
364
Akron7d4cdd82016-08-17 21:39:45 +0200365 my $count = 0; # Texts to process
Akron941c1a62016-02-23 17:41:41 +0100366 my $iter = 1; # Current text in process
367
368 # Report on fork message
369 $pool->run_on_finish (
370 sub {
Akron7d4cdd82016-08-17 21:39:45 +0200371 my ($pid, $code) = @_;
Akron941c1a62016-02-23 17:41:41 +0100372 my $data = pop;
Akron7d4cdd82016-08-17 21:39:45 +0200373
Akron08385f62016-03-22 20:37:04 +0100374 print 'Convert ['. ($jobs > 0 ? "\$$pid:" : '') .
Akron651cb8d2016-08-16 21:44:49 +0200375 ($iter++) . "/$count]" .
376 ($code ? " $code" : '') .
Akron4c0cf312016-10-15 16:42:09 +0200377 ' ' . $data->[0] . "\n";
378 $data->[1] = undef if $data->[1];
Akron941c1a62016-02-23 17:41:41 +0100379 }
380 );
381
382 my $t;
Akron7d4cdd82016-08-17 21:39:45 +0200383 my $temp;
Akron941c1a62016-02-23 17:41:41 +0100384 print "Reading data ...\n";
385
Akron7d4cdd82016-08-17 21:39:45 +0200386 # unless (Cache::FastMmap->new(
387 # share_file => $cache_file,
388 # cache_size => $cache_size,
389 # init_file => $cache_init
390 # )) {
391 # print "Unable to intialize cache '$cache_file'\n\n";
392 # exit(1);
393 # };
Akron11c80302016-03-18 19:44:43 +0100394
Akron941c1a62016-02-23 17:41:41 +0100395 # Input is a directory
Akron08385f62016-03-22 20:37:04 +0100396 if (-d $input[0]) {
397 my $it = Directory::Iterator->new($input[0]);
Akron941c1a62016-02-23 17:41:41 +0100398 my @dirs;
399 my $dir;
400
Akron7d4cdd82016-08-17 21:39:45 +0200401 # Todo: Make a DO WHILE
Akron941c1a62016-02-23 17:41:41 +0100402 while (1) {
403 if (!$it->is_directory && ($dir = $it->get) && $dir =~ s{/data\.xml$}{}) {
Akron7d4cdd82016-08-17 21:39:45 +0200404 push @dirs, $dir;
405 $it->prune;
Akron941c1a62016-02-23 17:41:41 +0100406 };
407 last unless $it->next;
408 };
409
410 print "Start processing ...\n";
411 $t = Benchmark->new;
412 $count = scalar @dirs;
413
414 DIRECTORY_LOOP:
415 for (my $i = 0; $i < $count; $i++) {
416
Akrone1dbc382016-07-08 22:24:52 +0200417 my $filename = catfile(
Akron7d4cdd82016-08-17 21:39:45 +0200418 $output,
419 get_file_name($dirs[$i]) . '.json' . ($gzip ? '.gz' : '')
Akrone1dbc382016-07-08 22:24:52 +0200420 );
Akron941c1a62016-02-23 17:41:41 +0100421
422 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200423 $pool->start and next DIRECTORY_LOOP;
Akron3ec48972016-08-17 23:24:52 +0200424
425 if ($batch_file->process($dirs[$i] => $filename)) {
Akron4c0cf312016-10-15 16:42:09 +0200426 $pool->finish(0, ["Processed " . $filename]);
Akron3ec48972016-08-17 23:24:52 +0200427 }
428 else {
Akron4c0cf312016-10-15 16:42:09 +0200429 $pool->finish(1, ["Unable to process " . $dirs[$i]]);
Akron3ec48972016-08-17 23:24:52 +0200430 };
Akron941c1a62016-02-23 17:41:41 +0100431 };
432 }
433
434 # Input is a file
Akron29866ac2016-06-24 16:40:47 +0200435 elsif (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone1dbc382016-07-08 22:24:52 +0200436
Akron941c1a62016-02-23 17:41:41 +0100437 unless ($archive->test_unzip) {
438 print "Unzip is not installed or incompatible.\n\n";
439 exit(1);
440 };
441
Akron08385f62016-03-22 20:37:04 +0100442 # Add further annotation archived
Akron29866ac2016-06-24 16:40:47 +0200443 $archive->attach($_) foreach @input;
Akron08385f62016-03-22 20:37:04 +0100444
Akron941c1a62016-02-23 17:41:41 +0100445 print "Start processing ...\n";
446 $t = Benchmark->new;
447 my @dirs = $archive->list_texts;
448 $count = scalar @dirs;
449
450 ARCHIVE_LOOP:
451 for (my $i = 0; $i < $count; $i++) {
452
453 # Split path information
454 my ($prefix, $corpus, $doc, $text) = $archive->split_path($dirs[$i]);
455
Akrone1dbc382016-07-08 22:24:52 +0200456 my $filename = catfile(
Akron7d4cdd82016-08-17 21:39:45 +0200457 $output,
458 get_file_name(
459 catfile($corpus, $doc, $text)
460 . '.json' . ($gzip ? '.gz' : '')
461 )
Akrone1dbc382016-07-08 22:24:52 +0200462 );
Akron941c1a62016-02-23 17:41:41 +0100463
464 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200465 $pool->start and next ARCHIVE_LOOP;
Akron941c1a62016-02-23 17:41:41 +0100466
Akron4c0cf312016-10-15 16:42:09 +0200467 # Create temporary file
468 $temp = File::Temp->newdir;
469
Akronbdf434a2016-10-24 17:42:07 +0200470 # TODO: Check if $filename exist at the beginning,
471 # because extraction can be horrible slow!
472
Akron941c1a62016-02-23 17:41:41 +0100473 # Extract from archive
474 if ($archive->extract($dirs[$i], $temp)) {
475
Akron7d4cdd82016-08-17 21:39:45 +0200476 # Create corpus directory
477 my $input = catdir("$temp", $corpus);
Akron941c1a62016-02-23 17:41:41 +0100478
Akron7d4cdd82016-08-17 21:39:45 +0200479 # Temporary directory
480 my $dir = catdir($input, $doc, $text);
Akron941c1a62016-02-23 17:41:41 +0100481
Akron7d4cdd82016-08-17 21:39:45 +0200482 # Write file
483 if ($batch_file->process($dir => $filename)) {
Akron4c0cf312016-10-15 16:42:09 +0200484 # Delete temporary file
485 $pool->finish(0, ["Processed " . $filename, $temp]);
Akron7d4cdd82016-08-17 21:39:45 +0200486 }
487 else {
Akron4c0cf312016-10-15 16:42:09 +0200488 # Delete temporary file
489 $pool->finish(1, ["Unable to process " . $dir, $temp]);
Akron7d4cdd82016-08-17 21:39:45 +0200490 };
Akron941c1a62016-02-23 17:41:41 +0100491 }
Akron7d4cdd82016-08-17 21:39:45 +0200492
493 # Unable to extract
Akron941c1a62016-02-23 17:41:41 +0100494 else {
Akron4c0cf312016-10-15 16:42:09 +0200495 $pool->finish(1, ["Unable to extract " . $dirs[$i], $temp]);
Akron941c1a62016-02-23 17:41:41 +0100496 };
497 };
498 }
499
500 else {
501 print "Input is neither a directory nor an archive.\n\n";
502 };
503
504 $pool->wait_all_children;
505
Akron11c80302016-03-18 19:44:43 +0100506 # Delete cache file
507 unlink($cache_file) if $cache_delete;
508
Akron941c1a62016-02-23 17:41:41 +0100509 print "Done.\n";
510 print timestr(timediff(Benchmark->new, $t))."\n\n";
511}
512
513# Unknown command
514else {
515 warn "Unknown command '$cmd'.\n\n";
516 pod2usage(%ERROR_HASH);
517}
Nils Diewald2db9ad02013-10-29 19:26:43 +0000518
519__END__
Akron941c1a62016-02-23 17:41:41 +0100520
521=pod
522
523=encoding utf8
524
525=head1 NAME
526
Akronf7ad89e2016-03-16 18:22:47 +0100527korapxml2krill - Merge KorapXML data and create Krill documents
Akron941c1a62016-02-23 17:41:41 +0100528
529
530=head1 SYNOPSIS
531
Akronc13a1702016-03-15 19:33:14 +0100532 $ korapxml2krill -z --input <directory> --output <filename>
533 $ korapxml2krill archive -z --input <directory> --output <directory>
534 $ korapxml2krill extract --input <directory> --output <filename> --sigle <SIGLE>
Akron941c1a62016-02-23 17:41:41 +0100535
536
537=head1 DESCRIPTION
538
539L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files
540compatible with the L<Krill|https://github.com/KorAP/Krill> indexer.
Akronf7ad89e2016-03-16 18:22:47 +0100541The C<korapxml2krill> command line tool is a simple wrapper to the library.
Akron941c1a62016-02-23 17:41:41 +0100542
543
544=head1 INSTALLATION
545
546The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>.
547
Akronaf386982016-10-12 00:33:25 +0200548 $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git
Akron941c1a62016-02-23 17:41:41 +0100549
Akronc13a1702016-03-15 19:33:14 +0100550In case everything went well, the C<korapxml2krill> tool will
Akronf7ad89e2016-03-16 18:22:47 +0100551be available on your command line immediately.
Akron74381512016-10-14 11:56:22 +0200552Minimum requirement for L<KorAP::XML::Krill> is Perl 5.14.
Akron941c1a62016-02-23 17:41:41 +0100553
554=head1 ARGUMENTS
555
556=over 2
557
558=item B<archive>
559
Akrone10ad322016-02-27 10:54:26 +0100560Process an archive as a Zip-file or a folder of KorAP-XML documents.
561
562=item B<extract>
563
564Extract KorAP-XML files from a Zip-file.
Akron941c1a62016-02-23 17:41:41 +0100565
566=back
567
568
569=head1 OPTIONS
570
571=over 2
572
Akron2cfe8092016-06-24 17:48:49 +0200573=item B<--input|-i> <directory|file|files>
Akron941c1a62016-02-23 17:41:41 +0100574
Akronf7ad89e2016-03-16 18:22:47 +0100575Directory or archive file of documents to convert.
Akron941c1a62016-02-23 17:41:41 +0100576
Akron0c3e3752016-06-28 15:55:53 +0200577Archiving supports multiple input archives with the constraint,
Akron2cfe8092016-06-24 17:48:49 +0200578that the first archive listed contains all primary data files
579and all meta data files.
Akron2cfe8092016-06-24 17:48:49 +0200580
581 -i file/news.zip -i file/news.malt.zip -i #file/news.tt.zip
582
Akron0c3e3752016-06-28 15:55:53 +0200583(The directory structure follows the base directory format,
584that may include a C<.> root folder.
585In this case further archives lacking a C<.> root folder
586need to be passed with a hash sign in front of the archive's name.)
Akron2cfe8092016-06-24 17:48:49 +0200587
Akron651cb8d2016-08-16 21:44:49 +0200588B<The root folder switch is experimental and may vanish in future versions.>
589
Akron941c1a62016-02-23 17:41:41 +0100590=item B<--output|-o> <directory|file>
591
592Output folder for archive processing or
593document name for single output (optional),
Akronf7ad89e2016-03-16 18:22:47 +0100594writes to C<STDOUT> by default
595(in case C<output> is not mandatory due to further options).
Akron941c1a62016-02-23 17:41:41 +0100596
597=item B<--overwrite|-w>
598
599Overwrite files that already exist.
600
601=item B<--token|-t> <foundry>[#<file>]
602
603Define the default tokenization by specifying
604the name of the foundry and optionally the name
Akronc13a1702016-03-15 19:33:14 +0100605of the layer-file. Defaults to C<OpenNLP#tokens>.
Akron941c1a62016-02-23 17:41:41 +0100606
607=item B<--skip|-s> <foundry>[#<layer>]
608
Akronf7ad89e2016-03-16 18:22:47 +0100609Skip specific annotations by specifying the foundry
610(and optionally the layer with a C<#>-prefix),
611e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>.
Akron941c1a62016-02-23 17:41:41 +0100612Can be set multiple times.
613
Akronc13a1702016-03-15 19:33:14 +0100614=item B<--anno|-a> <foundry>#<layer>
Akron941c1a62016-02-23 17:41:41 +0100615
Akronf7ad89e2016-03-16 18:22:47 +0100616Convert specific annotations by specifying the foundry
617(and optionally the layer with a C<#>-prefix),
618e.g. C<Mate> or C<Mate#Morpho>.
619Can be set multiple times.
Akron941c1a62016-02-23 17:41:41 +0100620
621=item B<--primary|-p>
622
Akronc13a1702016-03-15 19:33:14 +0100623Output primary data or not. Defaults to C<true>.
Akronf7ad89e2016-03-16 18:22:47 +0100624Can be flagged using C<--no-primary> as well.
625This is I<deprecated>.
Akron941c1a62016-02-23 17:41:41 +0100626
627=item B<--jobs|-j>
628
629Define the number of concurrent jobs in seperated forks
Akronf7ad89e2016-03-16 18:22:47 +0100630for archive processing.
Akron11c80302016-03-18 19:44:43 +0100631Defaults to C<0> (everything runs in a single process).
Akronf7ad89e2016-03-16 18:22:47 +0100632This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +0100633
Akron35db6e32016-03-17 22:42:22 +0100634=item B<--meta|-m>
Akron941c1a62016-02-23 17:41:41 +0100635
Akron35db6e32016-03-17 22:42:22 +0100636Define the metadata parser to use. Defaults to C<I5>.
637Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace.
638This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +0100639
640=item B<--pretty|-y>
641
Akronc13a1702016-03-15 19:33:14 +0100642Pretty print JSON output. Defaults to C<false>.
Akron35db6e32016-03-17 22:42:22 +0100643This is I<deprecated>.
Akron941c1a62016-02-23 17:41:41 +0100644
645=item B<--gzip|-z>
646
Akronf7ad89e2016-03-16 18:22:47 +0100647Compress the output.
648Expects a defined C<output> file in single processing.
Akron941c1a62016-02-23 17:41:41 +0100649
Akron11c80302016-03-18 19:44:43 +0100650=item B<--cache|-c>
651
652File to mmap a cache (using L<Cache::FastMmap>).
653Defaults to C<korapxml2krill.cache> in the calling directory.
654
655=item B<--cache-size|-cs>
656
657Size of the cache. Defaults to C<50m>.
658
659=item B<--cache-init|-ci>
660
661Initialize cache file.
662Can be flagged using C<--no-cache-init> as well.
663Defaults to C<true>.
664
665=item B<--cache-delete|-cd>
666
667Delete cache file after processing.
668Can be flagged using C<--no-cache-delete> as well.
669Defaults to C<true>.
670
Akrone10ad322016-02-27 10:54:26 +0100671=item B<--sigle|-sg>
672
673Extract the given text sigles.
Akrone10ad322016-02-27 10:54:26 +0100674Can be set multiple times.
Akronf7ad89e2016-03-16 18:22:47 +0100675I<Currently only supported on C<extract>.>
Akronb0c88db2016-06-29 16:33:18 +0200676Sigles have the structure C<Corpus>/C<Document>/C<Text>.
Akrone10ad322016-02-27 10:54:26 +0100677
Akron941c1a62016-02-23 17:41:41 +0100678=item B<--log|-l>
679
680The L<Log4perl> log level, defaults to C<ERROR>.
681
682=item B<--help|-h>
683
684Print this document.
685
686=item B<--version|-v>
687
688Print version information.
689
690=back
691
Akronc13a1702016-03-15 19:33:14 +0100692=head1 ANNOTATION SUPPORT
693
694L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers
695developed in the KorAP project that are part of the KorAP preprocessing pipeline.
696The base foundry with paragraphs, sentences, and the text element are mandatory for
697L<Krill|https://github.com/KorAP/Krill>.
698
Akronf7ad89e2016-03-16 18:22:47 +0100699=over 2
Akronc13a1702016-03-15 19:33:14 +0100700
701=item B<Base>
702
703=over 4
704
Akronf7ad89e2016-03-16 18:22:47 +0100705=item #Paragraphs
Akronc13a1702016-03-15 19:33:14 +0100706
Akronf7ad89e2016-03-16 18:22:47 +0100707=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100708
709=back
710
711=item B<Connexor>
712
713=over 4
714
Akronf7ad89e2016-03-16 18:22:47 +0100715=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100716
Akronf7ad89e2016-03-16 18:22:47 +0100717=item #Phrase
Akronc13a1702016-03-15 19:33:14 +0100718
Akronf7ad89e2016-03-16 18:22:47 +0100719=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100720
Akronf7ad89e2016-03-16 18:22:47 +0100721=item #Syntax
Akronc13a1702016-03-15 19:33:14 +0100722
723=back
724
725=item B<CoreNLP>
726
727=over 4
728
Akronf7ad89e2016-03-16 18:22:47 +0100729=item #Constituency
Akronc13a1702016-03-15 19:33:14 +0100730
Akronf7ad89e2016-03-16 18:22:47 +0100731=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100732
Akronf7ad89e2016-03-16 18:22:47 +0100733=item #NamedEntities
Akronc13a1702016-03-15 19:33:14 +0100734
Akronf7ad89e2016-03-16 18:22:47 +0100735=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100736
737=back
738
739=item B<DeReKo>
740
741=over 4
742
Akronf7ad89e2016-03-16 18:22:47 +0100743=item #Structure
Akronc13a1702016-03-15 19:33:14 +0100744
745=back
746
747=item B<Glemm>
748
749=over 4
750
Akronf7ad89e2016-03-16 18:22:47 +0100751=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100752
753=back
754
755=item B<Mate>
756
757=over 4
758
Akronf7ad89e2016-03-16 18:22:47 +0100759=item #Dependency
Akronc13a1702016-03-15 19:33:14 +0100760
Akronf7ad89e2016-03-16 18:22:47 +0100761=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100762
763=back
764
765=item B<OpenNLP>
766
767=over 4
768
Akronf7ad89e2016-03-16 18:22:47 +0100769=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100770
Akronf7ad89e2016-03-16 18:22:47 +0100771=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100772
773=back
774
775=item B<Sgbr>
776
777=over 4
778
Akronf7ad89e2016-03-16 18:22:47 +0100779=item #Lemma
Akronc13a1702016-03-15 19:33:14 +0100780
Akronf7ad89e2016-03-16 18:22:47 +0100781=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100782
783=back
784
785=item B<TreeTagger>
786
787=over 4
788
Akronf7ad89e2016-03-16 18:22:47 +0100789=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100790
Akronf7ad89e2016-03-16 18:22:47 +0100791=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100792
793=back
794
795=item B<XIP>
796
797=over 4
798
Akronf7ad89e2016-03-16 18:22:47 +0100799=item #Constituency
Akronc13a1702016-03-15 19:33:14 +0100800
Akronf7ad89e2016-03-16 18:22:47 +0100801=item #Morpho
Akronc13a1702016-03-15 19:33:14 +0100802
Akronf7ad89e2016-03-16 18:22:47 +0100803=item #Sentences
Akronc13a1702016-03-15 19:33:14 +0100804
805=back
806
807=back
808
809More importers are in preparation.
810New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace.
811See the built-in annotation importers as examples.
812
Akron941c1a62016-02-23 17:41:41 +0100813=head1 AVAILABILITY
814
815 https://github.com/KorAP/KorAP-XML-Krill
816
817
818=head1 COPYRIGHT AND LICENSE
819
820Copyright (C) 2015-2016, L<IDS Mannheim|http://www.ids-mannheim.de/>
Akronf7ad89e2016-03-16 18:22:47 +0100821
Akron941c1a62016-02-23 17:41:41 +0100822Author: L<Nils Diewald|http://nils-diewald.de/>
823
824L<KorAP::XML::Krill> is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
825Corpus Analysis Platform at the
826L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
827member of the
828L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>.
829
830This program is free software published under the
831L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-Krill/master/LICENSE>.
832
833=cut