blob: d1bb176d3bdc05957e350d2bd96ce3b35b71b6af [file] [log] [blame]
Akron9cb13942020-02-14 07:39:54 +01001#!/usr/bin/env perl
Peter Hardersd892a582020-02-12 15:45:22 +01002use strict;
3use warnings;
Peter Harders6f526a32020-06-29 21:44:41 +02004
5use Pod::Usage;
6use Getopt::Long qw(GetOptions :config no_auto_abbrev);
7
8use File::Basename qw(dirname);
Peter Hardersd892a582020-02-12 15:45:22 +01009
10use open qw(:std :utf8); # assume utf-8 encoding
Peter Harders1c5ce152020-07-22 18:02:50 +020011use Encode qw(encode decode);
Peter Hardersd892a582020-02-12 15:45:22 +010012
Peter Hardersd892a582020-02-12 15:45:22 +010013use XML::CompactTree::XS;
14use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010015
Akron4f67cd42020-07-02 12:27:58 +020016use FindBin;
17BEGIN {
18 unshift @INC, "$FindBin::Bin/../lib";
19};
20
Akron0465e9e2020-07-27 15:55:21 +020021use KorAP::XML::TEI qw!remove_xml_comments escape_xml!;
Akron8b511f92020-07-09 17:28:08 +020022use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020023use KorAP::XML::TEI::Tokenizer::Conservative;
24use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron85717512020-07-08 11:19:19 +020025use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020026use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010027
Peter Harders1c5ce152020-07-22 18:02:50 +020028
Akrond949e182020-02-14 12:23:57 +010029our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020030
Akrond949e182020-02-14 12:23:57 +010031our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
32
Peter Hardersd892a582020-02-12 15:45:22 +010033
Peter Harders6f526a32020-06-29 21:44:41 +020034# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010035GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020036 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
37 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020038 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Peter Hardersf9c51242020-07-21 02:37:44 +020039 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron8b511f92020-07-09 17:28:08 +020040 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010041 pod2usage(
42 -verbose => 99,
43 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
44 -msg => $VERSION_MSG,
45 -output => '-'
46 )
47 },
48 'version|v' => sub {
49 pod2usage(
50 -verbose => 0,
51 -msg => $VERSION_MSG,
52 -output => '-'
53 )
54 }
Peter Hardersd892a582020-02-12 15:45:22 +010055);
56
Peter Harders6f526a32020-06-29 21:44:41 +020057#
58# ~~~ parameter (mandatory) ~~~
59#
Peter Harders6f526a32020-06-29 21:44:41 +020060my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
61 # optional
62my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
63 # optional
64my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
65 # mandatory
66my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
67
68#
69# ~~~ constants ~~~
70#
Peter Hardersd892a582020-02-12 15:45:22 +010071
Peter Harders41c35622020-07-12 01:16:22 +020072## extern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020073my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0;
Akron8b511f92020-07-09 17:28:08 +020074 # TODO:
75 # Read tokenizer call from configuration file.
76 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
77 my $ext_tok;
78 if ($tokenizer_call) {
79 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
80 };
Peter Harders41c35622020-07-12 01:16:22 +020081 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020082##
83
Akron8b511f92020-07-09 17:28:08 +020084## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020085my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +020086 my $_tok_file_con = "tokens_conservative.xml";
87 my $_tok_file_agg = "tokens_aggressive.xml";
88 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
89 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +020090##
91
92my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +020093
Peter Harders6f526a32020-06-29 21:44:41 +020094my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
95my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
96 # (see also manpage of XML::CompactTree::XS)
97
98my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
99my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
100my $_structure_dir = "struct"; # name of directory containing the $_structure_file
101my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
102 # (= their names and byte offsets in $_data)
103## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
104my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
105my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
106my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
107 # - evtl. with additional inline annotations
108my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
109
110## TODO: optional
111# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200112my $_INLINE_ANNOT = $ENV{KORAPXMLTEI_INLINE}?1:0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
Peter Harders6f526a32020-06-29 21:44:41 +0200113my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
114my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
115 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
116 # - which means, that the POS information can be followed by an optional blank with additional
117 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
118my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
119my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
120my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
121##
122
123
124#
125# ~~~ variables ~~~
126#
127
Akron85717512020-07-08 11:19:19 +0200128# Initialize zipper
129my $zipper = KorAP::XML::TEI::Zipper->new;
Peter Harders6f526a32020-06-29 21:44:41 +0200130my $input_fh; # input file handle (default: stdin)
131
132my $buf_in; # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
133my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
134
135my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200136
137my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
138
Akronf57ed812020-07-27 10:37:52 +0200139my ( $data_fl );
Peter Harders6f526a32020-06-29 21:44:41 +0200140
Akronf57ed812020-07-27 10:37:52 +0200141my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200142
Peter Harders6f526a32020-06-29 21:44:41 +0200143
144my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
145 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
146
147my @tokens; # list of arrays, where each array represents a $_TOKENS_TAG from the input document
148 # - the input of this array is written in func. 'write_tokens' into the file '$_tokens_file'
149
150my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures' and 'write_tokens'
151
152my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
153 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
154
155# these are only used inside recursive function 'retr_info'
156my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
157 $e, # element from $tree_data
158 $n, # tag name of actual processed element $e
159 $rl, # recursion level
160 $dl, # actual length of string $data
161 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
162 # represents the actual processed element from @structures
163 @oti2, # analogously to @oti, but with reference to array @tokens
164 $inside_tokens_tag, # flag is set, when inside $_TOKENS_TAG
165 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
166 $add_one, # ...
167 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200168 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
169 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200170 # (means: 'from-index - 1' is a key in %ws).
171 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
172
173my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
174
175my ( $i, $c ); # index variables used in loops
176
Peter Harders6f526a32020-06-29 21:44:41 +0200177
178#
179# ~~~ main ~~~
180#
181
182# ~ initializations ~
183
184($_XCT_LN)?($_IDX=5):($_IDX=4);
185
Akronf57ed812020-07-27 10:37:52 +0200186$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200187
188$inside_tokens_tag = -1;
189
190$fval = $fval2 = 0;
191
192$_root_dir .= '/'; # base dir must always end with a slash
193$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
194
Akronf57ed812020-07-27 10:37:52 +0200195$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
196$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
197$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
Peter Hardersd892a582020-02-12 15:45:22 +0100198
199$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
200$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
201$data_prfx1 .= "<raw_text docid=\"";
202$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200203## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100204$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200205##
Peter Hardersd892a582020-02-12 15:45:22 +0100206$data_prfx2 .= " <text>";
207$data_sfx = "</text>\n</raw_text>";
208
Peter Hardersd892a582020-02-12 15:45:22 +0100209
Peter Harders6f526a32020-06-29 21:44:41 +0200210# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200211main();
Peter Hardersd892a582020-02-12 15:45:22 +0100212
Peter Hardersd892a582020-02-12 15:45:22 +0100213
Peter Harders6f526a32020-06-29 21:44:41 +0200214#
215# ~~~ subs ~~~
216#
Peter Hardersd892a582020-02-12 15:45:22 +0100217
Peter Hardersd892a582020-02-12 15:45:22 +0100218
Peter Harders41c35622020-07-12 01:16:22 +0200219sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100220
Peter Harders6f526a32020-06-29 21:44:41 +0200221 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100222
Peter Harders41c35622020-07-12 01:16:22 +0200223 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200224
225 $input_fh = *STDIN; # input file handle (default: stdin)
226
Akron85717512020-07-08 11:19:19 +0200227 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200228
Akronf57ed812020-07-27 10:37:52 +0200229 $buf_in = $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200230
231
232 if ( $input_fname ne '' ){
233
234 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
235
236 }
237
238
Peter Harders41c35622020-07-12 01:16:22 +0200239 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200240 # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
Peter Harders1c5ce152020-07-22 18:02:50 +0200241 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
242 # see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data.
Peter Harders90157342020-07-01 21:05:14 +0200243 binmode $input_fh;
244
245
Peter Harders6f526a32020-06-29 21:44:41 +0200246 # ~ loop (reading input document) ~
247
248 while ( <$input_fh> ){
249
Peter Harders6f526a32020-06-29 21:44:41 +0200250 # TODO: yet not tested fo big amounts of data
251 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron95bc98a2020-07-11 12:00:12 +0200252 remove_xml_comments( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200253
254 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
255
256
257 # ~ end of text body ~
258
259
Akron8b511f92020-07-09 17:28:08 +0200260 # write data.xml, structure.xml and evtl. morpho.xml and/or tokenization files (s.a.: $_tok_file_ext, $_tok_file_con, $_tok_file_agg)
Peter Harders6f526a32020-06-29 21:44:41 +0200261
262 $pfx = $1; $sfx = $2;
263
Akrone19aa3e2020-07-27 11:41:27 +0200264 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200265 ." contains additional information ... => Aborting\n\tline=$_"
266 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
267
268 if ( $dir ne "" ){
269
Peter Harders6f526a32020-06-29 21:44:41 +0200270 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200271
Peter Harders41c35622020-07-12 01:16:22 +0200272 # ~ whitespace handling ~
273 #
274 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
275 # (see function 'retr_info()').
276 #
277 # Definition of significant and insignificant whitespace
278 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
279 #
280 # Significant whitespace is part of the document content and should be preserved.
281 # Insignificant whitespace is used when editing XML documents for readability.
282 # These whitespaces are typically not intended for inclusion in the delivery of the document.
283 #
Peter Harders6f526a32020-06-29 21:44:41 +0200284 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
285 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
286 } else {
287 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
288 }
289
290 @structures = (); @oti = ();
291
292 if ( $_TOKENS_PROC ){
293 @tokens = (); @oti2 = ()
294 }
295
296 $dl = $rl = 0;
297
298 # ~ whitespace related issue ~
299 $add_one = 0;
300 %ws = ();
301
302
303 # ~ recursion ~
304
305 retr_info( \$tree_data->[2] ); # parse input data
306
307 $rl--;
308
309
310 # ~ write data.xml ~
311
Peter Harders41c35622020-07-12 01:16:22 +0200312 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
313 # (...elsif ( $data_fl )....)
Peter Harders6f526a32020-06-29 21:44:41 +0200314 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
Peter Harders41c35622020-07-12 01:16:22 +0200315 #
Peter Harders6f526a32020-06-29 21:44:41 +0200316
Peter Harders6f526a32020-06-29 21:44:41 +0200317
Akronedee6e52020-07-27 14:15:11 +0200318 # ~ tokenization ~
319
Akron8b511f92020-07-09 17:28:08 +0200320 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200321
Akronedee6e52020-07-27 14:15:11 +0200322 $ext_tok->tokenize($data)->to_zip(
323 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
324 $text_id_esc
325 );
Peter Hardersb1227172020-07-21 02:12:10 +0200326
Peter Harders42e18a62020-07-21 02:43:26 +0200327 }
328
329 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200330
Akronedee6e52020-07-27 14:15:11 +0200331 # Tokenize and output
332 $cons_tok->tokenize($data)->to_zip(
333 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
334 $text_id_esc
335 );
336
337 $aggr_tok->tokenize($data)->to_zip(
338 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
339 $text_id_esc
340 );
341
342 $aggr_tok->reset;
343 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200344 }
Akron8b511f92020-07-09 17:28:08 +0200345
Akron0465e9e2020-07-27 15:55:21 +0200346 # Encode and escape data
347 $data = escape_xml(encode( "UTF-8", $data ));
348 # note: the index still refers to the 'single character'-versions,
349 # which are counted as 1 (search for '&amp;' in data.xml and see
350 # corresponding indices in $_tokens_file)
351
Peter Harders6f526a32020-06-29 21:44:41 +0200352 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
353
Akron85717512020-07-08 11:19:19 +0200354 $zipper->new_stream("$_root_dir$dir/$_data_file")
355 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200356
357 # ~ write structures ~
358
359 write_structures() if @structures;
360
361
362 # ~ write tokens ~
363
364 write_tokens() if $_TOKENS_PROC && @tokens;
365
Peter Hardersb1227172020-07-21 02:12:10 +0200366 #print STDERR "$0: write_tokenization(): DONE\n";
367
Peter Harders6f526a32020-06-29 21:44:41 +0200368 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
369
370 } else { # $dir eq ""
371
372 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
Akronf57ed812020-07-27 10:37:52 +0200373 # print STDERR "WARNING ($0): main(): text header=$header_txt\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200374 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100375 }
376
Peter Harders6f526a32020-06-29 21:44:41 +0200377 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100378
Peter Hardersd892a582020-02-12 15:45:22 +0100379
Peter Harders6f526a32020-06-29 21:44:41 +0200380 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100381
Peter Hardersd892a582020-02-12 15:45:22 +0100382
Peter Harders6f526a32020-06-29 21:44:41 +0200383 #print STDERR "inside text body (\$data_fl set)\n";
384
385 # ~ whitespace handling ~
386
Peter Harders41c35622020-07-12 01:16:22 +0200387 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
388 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100389 #
Peter Harders41c35622020-07-12 01:16:22 +0200390 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
391 # example further down and notes on 'Input restrictions' in the manpage).
392 #
393 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
394 #
395 # TODO: Maybe it's best, to keep the stripping of whitespace and to just remove the if-clause and to insert a blank by default (with possibly
396 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
397 #
398 # Examples (how primary text with linebreaks would be converted by below code):
399 #
400 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
401 # '...<w>,</w>\n<w>this</w>\n<w>is</w>\n<w>it</w>\n<w>!</w>...' -> '<w>,<w> <w>this</w> <w>is</w> <w>it</w> <w>!</w>'.
Peter Hardersd892a582020-02-12 15:45:22 +0100402
Peter Harders41c35622020-07-12 01:16:22 +0200403 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
404
405 ### NOTE: this is only relevant, if a text consists of more than one line
406 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
407 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
Peter Harders6f526a32020-06-29 21:44:41 +0200408 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100409
Peter Harders41c35622020-07-12 01:16:22 +0200410 # NOTE: not stringent ('...' stands for text):
411 #
412 # beg1............................end1 => no blank before 'beg1'
413 # beg2....<pb/>...................end2 => no blank before 'beg2'
414 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
415 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
416 #
417 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
418 # ^
419 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100420
Peter Harders41c35622020-07-12 01:16:22 +0200421 $tl++; # counter for text lines
422
423 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100424 }
Peter Harders41c35622020-07-12 01:16:22 +0200425 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100426
Peter Harders6f526a32020-06-29 21:44:41 +0200427 # add line to buffer
428 $buf_in .= $_;
429
Peter Harders6f526a32020-06-29 21:44:41 +0200430 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
431
Peter Harders6f526a32020-06-29 21:44:41 +0200432 # ~ start of text body ~
433
Peter Harders6f526a32020-06-29 21:44:41 +0200434 #print STDERR "inside text body\n";
435
436 $pfx = $1; $sfx = $2;
437
438 $data_fl = 1;
439
Akrone19aa3e2020-07-27 11:41:27 +0200440 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200441 ." contains additional information ... => Aborting\n\tline=$_"
442 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
443
Akronf57ed812020-07-27 10:37:52 +0200444 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200445
Akronf57ed812020-07-27 10:37:52 +0200446 # ~ start of header ~
447 $pfx = $1;
448 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200449
Akrone19aa3e2020-07-27 11:41:27 +0200450 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200451 ." is not in expected format ... => Aborting\n\tline=$_"
452 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100453
Akronf57ed812020-07-27 10:37:52 +0200454 # Parse header
455 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
456
457 # Header was parseable
458 if ($header) {
459
460 # Write header to zip
461 my $file = $_root_dir . $header->dir . '/' . $_header_file;
462
463 print STDERR "DEBUG ($0): Writing file $file\n" if $_DEBUG;
464
465 $header->to_zip($zipper->new_stream($file));
466
467 # Header is for text level
468 if ($header->type eq 'text') {
469
470 # Remember dir and sigles
471 $dir = $header->dir;
472 $text_id = $header->id;
473 $text_id_esc = $header->id_esc;
474
475 # log output for seeing progression
Peter Harders1c5ce152020-07-22 18:02:50 +0200476 print STDERR "$0: main(): text_id=".decode("UTF-8", $text_id )."\n";
Akronf57ed812020-07-27 10:37:52 +0200477
478 $tl = 0; # reset (needed for ~ whitespace handling ~)
479 };
480 }
481 }
Peter Harders6f526a32020-06-29 21:44:41 +0200482 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100483
Akron85717512020-07-08 11:19:19 +0200484 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200485
Akron8b511f92020-07-09 17:28:08 +0200486 if( $_GEN_TOK_EXT ){
487 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100488 }
Peter Hardersd892a582020-02-12 15:45:22 +0100489
Peter Harders41c35622020-07-12 01:16:22 +0200490} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100491
Peter Hardersd892a582020-02-12 15:45:22 +0100492
Peter Harders41c35622020-07-12 01:16:22 +0200493sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100494
Peter Harders41c35622020-07-12 01:16:22 +0200495 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200496 #
Peter Harders41c35622020-07-12 01:16:22 +0200497 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200498 #
Peter Harders41c35622020-07-12 01:16:22 +0200499 # Print out name of 'node2' for the above example:
500 #
501 # echo '<node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>' | perl -e 'use XML::CompactTree::XS; use XML::LibXML::Reader; $reader = XML::LibXML::Reader->new(IO => STDIN); $data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_LINE_NUMBERS ); print "\x27".$data->[2]->[0]->[5]->[1]->[1]."\x27\n"'
502 #
503 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200504 #
505 # [ 0: XML_READER_TYPE_DOCUMENT,
506 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200507 # 2: [ 0: [ 0: XML_READER_TYPE_ELEMENT <- start recursion with array '$data->[2]' (see main(): retr_info( \$tree_data->[2] ))
Peter Harders6f526a32020-06-29 21:44:41 +0200508 # 1: 'node'
509 # 2: ?
510 # 3: HASH (attributes)
511 # 4: 1 (line number)
512 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
513 # 1: 'node1'
514 # 2: ?
515 # 3: undefined (no attributes)
516 # 4: 1 (line number)
517 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
518 # 1: 'some '
519 # ]
520 # 1: [ 0: XML_READER_TYPE_ELEMENT
521 # 1: 'n'
522 # 2: ?
523 # 3: undefined (no attributes)
524 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200525 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200526 # ]
527 # 2: [ 0: XML_READER_TYPE_TEXT
528 # 1: ' text'
529 # ]
530 # ]
531 # ]
532 # 1: [ 0: XML_READER_TYPE_ELEMENT
533 # 1: 'node2'
534 # 2: ?
535 # 3: undefined (not attributes)
536 # 4: 1 (line number)
537 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
538 # 1: 'more-text'
539 # ]
540 # ]
541 # ]
542 # ]
543 # ]
544 # ]
545 # ]
546 #
547 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
548 #
549 # ref($data->[2]) == ARRAY (with 1 element for 'node')
550 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
551 #
552 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
553 # $data->[2]->[0]->[1] == 'node'
554 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
555 # $data->[2]->[0]->[4] == 1 (line number)
556 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200557 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200558 #
559 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
560 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
561 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
562 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
563 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
564 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
565 #
566 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
567 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
568 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
569 #
570 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
571 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
572 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
573 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
574 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200575 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200576 #
577 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
578 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
579 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
580 #
581 #
582 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
583 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
584 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100585
Peter Harders41c35622020-07-12 01:16:22 +0200586
Peter Harders6f526a32020-06-29 21:44:41 +0200587 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100588
Peter Hardersd892a582020-02-12 15:45:22 +0100589
Peter Harders6f526a32020-06-29 21:44:41 +0200590 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100591
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Harders41c35622020-07-12 01:16:22 +0200593 if ( $e->[0] == XML_READER_TYPE_ELEMENT ){ # element-node (see 'NODE TYPES' in manpage of XML::LibXML::Reader)
Peter Hardersd892a582020-02-12 15:45:22 +0100594
Peter Hardersd892a582020-02-12 15:45:22 +0100595
Peter Harders6f526a32020-06-29 21:44:41 +0200596 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200597 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200598 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100599
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Harders6f526a32020-06-29 21:44:41 +0200601 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
602 # update @oti (open tags indizes) with @structures highest index (= $#structures); e.g.: @a=(1,2,3) => $#a = 2
Peter Hardersd892a582020-02-12 15:45:22 +0100603
Peter Harders6f526a32020-06-29 21:44:41 +0200604 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100605
Peter Harders6f526a32020-06-29 21:44:41 +0200606 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100607
Peter Hardersd892a582020-02-12 15:45:22 +0100608
Peter Harders6f526a32020-06-29 21:44:41 +0200609 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100610
Peter Harders6f526a32020-06-29 21:44:41 +0200611 my @array;
612 push @array, $n;
613 push @structures, \@array;
614 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100615
Peter Hardersd892a582020-02-12 15:45:22 +0100616
Peter Harders6f526a32020-06-29 21:44:41 +0200617 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100618
Peter Harders6f526a32020-06-29 21:44:41 +0200619 $inside_tokens_tag = $rl if $_TOKENS_PROC && $n eq $_TOKENS_TAG; # wether to push entry also into @tokens array
Peter Hardersd892a582020-02-12 15:45:22 +0100620
Peter Harders6f526a32020-06-29 21:44:41 +0200621 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100622
Peter Harders6f526a32020-06-29 21:44:41 +0200623 my @array2;
624 push @array2, $n;
625 push @tokens, \@array2;
626 push @oti2, $#tokens;
627 }
Peter Hardersd892a582020-02-12 15:45:22 +0100628
Peter Hardersd892a582020-02-12 15:45:22 +0100629
Peter Harders6f526a32020-06-29 21:44:41 +0200630 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100631
Peter Harders6f526a32020-06-29 21:44:41 +0200632 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100633
Peter Harders6f526a32020-06-29 21:44:41 +0200634 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
635 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
636 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100637
Peter Harders6f526a32020-06-29 21:44:41 +0200638 # '$c' references the 'key' and '$c+1' the 'value'
639 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100640
Peter Harders6f526a32020-06-29 21:44:41 +0200641 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100642
Peter Harders6f526a32020-06-29 21:44:41 +0200643 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
644 }
645
646 }
647 }
648
649
650 # ~ index 'from' ~
651
652 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
653
Peter Harders41c35622020-07-12 01:16:22 +0200654 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200655
656 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
657
658 push @{$tokens[$#tokens]}, ( $dl + $add_one );
659 }
660
661
662 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200663 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200664 #~~~~
665
666
667 # ~~ RECURSION ~~
668
Peter Harders41c35622020-07-12 01:16:22 +0200669 if ( defined $e->[$_IDX] ){ # do no recursion, if $e->[$_IDX] is not defined (because we have no array of child-nodes, e.g.: <back/>)
Peter Harders6f526a32020-06-29 21:44:41 +0200670
Peter Harders41c35622020-07-12 01:16:22 +0200671 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200672
673 $rl--; # return from recursion
674 }
675
676
677 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200678 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200679 #~~~~~
680
681
682 # ~ handle structures ~
683
684 {
685 my $ix = pop @oti; # index of just closed tag
686
687 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
688
689 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
690
691 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
692
Peter Harders41c35622020-07-12 01:16:22 +0200693 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200694
Peter Harders41c35622020-07-12 01:16:22 +0200695 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200696 }
697
698 # in case this fails, check input
699 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
700 ." than to-value ($dl) => please check. aborting ...\n"
701 if ( $fval - 1 ) > $dl;
702
Peter Harders41c35622020-07-12 01:16:22 +0200703 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200704 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
705 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $dl;
Peter Harders41c35622020-07-12 01:16:22 +0200706 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200707 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
708
709 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
710
711 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
712 }
713
714
715 # ~ handle tokens ~
716
717
718 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
719
720 my $ix = pop @oti2;
721
722 my $aix = $#{$tokens[$ix]};
723
724 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
725
726 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
727
Peter Harders41c35622020-07-12 01:16:22 +0200728 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200729
Peter Harders41c35622020-07-12 01:16:22 +0200730 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200731 }
732
733 # in case this fails, check input
734 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
735 ." than to-value ($dl) => please check. aborting ...\n"
736 if ( $fval2 - 1 ) > $dl;
737
Peter Harders41c35622020-07-12 01:16:22 +0200738 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200739 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
740 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval2 - 1) >= $dl;
Peter Harders41c35622020-07-12 01:16:22 +0200741 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200742 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
743
744 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
745
746 $inside_tokens_tag = -1; # reset
747 }
748
749 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100750 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200751 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
752 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100753
754
Peter Harders41c35622020-07-12 01:16:22 +0200755 #~~~~
756 # until here: tag-node (closing)
757 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100758
759
Peter Harders41c35622020-07-12 01:16:22 +0200760 #~~~~~
761 # from here: text- and whitespace-nodes
762 #~~~~~
763
764 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
765 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200766 #
Peter Harders41c35622020-07-12 01:16:22 +0200767 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
768 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
769 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200770 #
Peter Harders41c35622020-07-12 01:16:22 +0200771 # echo '<node a="v"><node1>some <n/> text</node1> <node2>more-text</node2></node>' | perl -e 'use XML::CompactTree::XS; use XML::LibXML::Reader; $reader = XML::LibXML::Reader->new(IO => STDIN); $data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_LINE_NUMBERS ); print "node=\x27".$data->[2]->[0]->[5]->[1]->[1]."\x27, type=".$data->[2]->[0]->[5]->[1]->[0]."\n"'
Peter Hardersd892a582020-02-12 15:45:22 +0100772
Peter Harders6f526a32020-06-29 21:44:41 +0200773 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100774
Peter Harders41c35622020-07-12 01:16:22 +0200775 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200776 #
Peter Harders41c35622020-07-12 01:16:22 +0200777 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200778 #
779 # Two text-nodes should normally be separated by a blank. In the above example, that would be the 2 text-nodes
Peter Harders41c35622020-07-12 01:16:22 +0200780 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200781 #
Peter Harders41c35622020-07-12 01:16:22 +0200782 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
783 # it's from-index gets set to the correct start-index of '1792' (and not to the start-index of the whitespace-node ' ').
Peter Harders6f526a32020-06-29 21:44:41 +0200784 #
Peter Harders41c35622020-07-12 01:16:22 +0200785 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
786 # enables a way, to check, if this really _was_ the case for the last 2 'non-tag'-nodes, when closing a tag:
Peter Harders6f526a32020-06-29 21:44:41 +0200787 #
Peter Harders41c35622020-07-12 01:16:22 +0200788 # When a whitespace-node is read, its from-index is stored as a hash-key (in %ws), to state that it belongs to a ws-node.
789 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
790 # the last read 'non-tag'-node, was a actually _not_ a ws-node, but instead a text-node. In that case, the from-value of
791 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200792 #
Peter Harders41c35622020-07-12 01:16:22 +0200793 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
794 # additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $dl).
Peter Harders6f526a32020-06-29 21:44:41 +0200795 #
Peter Harders41c35622020-07-12 01:16:22 +0200796 # [1]
797 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
798 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
799 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200800 #
Peter Harders41c35622020-07-12 01:16:22 +0200801 # [2]
802 # Comparing the 2 examples '<w>fu</w> <w>bar</w>' and '<w>fu</w><w> </w><w>bar</w>', is ' ' in both cases handled as a
803 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200804 #
Peter Harders41c35622020-07-12 01:16:22 +0200805 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
806 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200807 #
Peter Harders41c35622020-07-12 01:16:22 +0200808 # Empty tags also cling to the next text-token - e.g. in '<w>tok1</w> <w>tok2</w><a><b/></a> <w>tok3</w>' are the from-
809 # and to-indizes for the tags 'a' and 'b' both 12, which is the start-index of the token 'tok3'.
Peter Harders6f526a32020-06-29 21:44:41 +0200810
811 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
812
Peter Harders41c35622020-07-12 01:16:22 +0200813 # ~ whitespace-node ~
814
815 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200816
817 $add_one = 0;
818
Peter Harders41c35622020-07-12 01:16:22 +0200819 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
820 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200821
822 }else{
823
824 # ~ text-node ~
825
826 $add_one = 1;
827 }
828
829
830 # ~ update $data and $dl ~
831
832 $data .= $e->[1];
833
834 $dl += length( $e->[1] ); # update length of $data
835
836
Peter Harders41c35622020-07-12 01:16:22 +0200837 #~~~~~
838 # until here: text- and whitespace-nodes
839 #~~~~~
840
841
842 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200843 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
844
845
846 }else{ # not yet handled type
847
848 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
849 }
850
851 } # end: foreach iteration
852
853} # end: sub retr_info
854
855
Peter Harders41c35622020-07-12 01:16:22 +0200856sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200857
858 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100859
860 #print STDERR "$0: write_structures(): ...\n";
861
Peter Harders6f526a32020-06-29 21:44:41 +0200862 if ( $dir eq "" ){
863
864 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100865 return;
866 }
867
Peter Harders6f526a32020-06-29 21:44:41 +0200868 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
869 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200870 .decode( "UTF-8", $text_id_esc )."\" xmlns=\"http://ids-mannheim.de/ns/KorAP\" version=\"KorAP-0.4\">\n <spanList>\n"; # convert binary string to text string
Peter Hardersd892a582020-02-12 15:45:22 +0100871
872 $c = 0;
873
Peter Harders6f526a32020-06-29 21:44:41 +0200874 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100875
Peter Harders6f526a32020-06-29 21:44:41 +0200876 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
877 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100878
Peter Harders6f526a32020-06-29 21:44:41 +0200879 # correct last from-value ( if the 'second to last' from-value refers to an s-tag, then the last from-value is one to big - see retr_info )
880
881 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
882
883 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100884 }
Peter Hardersd892a582020-02-12 15:45:22 +0100885
Peter Harders6f526a32020-06-29 21:44:41 +0200886 # this consistency check is already done in 'retr_info()'
887 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
888 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
889 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
890 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
891 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100892
Peter Harders6f526a32020-06-29 21:44:41 +0200893 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
894 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100895
Peter Harders6f526a32020-06-29 21:44:41 +0200896 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100897
Peter Harders6f526a32020-06-29 21:44:41 +0200898 # l (level): insert information about depth of element in XML-tree (top element = level 1)
899 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
900 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
901 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
902
903 if ( $idx > 2 ) # attributes
904 {
905 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
906
907 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
908
Akron0465e9e2020-07-27 15:55:21 +0200909 # see explanation in func. 'write_tokens'
910 ${$ref}[ $att_idx+1 ] = escape_xml(${$ref}[ $att_idx+1 ]);
Peter Harders6f526a32020-06-29 21:44:41 +0200911
912 # attribute (at index $att_idx) with value (at index $att_idx+1)
913 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
914 }
915
916 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100917 }
918
Peter Harders6f526a32020-06-29 21:44:41 +0200919 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100920
Peter Harders6f526a32020-06-29 21:44:41 +0200921 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100922
923 $c++;
924
Peter Harders6f526a32020-06-29 21:44:41 +0200925 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100926
927 $output .= " </spanList>\n</layer>";
928
Peter Harders1c5ce152020-07-22 18:02:50 +0200929 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +0100930
Akron85717512020-07-08 11:19:19 +0200931 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
932 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100933
934 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200935
Peter Hardersd892a582020-02-12 15:45:22 +0100936} # end: sub write_structures
937
938
Peter Harders41c35622020-07-12 01:16:22 +0200939sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200940
941 # ~ write @tokens ~
942
943 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100944
945 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +0200946
947 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100948 return;
949 }
950
Peter Harders6f526a32020-06-29 21:44:41 +0200951 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
952 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200953 .decode( "UTF-8", $text_id_esc )."\" xmlns=\"http://ids-mannheim.de/ns/KorAP\" version=\"KorAP-0.4\">\n <spanList>\n"; # convert binary string to text string
Peter Hardersd892a582020-02-12 15:45:22 +0100954
955 $c = 0;
956
Peter Harders6f526a32020-06-29 21:44:41 +0200957 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +0100958
Peter Harders6f526a32020-06-29 21:44:41 +0200959 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
960 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +0100961
Peter Harders6f526a32020-06-29 21:44:41 +0200962 # correct last from-value (if the 'second to last' from-value refers to an s-tag, then the last from-value is one to big - see retr_info())
963 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
964
965 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +0100966 }
Peter Hardersd892a582020-02-12 15:45:22 +0100967
Peter Harders6f526a32020-06-29 21:44:41 +0200968 # l (level): insert information about depth of element in XML-tree (top element = level 1)
969 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
970 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
971 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100972
Peter Harders6f526a32020-06-29 21:44:41 +0200973 if ( $idx > 2 ){ # attributes
974
Peter Hardersd892a582020-02-12 15:45:22 +0100975 $output .= " <fs>\n";
976
Peter Harders6f526a32020-06-29 21:44:41 +0200977 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +0100978
Akron0465e9e2020-07-27 15:55:21 +0200979 ${$ref}[ $att_idx+1 ] = escape_xml(${$ref}[ $att_idx+1 ]); # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
Peter Harders6f526a32020-06-29 21:44:41 +0200980 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +0100981
Peter Harders6f526a32020-06-29 21:44:41 +0200982 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +0100983
Peter Harders6f526a32020-06-29 21:44:41 +0200984 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
985
986 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
987 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
988
989 if ( "$_INLINE_POS_WR" ){
990
991 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +0100992 $output .= "$1" if defined $1;
993 $output .= "</f>\n";
994 }
Peter Harders6f526a32020-06-29 21:44:41 +0200995
996 if ( "$_INLINE_MSD_WR" ){
997
998 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +0100999 $output .= "$2" if defined $2;
1000 $output .= "</f>\n";
1001 }
1002
Peter Harders6f526a32020-06-29 21:44:41 +02001003 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001004
Peter Harders6f526a32020-06-29 21:44:41 +02001005 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001006
Peter Harders6f526a32020-06-29 21:44:41 +02001007 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001008
Peter Harders6f526a32020-06-29 21:44:41 +02001009 $output .= " <f name=\"${$ref}[$att_idx]\">${$ref}[ $att_idx+1 ]</f>\n"; # attribute (at index $att_idx) with value (at index $att_idx+1)
Peter Hardersd892a582020-02-12 15:45:22 +01001010 }
1011
Peter Harders6f526a32020-06-29 21:44:41 +02001012 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001013
1014 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001015
1016 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001017
1018 $output .= " </f>\n </fs>\n </span>\n";
1019
1020 $c++;
1021
Peter Harders6f526a32020-06-29 21:44:41 +02001022 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001023
1024 $output .= " </spanList>\n</layer>";
1025
Peter Harders1c5ce152020-07-22 18:02:50 +02001026 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +01001027
Akron85717512020-07-08 11:19:19 +02001028 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1029 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001030
Peter Harders6f526a32020-06-29 21:44:41 +02001031 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001032
Peter Harders6f526a32020-06-29 21:44:41 +02001033} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001034
Peter Hardersd892a582020-02-12 15:45:22 +01001035
Akrond949e182020-02-14 12:23:57 +01001036__END__
1037
1038=pod
1039
1040=encoding utf8
1041
1042=head1 NAME
1043
1044tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1045
1046=head1 SYNOPSIS
1047
1048 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1049
1050=head1 DESCRIPTION
1051
Akronee434b12020-07-08 12:53:01 +02001052C<tei2korapxml> is a script to convert TEI P5 and
1053L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1054based documents to the
1055L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1056If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001057read from C<STDIN>. If no specific output is defined, data is written
1058to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001059
Akrond949e182020-02-14 12:23:57 +01001060This program is usually called from inside another script.
1061
Akronee434b12020-07-08 12:53:01 +02001062=head1 FORMATS
1063
1064=head2 Input restrictions
1065
1066=over 2
1067
1068=item
1069
1070utf8 encoded
1071
1072=item
1073
1074TEI P5 formatted input with certain restrictions:
1075
1076=over 4
1077
1078=item
1079
1080B<mandatory>: text-header with integrated textsigle, text-body
1081
1082=item
1083
1084B<optional>: corp-header with integrated corpsigle,
1085doc-header with integrated docsigle
1086
1087=back
1088
1089=item
1090
1091all tokens inside the primary text (inside $data) may not be
1092newline seperated, because newlines are removed
1093(see code section C<~ inside text body ~>) and a conversion of newlines
1094into blanks between 2 tokens could lead to additional blanks,
1095where there should be none (e.g.: punctuation characters like C<,> or
1096C<.> should not be seperated from their predecessor token).
1097(see also code section C<~ whitespace handling ~>).
1098
1099=back
1100
1101=head2 Notes on the output
1102
1103=over 2
1104
1105=item
1106
1107zip file output (default on C<stdout>) with utf8 encoded entries
1108(which together form the KorAP-XML format)
1109
1110=back
1111
Akrond949e182020-02-14 12:23:57 +01001112=head1 INSTALLATION
1113
1114C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1115these bindings are available, the preferred way to install the script is
1116to use L<cpanm|App::cpanminus>.
1117
1118 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1119
1120In case everything went well, the C<tei2korapxml> tool will
1121be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001122
Akrond949e182020-02-14 12:23:57 +01001123Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1124
1125=head1 OPTIONS
1126
1127=over 2
1128
Akron4e603a52020-07-27 14:23:49 +02001129=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +01001130
Akron4e603a52020-07-27 14:23:49 +02001131The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +01001132
1133=item B<--help|-h>
1134
1135Print help information.
1136
1137=item B<--version|-v>
1138
1139Print version information.
1140
Akron4e603a52020-07-27 14:23:49 +02001141=item B<--tokenizer-call|-tc>
1142
1143Call an external tokenizer process, that will tokenize
1144a single line from STDIN and outputs one token per line.
1145
1146=item B<--use-intern-tokenization|-ti>
1147
1148Tokenize the data using two embedded tokenizers,
1149that will take an I<Aggressive> and a I<conservative>
1150approach.
1151
Akrond949e182020-02-14 12:23:57 +01001152=back
1153
1154=head1 COPYRIGHT AND LICENSE
1155
1156Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1157
1158Author: Peter Harders
1159
1160Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1161
1162L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1163Corpus Analysis Platform at the
1164L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1165member of the
1166L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1167
1168This program is free software published under the
1169L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1170
1171=cut