blob: dd5155efa05be5447722c472a82d625349b221b1 [file] [log] [blame]
Nils Diewald2db9ad02013-10-29 19:26:43 +00001#!/usr/bin/env perl
2use strict;
3use warnings;
Akronf8df2162020-08-07 15:03:39 +02004use v5.10;
Akron941c1a62016-02-23 17:41:41 +01005use FindBin;
6BEGIN { unshift @INC, "$FindBin::Bin/../lib" };
7use File::Spec::Functions qw/catfile catdir/;
8use Getopt::Long qw/GetOptions :config no_auto_abbrev/;
Nils Diewald7364d1f2013-11-05 19:26:35 +00009use Benchmark qw/:hireswallclock/;
10use IO::Compress::Gzip qw/$GzipError/;
Akronc11f7982017-02-21 21:20:14 +010011use POSIX qw/ceil/;
Nils Diewald2db9ad02013-10-29 19:26:43 +000012use Log::Log4perl;
Akron941c1a62016-02-23 17:41:41 +010013use Pod::Usage;
Akron11c80302016-03-18 19:44:43 +010014use Cache::FastMmap;
Akron941c1a62016-02-23 17:41:41 +010015use Directory::Iterator;
Akron41127e32020-08-07 12:46:19 +020016use KorAP::XML::Krill qw!get_file_name get_file_name_from_glob!;
Akron941c1a62016-02-23 17:41:41 +010017use KorAP::XML::Archive;
Akron93d620e2016-02-05 19:40:05 +010018use KorAP::XML::Tokenizer;
Akrone1dbc382016-07-08 22:24:52 +020019use KorAP::XML::Batch::File;
Akron636aa112017-04-07 18:48:56 +020020use Config::Simple;
Akron941c1a62016-02-23 17:41:41 +010021use Parallel::ForkManager;
Akronc11f7982017-02-21 21:20:14 +010022use Sys::Info;
23use Sys::Info::Constants qw( :device_cpu );
Akron821db3d2017-04-06 21:19:31 +020024use File::Glob ':bsd_glob';
Akron81500102017-04-07 20:45:44 +020025use File::Temp qw/tempdir/;
Akron63f20d42017-04-10 23:40:29 +020026use File::Path qw(remove_tree make_path);
Akron9a062ce2017-07-04 19:12:05 +020027use File::Basename;
Akron63f20d42017-04-10 23:40:29 +020028use Mojo::Collection 'c';
29use String::Random qw(random_string);
Akron081639e2017-04-21 19:01:39 +020030use IO::File;
31use Archive::Tar::Builder;
Akronda3097e2017-04-23 19:53:57 +020032use Fcntl qw(:flock SEEK_END);
Akronc11f7982017-02-21 21:20:14 +010033
34# use KorAP::XML::ForkPool;
Akron75ba57d2016-03-07 23:36:27 +010035# TODO: use Parallel::Loops
Akron08385f62016-03-22 20:37:04 +010036# TODO: make output files
Akron93d620e2016-02-05 19:40:05 +010037
Akronc11f7982017-02-21 21:20:14 +010038# TODO: Use KorAP::XML::ForkPool!
39
Akron941c1a62016-02-23 17:41:41 +010040# CHANGES:
41# ----------------------------------------------------------
42# 2013/11/25
43# - Initial release
44#
45# 2014/10/29
46# - Merges foundry data to create indexer friendly documents
47#
Akron93d620e2016-02-05 19:40:05 +010048# 2016/02/04
49# - renamed to korapxml2krill
50# - added Schreibgebrauch support
Akron069bd712016-02-12 19:09:06 +010051#
52# 2016/02/12
53# - fixed foundry skipping
Akron941c1a62016-02-23 17:41:41 +010054# - Support overwrite in archive processing
Akron150b29e2016-02-14 23:06:48 +010055#
56# 2016/02/14
57# - Added version information
Akron941c1a62016-02-23 17:41:41 +010058# - Added support for archive files
59#
60# 2016/02/15
61# - Fixed temporary directory bug
62# - Improved skipping before unzipping
63# - Added EXPERIMENTAL concurrency support
64#
65# 2016/02/23
66# - Merge korapxml2krill and korapxml2krill_dir
Akrone10ad322016-02-27 10:54:26 +010067#
68# 2016/02/27
69# - Added extract function
Akron35db6e32016-03-17 22:42:22 +010070#
71# 2016/03/17
72# - Added meta switch
Akron11c80302016-03-18 19:44:43 +010073#
74# 2016/03/18
75# - Added meta data caching
Akron2cfe8092016-06-24 17:48:49 +020076#
Akronf3f0c942016-06-27 13:27:14 +020077# 2016/06/27
Akron2cfe8092016-06-24 17:48:49 +020078# - Added multi archive support
79# - Added prefix negation support
Akronf3f0c942016-06-27 13:27:14 +020080# - Added Malt#Dependency support
Akron8b990522016-07-06 16:45:57 +020081#
82# 2016/07/06
83# - Added MDParser#Dependency
Akron4c0cf312016-10-15 16:42:09 +020084#
85# 2016/10/15
Nils Diewald0e489772016-10-24 15:16:52 +020086# - Fixed temporary path issue in script
87#
88# 2016/10/24
89# - Improved Windows support
Akron4c0cf312016-10-15 16:42:09 +020090#
Akronb4bbec72016-10-26 20:21:02 +020091# 2016/10/24
92# - Added support for document extraction
93#
Akron3741f8b2016-12-21 19:55:21 +010094# 2016/10/27
Akron2fd402b2016-10-27 21:26:48 +020095# - Added wildcard support for document extraction
Akron2812ba22016-10-28 21:55:59 +020096#
Akron3741f8b2016-12-21 19:55:21 +010097# 2016/12/21
98# - added support for base-sentences and base-tokenizations
99#
Akron4fa37c32017-01-20 14:43:10 +0100100# 2017/01/20
101# - added support for DRuKoLa annotations
102#
Akron41ac10b2017-02-08 22:47:25 +0100103# 2017/02/08
104# - added support for pagebreak annotations
105#
Akron821db3d2017-04-06 21:19:31 +0200106# 2017/04/06
107# - added support for wildcards in input
108#
Akron636aa112017-04-07 18:48:56 +0200109# 2017/04/07
110# - support configuration option
Akron81500102017-04-07 20:45:44 +0200111# - support for temporary extraction
Akron636aa112017-04-07 18:48:56 +0200112#
Akron9ec88872017-04-12 16:29:06 +0200113# 2017/04/12
Akron63f20d42017-04-10 23:40:29 +0200114# - support serial processing
115# - support input root
Akron9ec88872017-04-12 16:29:06 +0200116# - introduced --sequential-extraction flag
Akronce125b62017-06-19 11:54:36 +0200117#
118# 2017/06/19
119# - added support for DCK
Akron3abc03e2017-06-29 16:23:35 +0200120#
121# 2017/06/29
122# - Fixed exit codes
Akron9a062ce2017-07-04 19:12:05 +0200123#
124# 2017/07/04
125# - Fixed tar building process
Akron4c679192018-01-16 17:41:49 +0100126#
127# 2018/01/16
128# - Added LWC support
Akron5fdc7e12018-07-19 12:37:48 +0200129#
130# 2018/07/19
131# - Preliminary support for HNC.
Akroned9baf02019-01-22 17:03:25 +0100132#
133# 2019/01/22
Akron57510c12019-01-04 14:58:53 +0100134# - Preliminary support for DGD.
Akroned9baf02019-01-22 17:03:25 +0100135# - Support for non-word tokens.
Akron263274c2019-02-07 09:48:30 +0100136#
Akron63d03ee2019-02-13 18:49:38 +0100137# 2019/02/13
Akron263274c2019-02-07 09:48:30 +0100138# - Support for 'koral:field' array.
139# - Support for Koral versioning.
Akron63d03ee2019-02-13 18:49:38 +0100140# - Ignore temporary extract parameter on
141# directory archiving.
Akron7d5e6382019-08-08 16:36:27 +0200142#
143# 2019/08/08
144# - Support for Talismane.
Akronc29b8e12019-12-16 14:28:09 +0100145#
Akronf1849aa2019-12-16 23:35:33 +0100146# 2019/12/17
Akronc29b8e12019-12-16 14:28:09 +0100147# - Added support for DGD pseudo-sentences
148# based on anchor milestones.
Akronf1849aa2019-12-16 23:35:33 +0100149# - Support for non-verbal annotations.
Akron07e24772020-04-23 14:00:54 +0200150#
151# 2020/04/23
152# - Added support for Redewiedergabe-Korpus structure
153# annotations, based on sentence and paragraph milestones
154# - Added support for Redewiedergabe-Korpus morphology
Akron941c1a62016-02-23 17:41:41 +0100155# ----------------------------------------------------------
Akron069bd712016-02-12 19:09:06 +0100156
Akronf8df2162020-08-07 15:03:39 +0200157our $LAST_CHANGE = '2020/08/07';
Akron941c1a62016-02-23 17:41:41 +0100158our $LOCAL = $FindBin::Bin;
Akron263274c2019-02-07 09:48:30 +0100159our $KORAL_VERSION = 0.03;
Akron941c1a62016-02-23 17:41:41 +0100160our $VERSION_MSG = <<"VERSION";
161Version $KorAP::XML::Krill::VERSION - diewald\@ids-mannheim.de - $LAST_CHANGE
162VERSION
163
Akron941c1a62016-02-23 17:41:41 +0100164# Parse comand
165my $cmd;
166our @ARGV;
167if ($ARGV[0] && index($ARGV[0], '-') != 0) {
168 $cmd = shift @ARGV;
Akron150b29e2016-02-14 23:06:48 +0100169};
Akron63f20d42017-04-10 23:40:29 +0200170my @keep_argv = @ARGV;
Akron93d620e2016-02-05 19:40:05 +0100171
Akron5f51d422016-08-16 16:26:43 +0200172my (@skip, @sigle, @anno, @input);
Akronf8df2162020-08-07 15:03:39 +0200173
174# Configuration hash
175my %cfg = ();
Akrone10ad322016-02-27 10:54:26 +0100176
Akron941c1a62016-02-23 17:41:41 +0100177# Parse options from the command line
Nils Diewald7364d1f2013-11-05 19:26:35 +0000178GetOptions(
Akron08385f62016-03-22 20:37:04 +0100179 'input|i=s' => \@input,
Akronf8df2162020-08-07 15:03:39 +0200180 'input-base|ib=s' => \($cfg{input_base}),
181 'output|o=s' => \($cfg{output}),
182 'overwrite|w' => \($cfg{overwrite}),
183 'meta|m=s' => \($cfg{meta}),
184 'token|t=s' => \($cfg{token}),
185 'base-sentences|bs=s' => \($cfg{base_sentences}),
186 'base-paragraphs|bp=s' => \($cfg{base_paragraphs}),
187 'base-pagebreaks|bpb=s' => \($cfg{base_pagebreaks}),
188 'gzip|z' => \($cfg{gzip}),
189 'temporary-extract|te=s' => \($cfg{extract_dir}),
Akrone10ad322016-02-27 10:54:26 +0100190 'skip|s=s' => \@skip,
191 'sigle|sg=s' => \@sigle,
Akronf8df2162020-08-07 15:03:39 +0200192 'cache|c=s' => \($cfg{cache_file}),
Akron636aa112017-04-07 18:48:56 +0200193 'config|cfg=s' => \(my $cfg_file),
Akronf8df2162020-08-07 15:03:39 +0200194 'log|l=s' => \($cfg{log}),
Akron5f51d422016-08-16 16:26:43 +0200195 'anno|a=s' => \@anno,
Akron11daf962020-08-07 16:29:22 +0200196 'primary|p!' => sub {
197 warn 'Primary flag no longer supported!';
198 },
Akron6aed0562020-08-07 16:46:00 +0200199 'pretty|y' => sub {
200 warn 'Pretty flag no longer supported!';
201 },
Akronf8df2162020-08-07 15:03:39 +0200202 'jobs|j=i' => \($cfg{jobs}),
203 'koral|k=f' => \($cfg{koral}),
204 'to-tar' => \($cfg{to_tar}),
205 'non-word-tokens|nwt' => \($cfg{non_word_tokens}),
206 'non-verbal-tokens|nvt' => \($cfg{non_verbal_tokens}),
207 'sequential-extraction|se' => \($cfg{sequential_extraction}),
208 'cache-size|cs=s' => \($cfg{cache_size}),
209 'cache-delete|cd!' => \($cfg{cache_delete}),
210 'cache-init|ci!' => \($cfg{cache_init}),
Akron941c1a62016-02-23 17:41:41 +0100211 'help|h' => sub {
212 pod2usage(
213 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
Akron7d4cdd82016-08-17 21:39:45 +0200214 -verbose => 99,
215 -msg => $VERSION_MSG,
216 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100217 );
218 },
219 'version|v' => sub {
220 pod2usage(
Akron7d4cdd82016-08-17 21:39:45 +0200221 -verbose => 0,
222 -msg => $VERSION_MSG,
223 -output => '-'
Akron941c1a62016-02-23 17:41:41 +0100224 )
225 }
Nils Diewald7364d1f2013-11-05 19:26:35 +0000226);
227
Akrone512b7c2020-08-07 16:16:12 +0200228my %ERROR_HASH = (
229 -sections => 'NAME|SYNOPSIS|ARGUMENTS|OPTIONS',
230 -verbose => 99,
231 -msg => $VERSION_MSG,
232 -output => '-',
233 -exit => 1
234);
Akron63f20d42017-04-10 23:40:29 +0200235
Akronf8df2162020-08-07 15:03:39 +0200236# Load from configuration and fill non-given data
Akron636aa112017-04-07 18:48:56 +0200237if ($cfg_file && -e $cfg_file) {
Akron636aa112017-04-07 18:48:56 +0200238 my %config;
239
Akronf8df2162020-08-07 15:03:39 +0200240 print "Reading config from $cfg_file\n";
241
Akron636aa112017-04-07 18:48:56 +0200242 Config::Simple->import_from($cfg_file, \%config);
243
Akronf8df2162020-08-07 15:03:39 +0200244 foreach (qw!output cache-size input-base token overwrite
245 meta base-sentences base-paragraphs base-pagebreaks
246 gzip to-tar log cache non-word-tokens
247 non-verbal-tokens sequential-extraction cache-init
248 koral extract-dir jobs!) {
249 my $underlined = $_ =~ tr/-/_/r;
250 if (!defined($cfg{$underlined}) && defined $config{$_}) {
251 $cfg{$underlined} = $config{$_};
252 };
Akron636aa112017-04-07 18:48:56 +0200253 };
254
255 # Skip
256 if (!scalar(@skip) && defined $config{'skip'}) {
257 @skip = split /\s*;\s*/, $config{'skip'} ;
258 };
259
260 # Sigle
261 if (!scalar(@sigle) && defined $config{'sigle'}) {
262 @sigle = split /\s*;\s*/, $config{'sigle'} ;
263 };
264
265 # Anno
266 if (!scalar(@anno) && defined $config{'anno'}) {
267 @anno = split /\s*;\s*/, $config{'anno'} ;
268 };
269};
270
Akronf8df2162020-08-07 15:03:39 +0200271# Init variables and set default values
272my $output = $cfg{output};
273my $input_base = $cfg{input_base};
274my $gzip = $cfg{gzip};
275my $to_tar = $cfg{to_tar};
276my $extract_dir = $cfg{extract_dir};
277my $token_base = $cfg{token} // 'OpenNLP#tokens';
278my $cache_file = $cfg{cache} // 'korapxml2krill.cache';
279my $jobs = $cfg{jobs} // 0;
280my $cache_delete = $cfg{cache_delete} // 1;
281my $base_sentences = lc($cfg{base_sentences} // '');
282my $base_paragraphs = lc($cfg{base_paragraphs} // '');
283my $base_pagebreaks = lc($cfg{base_pagebreaks} // '');
284my $sequential_extraction = $cfg{sequential_extraction} // 0;
Akron63f20d42017-04-10 23:40:29 +0200285
Akronf8df2162020-08-07 15:03:39 +0200286# Get tokenization basis
287my ($token_base_foundry, $token_base_layer) = split(/#/, $token_base) if $token_base;
Akron636aa112017-04-07 18:48:56 +0200288
Akronf8df2162020-08-07 15:03:39 +0200289# Remove file extension
290$token_base_layer =~ s/\.xml$//i;
Akron3741f8b2016-12-21 19:55:21 +0100291
Akronf8df2162020-08-07 15:03:39 +0200292# Convert sigle to path construct
293s!^\s*([^_]+?)_([^\.]+?)\.(.+?)\s*$!$1/$2/$3! foreach @sigle;
294
295my %skip;
296$skip{lc($_)} = 1 foreach @skip;
Akron63f20d42017-04-10 23:40:29 +0200297
298# Initialize log4perl object
299Log::Log4perl->init({
Akronf8df2162020-08-07 15:03:39 +0200300 'log4perl.rootLogger' => uc($cfg{log} // 'ERROR') . ', STDERR',
Akron63f20d42017-04-10 23:40:29 +0200301 'log4perl.appender.STDERR' => 'Log::Log4perl::Appender::ScreenColoredLevels',
302 'log4perl.appender.STDERR.layout' => 'PatternLayout',
303 'log4perl.appender.STDERR.layout.ConversionPattern' => '[%r] %F %L %c - %m%n'
304});
305
306my $log = Log::Log4perl->get_logger('main');
307
Akronf8df2162020-08-07 15:03:39 +0200308if ($cmd && $output && (!defined($to_tar)) && (!-e $output || !-d $output)) {
309 $log->error("Directory '$output' does not exist.");
310 exit 1;
311};
Akron63f20d42017-04-10 23:40:29 +0200312
Akron941c1a62016-02-23 17:41:41 +0100313# Input has to be defined
Akron08385f62016-03-22 20:37:04 +0100314pod2usage(%ERROR_HASH) unless @input;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000315
Akrone1dbc382016-07-08 22:24:52 +0200316# Gzip has no effect, if no output is given
317pod2usage(%ERROR_HASH) if $gzip && !$output;
Nils Diewald7364d1f2013-11-05 19:26:35 +0000318
Akronc11f7982017-02-21 21:20:14 +0100319
Akron63f20d42017-04-10 23:40:29 +0200320# Start serial processing
Akron28c4e542017-07-04 20:30:33 +0200321if ($cmd && $cmd eq 'serial') {
Akron63f20d42017-04-10 23:40:29 +0200322
Akron63f20d42017-04-10 23:40:29 +0200323 # Remove all inputs
324 my $remove_next = 0;
325 @keep_argv = @{c(@keep_argv)->grep(
326 sub {
327 # Input flag
328 if ($_ eq '-i' || $_ eq '--input' || $_ eq '--output' || $_ eq '-o') {
329 $remove_next = 1;
330 return 0;
331 }
332
333 # input value
334 elsif ($remove_next) {
335 $remove_next = 0;
336 return 0;
337 };
338
339 # Pass parameter
340 return 1;
341 }
342 )->to_array};
343
344
345 # Iterate over all inputs
346 foreach (@input) {
347
Akron081639e2017-04-21 19:01:39 +0200348 # This will create a directory
Akron63f20d42017-04-10 23:40:29 +0200349 my $new_out = catdir($output, get_file_name_from_glob($_));
350
Akron486f9ab2017-04-22 23:25:19 +0200351 # Create new path, in case the output is not meant to be tarred
Akron081639e2017-04-21 19:01:39 +0200352 unless ($to_tar) {
353 if (make_path($new_out) == 0 && !-d $new_out) {
354 $log->error("Can\'t create path $new_out");
Akron3abc03e2017-06-29 16:23:35 +0200355 exit 1;
Akron081639e2017-04-21 19:01:39 +0200356 };
Akron63f20d42017-04-10 23:40:29 +0200357 };
358
359 # Create archive command
360 my @archive_cmd = ($^X, $0, 'archive', @keep_argv, '-i', $_, '-o', $new_out);
361 print "Start serial processing of $_ to $new_out\n";
362
363 # Start archiving
364 system @archive_cmd;
365 };
366
Akron3abc03e2017-06-29 16:23:35 +0200367 exit;
Akron63f20d42017-04-10 23:40:29 +0200368};
369
Akron5c602cb2020-08-07 17:00:52 +0200370# Define supported (and preinstalled) transformation modules
371my @layers = ();
Akron3741f8b2016-12-21 19:55:21 +0100372push(@layers, ['Base', 'Sentences']) unless $base_sentences;
373push(@layers, ['Base', 'Paragraphs']) unless $base_paragraphs;
Akrone1dbc382016-07-08 22:24:52 +0200374
375# Connexor
Akron5c602cb2020-08-07 17:00:52 +0200376push(@layers, ['Connexor', 'Morpho'],
377 ['Connexor', 'Syntax'],
378 ['Connexor', 'Phrase'],
379 ['Connexor', 'Sentences']);
Akrone1dbc382016-07-08 22:24:52 +0200380
381# CoreNLP
Akron5c602cb2020-08-07 17:00:52 +0200382push(@layers,
383 ['CoreNLP', 'NamedEntities'],
384 ['CoreNLP', 'Sentences'],
385 ['CoreNLP', 'Morpho'],
386 ['CoreNLP', 'Constituency']);
Akrone1dbc382016-07-08 22:24:52 +0200387
Akronce125b62017-06-19 11:54:36 +0200388# CMC
389push(@layers, ['CMC', 'Morpho']);
Akron3741f8b2016-12-21 19:55:21 +0100390
Akrone1dbc382016-07-08 22:24:52 +0200391# DeReKo
Akron41ac10b2017-02-08 22:47:25 +0100392my @dereko_attr = ();
393if ($base_sentences eq 'dereko#structure') {
394 push @dereko_attr, 'sentences';
395};
396if ($base_paragraphs eq 'dereko#structure') {
397 push @dereko_attr, 'paragraphs';
398};
Akron636bd9c2017-02-09 17:13:00 +0100399
Akron41ac10b2017-02-08 22:47:25 +0100400if ($base_pagebreaks eq 'dereko#structure') {
401 push @dereko_attr, 'pagebreaks';
402};
403
404if ($dereko_attr[0]) {
405 push(@layers, ['DeReKo', 'Structure', 'base-' . join('-', @dereko_attr)]);
Akron3741f8b2016-12-21 19:55:21 +0100406}
407else {
408 push(@layers, ['DeReKo', 'Structure']);
409};
Akrone1dbc382016-07-08 22:24:52 +0200410
Akron57510c12019-01-04 14:58:53 +0100411# DGD
412push(@layers, ['DGD', 'Morpho']);
Akronc29b8e12019-12-16 14:28:09 +0100413if ($base_sentences eq 'dgd#structure') {
414 push(@layers, ['DGD', 'Structure', 'base-sentence']);
415}
Akron57510c12019-01-04 14:58:53 +0100416
417# DRuKoLa
Akron5c602cb2020-08-07 17:00:52 +0200418push(@layers,
419 ['DRuKoLa', 'Morpho']);
Akron57510c12019-01-04 14:58:53 +0100420
Akrone1dbc382016-07-08 22:24:52 +0200421# Glemm
Akron5c602cb2020-08-07 17:00:52 +0200422push(@layers,
423 ['Glemm', 'Morpho']);
Akrone1dbc382016-07-08 22:24:52 +0200424
Akronea1aed52018-07-19 14:43:34 +0200425# HNC
Akron5c602cb2020-08-07 17:00:52 +0200426push(@layers,
427 ['HNC', 'Morpho']);
Akronea1aed52018-07-19 14:43:34 +0200428
Akron4c679192018-01-16 17:41:49 +0100429# LWC
Akron5c602cb2020-08-07 17:00:52 +0200430push(@layers,
431 ['LWC', 'Dependency']);
Akron4c679192018-01-16 17:41:49 +0100432
Akrone1dbc382016-07-08 22:24:52 +0200433# Malt
Akron5c602cb2020-08-07 17:00:52 +0200434push(@layers,
435 ['Malt', 'Dependency']);
Akrone1dbc382016-07-08 22:24:52 +0200436
Akron57510c12019-01-04 14:58:53 +0100437# Marmot
Akron5c602cb2020-08-07 17:00:52 +0200438push(@layers,
439 ['MarMoT', 'Morpho']);
Akrone1dbc382016-07-08 22:24:52 +0200440
441# Mate
Akron5c602cb2020-08-07 17:00:52 +0200442push(@layers,
443 ['Mate', 'Morpho'],
444 ['Mate', 'Dependency']);
Akrone1dbc382016-07-08 22:24:52 +0200445
Akron57510c12019-01-04 14:58:53 +0100446# MDParser
Akron5c602cb2020-08-07 17:00:52 +0200447push(@layers,
448 ['MDParser', 'Dependency']);
Akron57510c12019-01-04 14:58:53 +0100449
Akrone1dbc382016-07-08 22:24:52 +0200450# OpenNLP
Akron5c602cb2020-08-07 17:00:52 +0200451push(@layers,
452 ['OpenNLP', 'Morpho'],
453 ['OpenNLP', 'Sentences']);
Akrone1dbc382016-07-08 22:24:52 +0200454
Akron07e24772020-04-23 14:00:54 +0200455# Redewiedergabe
456push(@layers, ['RWK', 'Morpho']);
457if ($base_sentences eq 'rwk#structure') {
458 push(@layers, ['RWK', 'Structure']);
459};
460
Akrone1dbc382016-07-08 22:24:52 +0200461# Schreibgebrauch
Akron5c602cb2020-08-07 17:00:52 +0200462push(@layers,
463 ['Sgbr', 'Lemma'],
464 ['Sgbr', 'Morpho']);
Akrone1dbc382016-07-08 22:24:52 +0200465
Akron7d5e6382019-08-08 16:36:27 +0200466# Talismane
Akron5c602cb2020-08-07 17:00:52 +0200467push(@layers,
468 ['Talismane', 'Dependency'],
469 ['Talismane', 'Morpho']);
Akron7d5e6382019-08-08 16:36:27 +0200470
Akrone1dbc382016-07-08 22:24:52 +0200471# TreeTagger
Akron5c602cb2020-08-07 17:00:52 +0200472push(@layers,
473 ['TreeTagger', 'Morpho'],
474 ['TreeTagger', 'Sentences']);
Akrone1dbc382016-07-08 22:24:52 +0200475
476# XIP
Akron5c602cb2020-08-07 17:00:52 +0200477push(@layers,
478 ['XIP', 'Morpho'],
479 ['XIP', 'Constituency'],
480 ['XIP', 'Sentences'],
481 ['XIP', 'Dependency']);
Akrone1dbc382016-07-08 22:24:52 +0200482
Akron4fa37c32017-01-20 14:43:10 +0100483
Akrone1dbc382016-07-08 22:24:52 +0200484# Check filters
485my @filtered_anno;
486if ($skip{'#all'}) {
487 foreach (@anno) {
488 push @filtered_anno, [ split('#', $_) ];
489 };
490}
491
492# Add all annotations that are not skipped
493else {
494 # Add to index file - respect skipping
495 foreach my $info (@layers) {
496 # Skip if Foundry or Foundry#Layer should be skipped
497 unless ($skip{lc($info->[0])} || $skip{lc($info->[0]) . '#' . lc($info->[1])}) {
498 push @filtered_anno, $info;
499 };
500 };
501};
502
Akrone1dbc382016-07-08 22:24:52 +0200503
504# TODO: This should not be initialized for batch
505my $cache = Cache::FastMmap->new(
506 share_file => $cache_file,
Akronf8df2162020-08-07 15:03:39 +0200507 cache_size => ($cfg{cache_size} // '50m'),
508 init_file => ($cfg{cache_init} // 1)
Akrone1dbc382016-07-08 22:24:52 +0200509);
510
Akron03b24db2016-08-16 20:54:32 +0200511# Create batch object
Akrone1dbc382016-07-08 22:24:52 +0200512my $batch_file = KorAP::XML::Batch::File->new(
Akron03b24db2016-08-16 20:54:32 +0200513 cache => $cache,
Akronf8df2162020-08-07 15:03:39 +0200514 meta_type => $cfg{meta},
515 overwrite => $cfg{overwrite},
Akron03b24db2016-08-16 20:54:32 +0200516 foundry => $token_base_foundry,
517 layer => $token_base_layer,
518 gzip => $gzip,
519 log => $log,
Akronf8df2162020-08-07 15:03:39 +0200520 koral => ($cfg{koral} // $KORAL_VERSION),
Akroned9baf02019-01-22 17:03:25 +0100521 anno => \@filtered_anno,
Akronf8df2162020-08-07 15:03:39 +0200522 non_word_tokens => ($cfg{non_word_tokens} // 0),
523 non_verbal_tokens => ($cfg{non_verbal_tokens} // 0)
Akrone1dbc382016-07-08 22:24:52 +0200524);
525
Akrone512b7c2020-08-07 16:16:12 +0200526
527# Auto adjust jobs
528if ($jobs eq '-1') {
529 my $cores = Sys::Info->new->device('CPU')->count;
530 $jobs = ceil(5 * $cores);
531 $log->info("Run using $jobs jobs on $cores cores");
532};
533
534
Akron63f20d42017-04-10 23:40:29 +0200535# Glob and prefix files
Akrone512b7c2020-08-07 16:16:12 +0200536if (@input > 0) {
Akron63f20d42017-04-10 23:40:29 +0200537
Akron821db3d2017-04-06 21:19:31 +0200538 my @new_input = ();
539
540 # Iterate over all inputs
Akron63f20d42017-04-10 23:40:29 +0200541 foreach my $wild_card (@input) {
542
543 # Prefix with input root
544 $wild_card = $input_base ? catfile($input_base, $wild_card) : $wild_card;
545
546 push (@new_input, bsd_glob($wild_card));
Akron821db3d2017-04-06 21:19:31 +0200547 };
548
Akron63f20d42017-04-10 23:40:29 +0200549 # Sort files by length
550 @input = sort { length($a) <=> length($b) } @new_input;
551
552 print 'Input is ' . join(', ', @input)."\n";
Akron821db3d2017-04-06 21:19:31 +0200553};
554
555
Akron941c1a62016-02-23 17:41:41 +0100556# Process a single file
557unless ($cmd) {
Akron08385f62016-03-22 20:37:04 +0100558 my $input = $input[0];
Nils Diewald59094f22014-11-05 18:20:50 +0000559
Akron941c1a62016-02-23 17:41:41 +0100560 BEGIN {
561 $main::TIME = Benchmark->new;
562 $main::LAST_STOP = Benchmark->new;
563 };
564
565 sub stop_time {
566 my $new = Benchmark->new;
Akron5f51d422016-08-16 16:26:43 +0200567 $log->info(
Akron941c1a62016-02-23 17:41:41 +0100568 'The code took: '.
Akron5f51d422016-08-16 16:26:43 +0200569 timestr(timediff($new, $main::LAST_STOP)) .
570 ' (overall: ' . timestr(timediff($new, $main::TIME)) . ')'
571 );
Akron941c1a62016-02-23 17:41:41 +0100572 $main::LAST_STOP = $new;
573 };
574
575 # Create and parse new document
Akrone512b7c2020-08-07 16:16:12 +0200576 $input =~ s{([^/])$}{$1/}o;
Akron941c1a62016-02-23 17:41:41 +0100577
Akron7d4cdd82016-08-17 21:39:45 +0200578 # Process file
Akrone1dbc382016-07-08 22:24:52 +0200579 $batch_file->process($input, $output);
Akron941c1a62016-02-23 17:41:41 +0100580
Akron11c80302016-03-18 19:44:43 +0100581 # Delete cache file
582 unlink($cache_file) if $cache_delete;
583
Akron5f51d422016-08-16 16:26:43 +0200584 stop_time;
Akron3abc03e2017-06-29 16:23:35 +0200585 exit;
Akron81500102017-04-07 20:45:44 +0200586};
587
Nils Diewald59094f22014-11-05 18:20:50 +0000588
Akrone10ad322016-02-27 10:54:26 +0100589# Extract XML files
Akron81500102017-04-07 20:45:44 +0200590if ($cmd eq 'extract') {
Akrone10ad322016-02-27 10:54:26 +0100591
Akrond5643ad2017-07-04 20:27:13 +0200592 # Output is required
593 pod2usage(%ERROR_HASH) unless $output;
594
Akron7d4cdd82016-08-17 21:39:45 +0200595 # Create new archive object
Akronb0c88db2016-06-29 16:33:18 +0200596 if (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone10ad322016-02-27 10:54:26 +0100597
Akron7d4cdd82016-08-17 21:39:45 +0200598 # Check zip capabilities
Akrone10ad322016-02-27 10:54:26 +0100599 unless ($archive->test_unzip) {
Akron3abc03e2017-06-29 16:23:35 +0200600 $log->error("Unzip is not installed or incompatible.");
601 exit 1;
Akrone10ad322016-02-27 10:54:26 +0100602 };
603
Akronb0c88db2016-06-29 16:33:18 +0200604 # Add further annotation archived
Akron2812ba22016-10-28 21:55:59 +0200605 $archive->attach($_) foreach @input[1..$#input];
Akronb0c88db2016-06-29 16:33:18 +0200606
Akron31a08cb2019-02-20 20:43:26 +0100607 # Will set @sigle
608 my $prefix = set_sigle($archive);
Akron651cb8d2016-08-16 21:44:49 +0200609
Akrone10ad322016-02-27 10:54:26 +0100610 # Iterate over all given sigles and extract
611 foreach (@sigle) {
Akron60a8caa2017-02-17 21:51:27 +0100612
Akron2812ba22016-10-28 21:55:59 +0200613 print "$_ ...\n";
Akron7d4cdd82016-08-17 21:39:45 +0200614
Akron03b24db2016-08-16 20:54:32 +0200615 # TODO: Make this OS independent
Akron2812ba22016-10-28 21:55:59 +0200616 print '... ' . (
Akron60a8caa2017-02-17 21:51:27 +0100617
Akron955b75b2019-02-21 14:28:41 +0100618 # TODO:
619 # - prefix???
620 $archive->extract_sigle([$_], $output, $jobs)
621 ? '' : 'not '
Akron651cb8d2016-08-16 21:44:49 +0200622 );
Akrone10ad322016-02-27 10:54:26 +0100623 print "extracted.\n";
624 };
Akronb0c88db2016-06-29 16:33:18 +0200625 }
Akron7d4cdd82016-08-17 21:39:45 +0200626
627 # Can't create archive object
Akronb0c88db2016-06-29 16:33:18 +0200628 else {
629 $log->error('Unable to extract from primary archive ' . $input[0]);
Akron3abc03e2017-06-29 16:23:35 +0200630 exit 1;
Akrone10ad322016-02-27 10:54:26 +0100631 };
632}
633
Akron81500102017-04-07 20:45:44 +0200634
Akron941c1a62016-02-23 17:41:41 +0100635# Process an archive
636elsif ($cmd eq 'archive') {
Nils Diewald2db9ad02013-10-29 19:26:43 +0000637
Akron81500102017-04-07 20:45:44 +0200638 my $archive_output;
639
640 # First extract, then archive
Akron63d03ee2019-02-13 18:49:38 +0100641 if (defined $extract_dir && !-d $input[0]) {
Akron81500102017-04-07 20:45:44 +0200642
643 # Create new archive object
644 if (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
645
646 # Check zip capabilities
647 unless ($archive->test_unzip) {
Akron3abc03e2017-06-29 16:23:35 +0200648 $log->error("Unzip is not installed or incompatible.");
649 exit 1;
Akron81500102017-04-07 20:45:44 +0200650 };
651
652 # Add further annotation archived
653 $archive->attach($_) foreach @input[1..$#input];
654
655 # Create a temporary directory
656 if ($extract_dir eq ':temp:') {
Akron63f20d42017-04-10 23:40:29 +0200657 $extract_dir = tempdir(CLEANUP => 0);
658 print "Temporarily extract to $extract_dir\n";
Akron81500102017-04-07 20:45:44 +0200659 };
660
Akron63f20d42017-04-10 23:40:29 +0200661 # Add some random extra to avoid clashes with multiple archives
662 $extract_dir = catdir($extract_dir, random_string('cccccc'));
663
Akron31a08cb2019-02-20 20:43:26 +0100664 # Extract to temporary directory
Akron9ec88872017-04-12 16:29:06 +0200665 if ($archive->extract_all($extract_dir, $sequential_extraction ? 1: $jobs)) {
Akron81500102017-04-07 20:45:44 +0200666 @input = ($extract_dir);
667 }
668 else {
669 $log->error('Unable to extract from primary archive ' . $input[0] .
670 ' to ' . $extract_dir);
Akron3abc03e2017-06-29 16:23:35 +0200671 exit 1;
Akron81500102017-04-07 20:45:44 +0200672 };
673 }
674
675 # Can't create archive object
676 else {
677 $log->error('Unable to extract from primary archive ' . $input[0]);
Akron3abc03e2017-06-29 16:23:35 +0200678 exit 1;
Akron81500102017-04-07 20:45:44 +0200679 };
680 };
681
Akron7d4cdd82016-08-17 21:39:45 +0200682 # Zero means: everything runs in the parent process
Akron941c1a62016-02-23 17:41:41 +0100683 my $pool = Parallel::ForkManager->new($jobs);
684
Akron7d4cdd82016-08-17 21:39:45 +0200685 my $count = 0; # Texts to process
Akron941c1a62016-02-23 17:41:41 +0100686 my $iter = 1; # Current text in process
687
Akronda3097e2017-04-23 19:53:57 +0200688 my $tar_archive;
689 my $output_dir = $output;
690 my $tar_fh;
691
692 # Initialize tar archive
693 if ($to_tar) {
694 $tar_archive = Archive::Tar::Builder->new(
695 ignore_errors => 1
696 );
697
698 # Set output name
699 my $tar_file = $output;
700 unless ($tar_file =~ /\.tar$/) {
701 $tar_file .= '.tar';
702 };
703
704 # Initiate the tar file
705 print "Writing to file $tar_file\n";
706 $tar_fh = IO::File->new($tar_file, 'w');
707 $tar_fh->binmode(1);
708
709 # Set handle
710 $tar_archive->set_handle($tar_fh);
711
712 # Output to temporary directory
713 $output_dir = File::Temp->newdir;
714 };
715
Akron941c1a62016-02-23 17:41:41 +0100716 # Report on fork message
717 $pool->run_on_finish (
718 sub {
Akron7d4cdd82016-08-17 21:39:45 +0200719 my ($pid, $code) = @_;
Akron941c1a62016-02-23 17:41:41 +0100720 my $data = pop;
Akron7d4cdd82016-08-17 21:39:45 +0200721
Akron08385f62016-03-22 20:37:04 +0100722 print 'Convert ['. ($jobs > 0 ? "\$$pid:" : '') .
Akron651cb8d2016-08-16 21:44:49 +0200723 ($iter++) . "/$count]" .
724 ($code ? " $code" : '') .
Akron4c0cf312016-10-15 16:42:09 +0200725 ' ' . $data->[0] . "\n";
Akronda3097e2017-04-23 19:53:57 +0200726
727 if (!$code && $to_tar && $data->[2]) {
728 my $filename = $data->[2];
729
730 # Lock filehandle
731 if (flock($tar_fh, LOCK_EX)) {
732
Akron9a062ce2017-07-04 19:12:05 +0200733 my $clean_file = fileparse($filename);
734
Akronda3097e2017-04-23 19:53:57 +0200735 # Archive and remove file
Akron9a062ce2017-07-04 19:12:05 +0200736 $tar_archive->archive_as($filename => $clean_file);
Akronda3097e2017-04-23 19:53:57 +0200737 unlink $filename;
738
739 # Unlock filehandle
740 flock($tar_fh, LOCK_UN);
741 }
742 else {
743 $log->warn("Unable to add $filename to archive");
744 };
745 };
746
Akron4c0cf312016-10-15 16:42:09 +0200747 $data->[1] = undef if $data->[1];
Akron941c1a62016-02-23 17:41:41 +0100748 }
749 );
750
751 my $t;
Akron7d4cdd82016-08-17 21:39:45 +0200752 my $temp;
Akron941c1a62016-02-23 17:41:41 +0100753 print "Reading data ...\n";
754
Akron7d4cdd82016-08-17 21:39:45 +0200755 # unless (Cache::FastMmap->new(
756 # share_file => $cache_file,
757 # cache_size => $cache_size,
758 # init_file => $cache_init
759 # )) {
760 # print "Unable to intialize cache '$cache_file'\n\n";
761 # exit(1);
762 # };
Akron11c80302016-03-18 19:44:43 +0100763
Akron486f9ab2017-04-22 23:25:19 +0200764
Akron941c1a62016-02-23 17:41:41 +0100765 # Input is a directory
Akron08385f62016-03-22 20:37:04 +0100766 if (-d $input[0]) {
Akron5c602cb2020-08-07 17:00:52 +0200767 # TODO:
768 # Replace with Mojo::File
Akron08385f62016-03-22 20:37:04 +0100769 my $it = Directory::Iterator->new($input[0]);
Akron941c1a62016-02-23 17:41:41 +0100770 my @dirs;
771 my $dir;
772
Akron7d4cdd82016-08-17 21:39:45 +0200773 # Todo: Make a DO WHILE
Akron941c1a62016-02-23 17:41:41 +0100774 while (1) {
775 if (!$it->is_directory && ($dir = $it->get) && $dir =~ s{/data\.xml$}{}) {
Akron7d4cdd82016-08-17 21:39:45 +0200776 push @dirs, $dir;
777 $it->prune;
Akron941c1a62016-02-23 17:41:41 +0100778 };
779 last unless $it->next;
780 };
781
782 print "Start processing ...\n";
783 $t = Benchmark->new;
784 $count = scalar @dirs;
785
786 DIRECTORY_LOOP:
787 for (my $i = 0; $i < $count; $i++) {
788
Akrone1dbc382016-07-08 22:24:52 +0200789 my $filename = catfile(
Akron081639e2017-04-21 19:01:39 +0200790 $output_dir,
Akron41127e32020-08-07 12:46:19 +0200791 get_file_name($input[0], $dirs[$i]) . '.json' . ($gzip ? '.gz' : '')
Akrone1dbc382016-07-08 22:24:52 +0200792 );
Akron941c1a62016-02-23 17:41:41 +0100793
794 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200795 $pool->start and next DIRECTORY_LOOP;
Akron3ec48972016-08-17 23:24:52 +0200796
Akron13d56622016-10-31 14:54:49 +0100797 if (my $return = $batch_file->process($dirs[$i] => $filename)) {
Akron486f9ab2017-04-22 23:25:19 +0200798 $pool->finish(
799 0,
Akronda3097e2017-04-23 19:53:57 +0200800 [
801 "Processed " . $filename . ($return == -1 ? " - already existing" : ''),
802 undef,
803 $filename
804 ]
Akron486f9ab2017-04-22 23:25:19 +0200805 );
Akron3ec48972016-08-17 23:24:52 +0200806 }
807 else {
Akron4c0cf312016-10-15 16:42:09 +0200808 $pool->finish(1, ["Unable to process " . $dirs[$i]]);
Akron3ec48972016-08-17 23:24:52 +0200809 };
Akron941c1a62016-02-23 17:41:41 +0100810 };
811 }
812
813 # Input is a file
Akron29866ac2016-06-24 16:40:47 +0200814 elsif (-f($input[0]) && (my $archive = KorAP::XML::Archive->new($input[0]))) {
Akrone1dbc382016-07-08 22:24:52 +0200815
Akron941c1a62016-02-23 17:41:41 +0100816 unless ($archive->test_unzip) {
Akron3abc03e2017-06-29 16:23:35 +0200817 $log->error("Unzip is not installed or incompatible.");
818 exit 1;
Akron941c1a62016-02-23 17:41:41 +0100819 };
820
Akron08385f62016-03-22 20:37:04 +0100821 # Add further annotation archived
Akron2812ba22016-10-28 21:55:59 +0200822 $archive->attach($_) foreach @input[1..$#input];
Akron08385f62016-03-22 20:37:04 +0100823
Akron31a08cb2019-02-20 20:43:26 +0100824 # Get sigles to extract
825 my $prefix = set_sigle($archive);
826
Akron941c1a62016-02-23 17:41:41 +0100827 print "Start processing ...\n";
828 $t = Benchmark->new;
829 my @dirs = $archive->list_texts;
830 $count = scalar @dirs;
831
832 ARCHIVE_LOOP:
833 for (my $i = 0; $i < $count; $i++) {
834
835 # Split path information
836 my ($prefix, $corpus, $doc, $text) = $archive->split_path($dirs[$i]);
837
Akrone1dbc382016-07-08 22:24:52 +0200838 my $filename = catfile(
Akron486f9ab2017-04-22 23:25:19 +0200839 $output_dir,
Akron7d4cdd82016-08-17 21:39:45 +0200840 get_file_name(
Akron41127e32020-08-07 12:46:19 +0200841 $input[0],
Akron7d4cdd82016-08-17 21:39:45 +0200842 catfile($corpus, $doc, $text)
843 . '.json' . ($gzip ? '.gz' : '')
844 )
Akrone1dbc382016-07-08 22:24:52 +0200845 );
Akron941c1a62016-02-23 17:41:41 +0100846
847 # Get the next fork
Akron7d4cdd82016-08-17 21:39:45 +0200848 $pool->start and next ARCHIVE_LOOP;
Akron941c1a62016-02-23 17:41:41 +0100849
Akron4c0cf312016-10-15 16:42:09 +0200850 # Create temporary file
851 $temp = File::Temp->newdir;
852
Akronbdf434a2016-10-24 17:42:07 +0200853 # TODO: Check if $filename exist at the beginning,
854 # because extraction can be horrible slow!
855
Akron941c1a62016-02-23 17:41:41 +0100856 # Extract from archive
Akron955b75b2019-02-21 14:28:41 +0100857 if ($archive->extract_sigle([join('/', $corpus, $doc, $text)], $temp, $sequential_extraction ? 1 : $jobs)) {
Akron941c1a62016-02-23 17:41:41 +0100858
Akron7d4cdd82016-08-17 21:39:45 +0200859 # Create corpus directory
860 my $input = catdir("$temp", $corpus);
Akron941c1a62016-02-23 17:41:41 +0100861
Akron7d4cdd82016-08-17 21:39:45 +0200862 # Temporary directory
863 my $dir = catdir($input, $doc, $text);
Akron941c1a62016-02-23 17:41:41 +0100864
Akron7d4cdd82016-08-17 21:39:45 +0200865 # Write file
Akron13d56622016-10-31 14:54:49 +0100866 if (my $return = $batch_file->process($dir => $filename)) {
Akron486f9ab2017-04-22 23:25:19 +0200867
Akron4c0cf312016-10-15 16:42:09 +0200868 # Delete temporary file
Akron13d56622016-10-31 14:54:49 +0100869 $pool->finish(
870 0,
Akronda3097e2017-04-23 19:53:57 +0200871 [
872 "Processed " . $filename . ($return == -1 ? " - already existing" : ''),
873 $temp,
874 $filename
875 ]
Akron13d56622016-10-31 14:54:49 +0100876 );
Akron7d4cdd82016-08-17 21:39:45 +0200877 }
878 else {
Akron4c0cf312016-10-15 16:42:09 +0200879 # Delete temporary file
880 $pool->finish(1, ["Unable to process " . $dir, $temp]);
Akron7d4cdd82016-08-17 21:39:45 +0200881 };
Akron941c1a62016-02-23 17:41:41 +0100882 }
Akron7d4cdd82016-08-17 21:39:45 +0200883
884 # Unable to extract
Akron941c1a62016-02-23 17:41:41 +0100885 else {
Akron4c0cf312016-10-15 16:42:09 +0200886 $pool->finish(1, ["Unable to extract " . $dirs[$i], $temp]);
Akron941c1a62016-02-23 17:41:41 +0100887 };
888 };
889 }
890
891 else {
892 print "Input is neither a directory nor an archive.\n\n";
893 };
894
895 $pool->wait_all_children;
896
Akron11c80302016-03-18 19:44:43 +0100897 # Delete cache file
898 unlink($cache_file) if $cache_delete;
899
Akronda3097e2017-04-23 19:53:57 +0200900 # Close tar filehandle
901 if ($to_tar && $tar_fh) {
902 $tar_archive->finish;
903 $tar_fh->close;
904 print "Wrote to tar archive.\n";
905 };
906
Akron63f20d42017-04-10 23:40:29 +0200907 print timestr(timediff(Benchmark->new, $t))."\n";
Akron941c1a62016-02-23 17:41:41 +0100908 print "Done.\n";
Akron81500102017-04-07 20:45:44 +0200909};
Akron941c1a62016-02-23 17:41:41 +0100910
Nils Diewald2db9ad02013-10-29 19:26:43 +0000911
Akron31a08cb2019-02-20 20:43:26 +0100912# For an archive, this will create the list
913# of all sigles to process
914sub set_sigle {
915 my $archive = shift;
916
917 my $prefix = 1;
918 my @dirs = ();
919
920 # No sigles given
921 unless (@sigle) {
922
923 # Get files
924 foreach ($archive->list_texts) {
925
926 push @dirs, $_;
927
928 # Split path information
929 ($prefix, my ($corpus, $doc, $text)) = $archive->split_path($_);
930
931 # TODO: Make this OS independent
932 push @sigle, join '/', $corpus, $doc, $text;
933 };
934 }
935
936 # Check sigle for doc sigles
937 else {
938 my @new_sigle;
939
940 my $prefix_check = 0;
941
942 # Iterate over all sigle
943 foreach (@sigle) {
944
945 # Sigle is a doc sigle
946 if ($_ =~ m!^(?:\.[/\\])?[^/\\]+?[/\\][^/\\]+?$!) {
947
948 print "$_ ...";
949 # Check if a prefix is needed
950 unless ($prefix_check) {
951
952 if ($prefix = $archive->check_prefix) {
953 print " with prefix ...";
954 };
955 $prefix_check = 1;
956 };
957
958 print "\n";
959
Akron31a08cb2019-02-20 20:43:26 +0100960 print '... ' . (
Akron955b75b2019-02-21 14:28:41 +0100961 $archive->extract_sigle([$_], $output, $sequential_extraction ? 1 : $jobs)
962 ? '' : 'not '
Akron31a08cb2019-02-20 20:43:26 +0100963 );
964 print "extracted.\n";
965 }
966
967 # Sigle is a text sigle
968 else {
969 push @new_sigle, $_;
970
971 unless ($prefix_check) {
972
973 if ($prefix = $archive->check_prefix) {
974 print " with prefix ...";
975 };
976 $prefix_check = 1;
977 };
978 };
979 };
980 @sigle = @new_sigle;
981 };
982
983 return $prefix;
984};
985
986
Akron63f20d42017-04-10 23:40:29 +0200987# Cleanup temporary extraction directory
988if ($extract_dir) {
989 my $objects = remove_tree($extract_dir, { safe => 1 });
Akronf8df2162020-08-07 15:03:39 +0200990 $log->info("Removed directory $extract_dir with $objects objects");
Akron63f20d42017-04-10 23:40:29 +0200991};
992
993
994print "\n";
995
Nils Diewald2db9ad02013-10-29 19:26:43 +0000996__END__
Akron941c1a62016-02-23 17:41:41 +0100997
998=pod
999
1000=encoding utf8
1001
1002=head1 NAME
1003
Akron42f48c12020-02-14 13:08:13 +01001004korapxml2krill - Merge KorAP-XML data and create Krill documents
Akron941c1a62016-02-23 17:41:41 +01001005
1006
1007=head1 SYNOPSIS
1008
Akrona76d8352016-10-27 16:27:32 +02001009 korapxml2krill [archive|extract] --input <directory|archive> [options]
Akron941c1a62016-02-23 17:41:41 +01001010
Akron2fd402b2016-10-27 21:26:48 +02001011
Akron941c1a62016-02-23 17:41:41 +01001012=head1 DESCRIPTION
1013
1014L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files
1015compatible with the L<Krill|https://github.com/KorAP/Krill> indexer.
Akron8f69d632020-01-15 16:58:11 +01001016The C<korapxml2krill> command line tool is a simple wrapper of this library.
Akron941c1a62016-02-23 17:41:41 +01001017
1018
1019=head1 INSTALLATION
1020
1021The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>.
1022
Akronaf386982016-10-12 00:33:25 +02001023 $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git
Akron941c1a62016-02-23 17:41:41 +01001024
Akronc13a1702016-03-15 19:33:14 +01001025In case everything went well, the C<korapxml2krill> tool will
Akronf7ad89e2016-03-16 18:22:47 +01001026be available on your command line immediately.
Akron6eff23b2018-09-24 10:31:20 +02001027Minimum requirement for L<KorAP::XML::Krill> is Perl 5.16.
Akrona93d51b2016-10-24 20:27:48 +02001028In addition to work with zip archives, the C<unzip> tool needs to be present.
Akron941c1a62016-02-23 17:41:41 +01001029
1030=head1 ARGUMENTS
1031
Akrona76d8352016-10-27 16:27:32 +02001032 $ korapxml2krill -z --input <directory> --output <filename>
1033
1034Without arguments, C<korapxml2krill> converts a directory of a single KorAP-XML document.
Akron2fd402b2016-10-27 21:26:48 +02001035It expects the input to point to the text level folder.
Akron7606afa2016-10-25 16:23:49 +02001036
Akron941c1a62016-02-23 17:41:41 +01001037=over 2
1038
1039=item B<archive>
1040
Akron081639e2017-04-21 19:01:39 +02001041 $ korapxml2krill archive -z --input <directory|archive> --output <directory|tar>
Akrona76d8352016-10-27 16:27:32 +02001042
Akron2fd402b2016-10-27 21:26:48 +02001043Converts an archive of KorAP-XML documents. It expects a directory
1044(pointing to the corpus level folder) or one or more zip files as input.
Akrone10ad322016-02-27 10:54:26 +01001045
1046=item B<extract>
1047
Akrona76d8352016-10-27 16:27:32 +02001048 $ korapxml2krill extract --input <archive> --output <directory> --sigle <SIGLE>
1049
1050Extracts KorAP-XML documents from a zip file.
Akron941c1a62016-02-23 17:41:41 +01001051
Akron63f20d42017-04-10 23:40:29 +02001052=item B<serial>
1053
1054 $ korapxml2krill serial -i <archive1> -i <archive2> -o <directory> -cfg <config-file>
1055
1056Convert archives sequentially. The inputs are not merged but treated
1057as they are (so they may be premerged or globs).
1058the C<--out> directory is treated as the base directory where subdirectories
Akron081639e2017-04-21 19:01:39 +02001059are created based on the archive name. In case the C<--to-tar> flag is given,
1060the output will be a tar file.
Akron63f20d42017-04-10 23:40:29 +02001061
1062
Akron941c1a62016-02-23 17:41:41 +01001063=back
1064
1065
1066=head1 OPTIONS
1067
1068=over 2
1069
Akrona76d8352016-10-27 16:27:32 +02001070=item B<--input|-i> <directory|zip file>
Akron941c1a62016-02-23 17:41:41 +01001071
Akrona76d8352016-10-27 16:27:32 +02001072Directory or zip file(s) of documents to convert.
Akron941c1a62016-02-23 17:41:41 +01001073
Akron7606afa2016-10-25 16:23:49 +02001074Without arguments, C<korapxml2krill> expects a folder of a single KorAP-XML
Akronf1a1de92016-11-02 17:32:12 +01001075document, while C<archive> expects a KorAP-XML corpus folder or a zip
1076file to batch process multiple files.
1077C<extract> expects zip files only.
Akron7606afa2016-10-25 16:23:49 +02001078
Akrona76d8352016-10-27 16:27:32 +02001079C<archive> supports multiple input zip files with the constraint,
Akron2cfe8092016-06-24 17:48:49 +02001080that the first archive listed contains all primary data files
1081and all meta data files.
Akron2cfe8092016-06-24 17:48:49 +02001082
Akron7606afa2016-10-25 16:23:49 +02001083 -i file/news.zip -i file/news.malt.zip -i "#file/news.tt.zip"
Akron2cfe8092016-06-24 17:48:49 +02001084
Akron821db3d2017-04-06 21:19:31 +02001085Input may also be defined using BSD glob wildcards.
1086
1087 -i 'file/news*.zip'
1088
1089The extended input array will be sorted in length order, so the shortest
1090path needs to contain all primary data files and all meta data files.
1091
Akron0c3e3752016-06-28 15:55:53 +02001092(The directory structure follows the base directory format,
1093that may include a C<.> root folder.
1094In this case further archives lacking a C<.> root folder
Akron7606afa2016-10-25 16:23:49 +02001095need to be passed with a hash sign in front of the archive's name.
1096This may require to quote the parameter.)
Akron2cfe8092016-06-24 17:48:49 +02001097
Akron7606afa2016-10-25 16:23:49 +02001098To support zip files, a version of C<unzip> needs to be installed that is
1099compatible with the archive file.
Akrona93d51b2016-10-24 20:27:48 +02001100
Akron7606afa2016-10-25 16:23:49 +02001101B<The root folder switch using the hash sign is experimental and
1102may vanish in future versions.>
Akron651cb8d2016-08-16 21:44:49 +02001103
Akronf73ffb62018-06-27 12:13:59 +02001104
Akron63f20d42017-04-10 23:40:29 +02001105=item B<--input-base|-ib> <directory>
1106
1107The base directory for inputs.
1108
1109
Akron941c1a62016-02-23 17:41:41 +01001110=item B<--output|-o> <directory|file>
1111
1112Output folder for archive processing or
1113document name for single output (optional),
Akronf7ad89e2016-03-16 18:22:47 +01001114writes to C<STDOUT> by default
1115(in case C<output> is not mandatory due to further options).
Akron941c1a62016-02-23 17:41:41 +01001116
1117=item B<--overwrite|-w>
1118
1119Overwrite files that already exist.
1120
Akronf73ffb62018-06-27 12:13:59 +02001121
Akron3741f8b2016-12-21 19:55:21 +01001122=item B<--token|-t> <foundry>#<file>
Akron941c1a62016-02-23 17:41:41 +01001123
1124Define the default tokenization by specifying
1125the name of the foundry and optionally the name
Akronc13a1702016-03-15 19:33:14 +01001126of the layer-file. Defaults to C<OpenNLP#tokens>.
Akronf1849aa2019-12-16 23:35:33 +01001127This will directly take the file instead of running
1128the layer implementation!
Akron941c1a62016-02-23 17:41:41 +01001129
Akron3741f8b2016-12-21 19:55:21 +01001130
1131=item B<--base-sentences|-bs> <foundry>#<layer>
1132
1133Define the layer for base sentences.
1134If given, this will be used instead of using C<Base#Sentences>.
Akronc29b8e12019-12-16 14:28:09 +01001135Currently C<DeReKo#Structure> and C<DGD#Structure> are the only additional
1136layers supported.
Akron3741f8b2016-12-21 19:55:21 +01001137
1138 Defaults to unset.
1139
1140
1141=item B<--base-paragraphs|-bp> <foundry>#<layer>
1142
1143Define the layer for base paragraphs.
1144If given, this will be used instead of using C<Base#Paragraphs>.
1145Currently C<DeReKo#Structure> is the only additional layer supported.
1146
1147 Defaults to unset.
1148
1149
Akron41ac10b2017-02-08 22:47:25 +01001150=item B<--base-pagebreaks|-bpb> <foundry>#<layer>
1151
1152Define the layer for base pagebreaks.
1153Currently C<DeReKo#Structure> is the only layer supported.
1154
1155 Defaults to unset.
1156
1157
Akron941c1a62016-02-23 17:41:41 +01001158=item B<--skip|-s> <foundry>[#<layer>]
1159
Akronf7ad89e2016-03-16 18:22:47 +01001160Skip specific annotations by specifying the foundry
1161(and optionally the layer with a C<#>-prefix),
1162e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>.
Akron941c1a62016-02-23 17:41:41 +01001163Can be set multiple times.
1164
Akronf73ffb62018-06-27 12:13:59 +02001165
Akronc13a1702016-03-15 19:33:14 +01001166=item B<--anno|-a> <foundry>#<layer>
Akron941c1a62016-02-23 17:41:41 +01001167
Akronf7ad89e2016-03-16 18:22:47 +01001168Convert specific annotations by specifying the foundry
1169(and optionally the layer with a C<#>-prefix),
1170e.g. C<Mate> or C<Mate#Morpho>.
1171Can be set multiple times.
Akron941c1a62016-02-23 17:41:41 +01001172
Akronf73ffb62018-06-27 12:13:59 +02001173
Akroned9baf02019-01-22 17:03:25 +01001174=item B<--non-word-tokens|-nwt>
1175
1176Tokenize non-word tokens like word tokens (defined as matching
1177C</[\d\w]/>). Useful to treat punctuations as tokens.
1178
1179 Defaults to unset.
1180
Akronf1849aa2019-12-16 23:35:33 +01001181
1182=item B<--non-verbal-tokens|-nvt>
1183
1184Tokenize non-verbal tokens marked as in the primary data as
1185the unicode symbol 'Black Vertical Rectangle' aka \x25ae.
1186
1187 Defaults to unset.
1188
1189
Akron941c1a62016-02-23 17:41:41 +01001190=item B<--jobs|-j>
1191
1192Define the number of concurrent jobs in seperated forks
Akronf7ad89e2016-03-16 18:22:47 +01001193for archive processing.
Akron11c80302016-03-18 19:44:43 +01001194Defaults to C<0> (everything runs in a single process).
Akron9ec88872017-04-12 16:29:06 +02001195
1196If C<sequential-extraction> is not set to false, this will
1197also apply to extraction.
1198
Akronc11f7982017-02-21 21:20:14 +01001199Pass -1, and the value will be set automatically to 5
1200times the number of available cores.
Akronf7ad89e2016-03-16 18:22:47 +01001201This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +01001202
Akronf73ffb62018-06-27 12:13:59 +02001203
Akron263274c2019-02-07 09:48:30 +01001204=item B<--koral|-k>
1205
1206Version of the output format. Supported versions are:
1207C<0> for legacy serialization, C<0.03> for serialization
1208with metadata fields as key-values on the root object,
1209C<0.4> for serialization with metadata fields as a list
1210of C<"@type":"koral:field"> objects.
1211
1212Currently defaults to C<0.03>.
1213
1214
Akron9ec88872017-04-12 16:29:06 +02001215=item B<--sequential-extraction|-se>
1216
1217Flag to indicate, if the C<jobs> value also applies to extraction.
1218Some systems may have problems with extracting multiple archives
1219to the same folder at the same time.
1220Can be flagged using C<--no-sequential-extraction> as well.
1221Defaults to C<false>.
1222
Akronf73ffb62018-06-27 12:13:59 +02001223
Akron35db6e32016-03-17 22:42:22 +01001224=item B<--meta|-m>
Akron941c1a62016-02-23 17:41:41 +01001225
Akron35db6e32016-03-17 22:42:22 +01001226Define the metadata parser to use. Defaults to C<I5>.
1227Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace.
1228This is I<experimental>.
Akron941c1a62016-02-23 17:41:41 +01001229
Akronf73ffb62018-06-27 12:13:59 +02001230
Akron941c1a62016-02-23 17:41:41 +01001231=item B<--gzip|-z>
1232
Akronf7ad89e2016-03-16 18:22:47 +01001233Compress the output.
1234Expects a defined C<output> file in single processing.
Akron941c1a62016-02-23 17:41:41 +01001235
Akronf73ffb62018-06-27 12:13:59 +02001236
Akron11c80302016-03-18 19:44:43 +01001237=item B<--cache|-c>
1238
1239File to mmap a cache (using L<Cache::FastMmap>).
1240Defaults to C<korapxml2krill.cache> in the calling directory.
1241
Akronf73ffb62018-06-27 12:13:59 +02001242
Akron11c80302016-03-18 19:44:43 +01001243=item B<--cache-size|-cs>
1244
1245Size of the cache. Defaults to C<50m>.
1246
Akronf73ffb62018-06-27 12:13:59 +02001247
Akron11c80302016-03-18 19:44:43 +01001248=item B<--cache-init|-ci>
1249
1250Initialize cache file.
1251Can be flagged using C<--no-cache-init> as well.
1252Defaults to C<true>.
1253
Akronf73ffb62018-06-27 12:13:59 +02001254
Akron11c80302016-03-18 19:44:43 +01001255=item B<--cache-delete|-cd>
1256
1257Delete cache file after processing.
1258Can be flagged using C<--no-cache-delete> as well.
1259Defaults to C<true>.
1260
Akronf73ffb62018-06-27 12:13:59 +02001261
Akron636aa112017-04-07 18:48:56 +02001262=item B<--config|-cfg>
1263
1264Configure the parameters of your call in a file
1265of key-value pairs with whitespace separator
1266
1267 overwrite 1
1268 token DeReKo#Structure
1269 ...
1270
1271Supported parameters are:
Akron63f20d42017-04-10 23:40:29 +02001272C<overwrite>, C<gzip>, C<jobs>, C<input-base>,
Akron636aa112017-04-07 18:48:56 +02001273C<token>, C<log>, C<cache>, C<cache-size>, C<cache-delete>, C<meta>,
Akron31a08cb2019-02-20 20:43:26 +01001274C<output>, C<koral>,
1275C<tempary-extract>, C<sequential-extraction>,
Akron9ec88872017-04-12 16:29:06 +02001276C<base-sentences>, C<base-paragraphs>,
1277C<base-pagebreaks>,
1278C<skip> (semicolon separated), C<sigle>
Akron636aa112017-04-07 18:48:56 +02001279(semicolon separated), C<anno> (semicolon separated).
1280
Akronf73ffb62018-06-27 12:13:59 +02001281Configuration parameters will always be overwritten by
1282passed parameters.
1283
1284
Akron81500102017-04-07 20:45:44 +02001285=item B<--temporary-extract|-te>
1286
1287Only valid for the C<archive> command.
1288
1289This will first extract all files into a
1290directory and then will archive.
1291If the directory is given as C<:temp:>,
1292a temporary directory is used.
1293This is especially useful to avoid
1294massive unzipping and potential
1295network latency.
Akron636aa112017-04-07 18:48:56 +02001296
Akronf73ffb62018-06-27 12:13:59 +02001297
Akronc93a0802019-07-11 15:48:34 +02001298=item B<--to-tar>
1299
1300Only valid for the C<archive> command.
1301
1302Writes the output into a tar archive.
1303
1304
Akrone10ad322016-02-27 10:54:26 +01001305=item B<--sigle|-sg>
1306
Akron20807582016-10-26 17:11:34 +02001307Extract the given texts.
Akrone10ad322016-02-27 10:54:26 +01001308Can be set multiple times.
Akronf7ad89e2016-03-16 18:22:47 +01001309I<Currently only supported on C<extract>.>
Akronb0c88db2016-06-29 16:33:18 +02001310Sigles have the structure C<Corpus>/C<Document>/C<Text>.
Akron20807582016-10-26 17:11:34 +02001311In case the C<Text> path is omitted, the whole document will be extracted.
Akron2fd402b2016-10-27 21:26:48 +02001312On the document level, the postfix wildcard C<*> is supported.
Akrone10ad322016-02-27 10:54:26 +01001313
Akronf73ffb62018-06-27 12:13:59 +02001314
Akron941c1a62016-02-23 17:41:41 +01001315=item B<--log|-l>
1316
1317The L<Log4perl> log level, defaults to C<ERROR>.
1318
Akronf73ffb62018-06-27 12:13:59 +02001319
Akron941c1a62016-02-23 17:41:41 +01001320=item B<--help|-h>
1321
Akron42f48c12020-02-14 13:08:13 +01001322Print help information.
Akron941c1a62016-02-23 17:41:41 +01001323
Akronf73ffb62018-06-27 12:13:59 +02001324
Akron941c1a62016-02-23 17:41:41 +01001325=item B<--version|-v>
1326
1327Print version information.
1328
1329=back
1330
Akronf73ffb62018-06-27 12:13:59 +02001331
Akronc13a1702016-03-15 19:33:14 +01001332=head1 ANNOTATION SUPPORT
1333
1334L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers
1335developed in the KorAP project that are part of the KorAP preprocessing pipeline.
1336The base foundry with paragraphs, sentences, and the text element are mandatory for
1337L<Krill|https://github.com/KorAP/Krill>.
1338
Akron821db3d2017-04-06 21:19:31 +02001339 Base
1340 #Paragraphs
1341 #Sentences
Akronc13a1702016-03-15 19:33:14 +01001342
Akron821db3d2017-04-06 21:19:31 +02001343 Connexor
1344 #Morpho
1345 #Phrase
1346 #Sentences
1347 #Syntax
Akronc13a1702016-03-15 19:33:14 +01001348
Akron821db3d2017-04-06 21:19:31 +02001349 CoreNLP
1350 #Constituency
1351 #Morpho
1352 #NamedEntities
1353 #Sentences
Akronc13a1702016-03-15 19:33:14 +01001354
Akronce125b62017-06-19 11:54:36 +02001355 CMC
1356 #Morpho
1357
Akron821db3d2017-04-06 21:19:31 +02001358 DeReKo
1359 #Structure
Akronc13a1702016-03-15 19:33:14 +01001360
Akron57510c12019-01-04 14:58:53 +01001361 DGD
1362 #Morpho
Akronc29b8e12019-12-16 14:28:09 +01001363 #Structure
Akron57510c12019-01-04 14:58:53 +01001364
Akron821db3d2017-04-06 21:19:31 +02001365 DRuKoLa
1366 #Morpho
Akronc13a1702016-03-15 19:33:14 +01001367
Akron821db3d2017-04-06 21:19:31 +02001368 Glemm
1369 #Morpho
Akronc13a1702016-03-15 19:33:14 +01001370
Akronea1aed52018-07-19 14:43:34 +02001371 HNC
1372 #Morpho
1373
Akron4c679192018-01-16 17:41:49 +01001374 LWC
1375 #Dependency
1376
Akron821db3d2017-04-06 21:19:31 +02001377 Malt
1378 #Dependency
Akronc13a1702016-03-15 19:33:14 +01001379
Akron821db3d2017-04-06 21:19:31 +02001380 MarMoT
1381 #Morpho
Akronc13a1702016-03-15 19:33:14 +01001382
Akron821db3d2017-04-06 21:19:31 +02001383 Mate
1384 #Dependency
1385 #Morpho
Akronc13a1702016-03-15 19:33:14 +01001386
Akron821db3d2017-04-06 21:19:31 +02001387 MDParser
1388 #Dependency
Akronc13a1702016-03-15 19:33:14 +01001389
Akron821db3d2017-04-06 21:19:31 +02001390 OpenNLP
1391 #Morpho
1392 #Sentences
Akronc13a1702016-03-15 19:33:14 +01001393
Akron07e24772020-04-23 14:00:54 +02001394 RWK
1395 #Morpho
1396 #Structure
1397
Akron821db3d2017-04-06 21:19:31 +02001398 Sgbr
1399 #Lemma
1400 #Morpho
Akronc13a1702016-03-15 19:33:14 +01001401
Akron7d5e6382019-08-08 16:36:27 +02001402 Talismane
1403 #Dependency
1404 #Morpho
1405
Akron821db3d2017-04-06 21:19:31 +02001406 TreeTagger
1407 #Morpho
1408 #Sentences
Akronc13a1702016-03-15 19:33:14 +01001409
Akron821db3d2017-04-06 21:19:31 +02001410 XIP
1411 #Constituency
1412 #Morpho
1413 #Sentences
Akronc13a1702016-03-15 19:33:14 +01001414
Akronc13a1702016-03-15 19:33:14 +01001415
1416More importers are in preparation.
1417New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace.
1418See the built-in annotation importers as examples.
1419
Akronf73ffb62018-06-27 12:13:59 +02001420
Akron8f69d632020-01-15 16:58:11 +01001421=head1 About KorAP-XML
1422
1423KorAP-XML (Bański et al. 2012) is an implementation of the KorAP
1424data model (Bański et al. 2013), where text data are stored physically
1425separated from their interpretations (i.e. annotations).
1426A text document in KorAP-XML therefore consists of several files
1427containing primary data, metadata and annotations.
1428
1429The structure of a single KorAP-XML document can be as follows:
1430
1431 - data.xml
1432 - header.xml
1433 + base
1434 - tokens.xml
1435 - ...
1436 + struct
1437 - structure.xml
1438 - ...
1439 + corenlp
1440 - morpho.xml
1441 - constituency.xml
1442 - ...
1443 + tree_tagger
1444 - morpho.xml
1445 - ...
1446 - ...
1447
1448The C<data.xml> contains the primary data, the C<header.xml> contains
1449the metadata, and the annotation layers are stored in subfolders
1450like C<base>, C<struct> or C<corenlp>
1451(so-called "foundries"; Bański et al. 2013).
1452
1453Metadata is available in the TEI-P5 variant I5
Akrond4c5c102020-02-11 11:47:59 +01001454(Lüngen and Sperberg-McQueen 2012). See the documentation in
1455L<KorAP::XML::Meta::I5> for translatable fields.
1456
1457Annotations correspond to a variant of the TEI-P5 feature structures
1458(TEI Consortium; Lee et al. 2004).
Akron72bc5222020-02-06 16:00:13 +01001459Annotation feature structures refer to character sequences of the primary text
1460inside the C<text> element of the C<data.xml>.
1461A single annotation containing the lemma of a token can have the following structure:
1462
1463 <span from="0" to="3">
1464 <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
1465 <f name="lex">
1466 <fs>
1467 <f name="lemma">zum</f>
1468 </fs>
1469 </f>
1470 </fs>
1471 </span>
1472
1473The C<from> and C<to> attributes are refering to the character span
1474in the primary text.
1475Depending on the kind of annotation (e.g. token-based, span-based, relation-based),
1476the structure may vary. See L<KorAP::XML::Annotation::*> for various
1477annotation preprocessors.
Akron8f69d632020-01-15 16:58:11 +01001478
1479Multiple KorAP-XML documents are organized on three levels following
1480the "IDS Textmodell" (Lüngen and Sperberg-McQueen 2012):
1481corpus E<gt> document E<gt> text. On each level metadata information
1482can be stored, that C<korapxml2krill> will merge to a single metadata
1483object per text. A corpus is therefore structured as follows:
1484
1485 + <corpus>
1486 - header.xml
1487 + <document>
1488 - header.xml
1489 + <text>
1490 - data.xml
1491 - header.xml
1492 - ...
1493 - ...
1494
1495A single text can be identified by the concatenation of
1496the corpus identifier, the document identifier and the text identifier.
1497This identifier is called the text sigle
1498(e.g. a text with the identifier C<18486> in the document C<060> in the
1499corpus C<WPD17> has the text sigle C<WPD17/060/18486>, see C<--sigle>).
1500
1501These corpora are often stored in zip files, with which C<korapxml2krill>
1502can deal with. Corpora may also be split in multiple zip archives
1503(e.g. one zip file per foundry), which is also supported (see C<--input>).
1504
1505Examples for KorAP-XML files are included in L<KorAP::XML::Krill>
1506in form of a test suite.
1507The resulting JSON format merges all annotation layers
1508based on a single token stream.
1509
1510=head2 References
1511
1512Piotr Bański, Cyril Belica, Helge Krause, Marc Kupietz, Carsten Schnober, Oliver Schonefeld, and Andreas Witt (2011):
1513KorAP data model: first approximation, December.
1514
1515Piotr Bański, Peter M. Fischer, Elena Frick, Erik Ketzan, Marc Kupietz, Carsten Schnober, Oliver Schonefeld and Andreas Witt (2012):
1516"The New IDS Corpus Analysis Platform: Challenges and Prospects",
1517Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC 2012).
1518L<PDF|http://www.lrec-conf.org/proceedings/lrec2012/pdf/789_Paper.pdf>
1519
1520Piotr Bański, Elena Frick, Michael Hanl, Marc Kupietz, Carsten Schnober and Andreas Witt (2013):
1521"Robust corpus architecture: a new look at virtual collections and data access",
1522Corpus Linguistics 2013. Abstract Book. Lancaster: UCREL, pp. 23-25.
1523L<PDF|https://ids-pub.bsz-bw.de/frontdoor/deliver/index/docId/4485/file/Ba%c5%84ski_Frick_Hanl_Robust_corpus_architecture_2013.pdf>
1524
1525Kiyong Lee, Lou Burnard, Laurent Romary, Eric de la Clergerie, Thierry Declerck,
1526Syd Bauman, Harry Bunt, Lionel Clément, Tomaz Erjavec, Azim Roussanaly and Claude Roux (2004):
1527"Towards an international standard on featurestructure representation",
1528Proceedings of the fourth International Conference on Language Resources and Evaluation (LREC 2004),
1529pp. 373-376.
1530L<PDF|http://www.lrec-conf.org/proceedings/lrec2004/pdf/687.pdf>
1531
1532Harald Lüngen and C. M. Sperberg-McQueen (2012):
1533"A TEI P5 Document Grammar for the IDS Text Model",
1534Journal of the Text Encoding Initiative, Issue 3 | November 2012.
1535L<PDF|https://journals.openedition.org/jtei/pdf/508>
1536
1537TEI Consortium, eds:
1538"Feature Structures",
1539Guidelines for Electronic Text Encoding and Interchange.
1540L<html|https://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html>
1541
Akron941c1a62016-02-23 17:41:41 +01001542=head1 AVAILABILITY
1543
1544 https://github.com/KorAP/KorAP-XML-Krill
1545
1546
1547=head1 COPYRIGHT AND LICENSE
1548
Akron8f69d632020-01-15 16:58:11 +01001549Copyright (C) 2015-2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
Akronf7ad89e2016-03-16 18:22:47 +01001550
Akron8f69d632020-01-15 16:58:11 +01001551Author: L<Nils Diewald|https://nils-diewald.de/>
Akron81500102017-04-07 20:45:44 +02001552
Akrona76d8352016-10-27 16:27:32 +02001553Contributor: Eliza Margaretha
Akron941c1a62016-02-23 17:41:41 +01001554
1555L<KorAP::XML::Krill> is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
1556Corpus Analysis Platform at the
Akron94262ce2019-02-28 21:42:43 +01001557L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
Akron941c1a62016-02-23 17:41:41 +01001558member of the
Akronf1849aa2019-12-16 23:35:33 +01001559L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
Akron941c1a62016-02-23 17:41:41 +01001560
1561This program is free software published under the
1562L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-Krill/master/LICENSE>.
1563
1564=cut