blob: 40ad3724fd154e1105d50082b6810601dcecbc56 [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
Akron95bc98a2020-07-11 12:00:12 +020021use KorAP::XML::TEI qw'remove_xml_comments';
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)
112my $_INLINE_ANNOT = 0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
113my $_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
139my %ent = ('"', '&quot;', '&','&amp;', # convert '&', '<' and '>' into their corresponding sgml-entities
140 '<','&lt;','>','&gt;');
141 # note: the index still refers to the 'single character'-versions, which are counted as 1
142 # (search for '&amp;' in data.xml and see corresponding indices in $_tokens_file)
143
Akronf57ed812020-07-27 10:37:52 +0200144my ( $data_fl );
Peter Harders6f526a32020-06-29 21:44:41 +0200145
Akronf57ed812020-07-27 10:37:52 +0200146my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200147
Peter Harders6f526a32020-06-29 21:44:41 +0200148
149my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
150 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
151
152my @tokens; # list of arrays, where each array represents a $_TOKENS_TAG from the input document
153 # - the input of this array is written in func. 'write_tokens' into the file '$_tokens_file'
154
155my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures' and 'write_tokens'
156
157my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
158 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
159
160# these are only used inside recursive function 'retr_info'
161my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
162 $e, # element from $tree_data
163 $n, # tag name of actual processed element $e
164 $rl, # recursion level
165 $dl, # actual length of string $data
166 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
167 # represents the actual processed element from @structures
168 @oti2, # analogously to @oti, but with reference to array @tokens
169 $inside_tokens_tag, # flag is set, when inside $_TOKENS_TAG
170 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
171 $add_one, # ...
172 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200173 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
174 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200175 # (means: 'from-index - 1' is a key in %ws).
176 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
177
178my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
179
180my ( $i, $c ); # index variables used in loops
181
Peter Harders6f526a32020-06-29 21:44:41 +0200182
183#
184# ~~~ main ~~~
185#
186
187# ~ initializations ~
188
189($_XCT_LN)?($_IDX=5):($_IDX=4);
190
Akronf57ed812020-07-27 10:37:52 +0200191$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200192
193$inside_tokens_tag = -1;
194
195$fval = $fval2 = 0;
196
197$_root_dir .= '/'; # base dir must always end with a slash
198$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
199
Akronf57ed812020-07-27 10:37:52 +0200200$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
201$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
202$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
Peter Hardersd892a582020-02-12 15:45:22 +0100203
204$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
205$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
206$data_prfx1 .= "<raw_text docid=\"";
207$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200208## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100209$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200210##
Peter Hardersd892a582020-02-12 15:45:22 +0100211$data_prfx2 .= " <text>";
212$data_sfx = "</text>\n</raw_text>";
213
Peter Hardersd892a582020-02-12 15:45:22 +0100214
Peter Harders6f526a32020-06-29 21:44:41 +0200215# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200216main();
Peter Hardersd892a582020-02-12 15:45:22 +0100217
Peter Hardersd892a582020-02-12 15:45:22 +0100218
Peter Harders6f526a32020-06-29 21:44:41 +0200219#
220# ~~~ subs ~~~
221#
Peter Hardersd892a582020-02-12 15:45:22 +0100222
Peter Hardersd892a582020-02-12 15:45:22 +0100223
Peter Harders41c35622020-07-12 01:16:22 +0200224sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100225
Peter Harders6f526a32020-06-29 21:44:41 +0200226 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100227
Peter Harders41c35622020-07-12 01:16:22 +0200228 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200229
230 $input_fh = *STDIN; # input file handle (default: stdin)
231
Akron85717512020-07-08 11:19:19 +0200232 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200233
Akronf57ed812020-07-27 10:37:52 +0200234 $buf_in = $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200235
236
237 if ( $input_fname ne '' ){
238
239 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
240
241 }
242
243
Peter Harders41c35622020-07-12 01:16:22 +0200244 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200245 # 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 +0200246 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
247 # 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 +0200248 binmode $input_fh;
249
250
Peter Harders6f526a32020-06-29 21:44:41 +0200251 # ~ loop (reading input document) ~
252
253 while ( <$input_fh> ){
254
Peter Harders6f526a32020-06-29 21:44:41 +0200255 # TODO: yet not tested fo big amounts of data
256 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron95bc98a2020-07-11 12:00:12 +0200257 remove_xml_comments( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200258
259 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
260
261
262 # ~ end of text body ~
263
264
Akron8b511f92020-07-09 17:28:08 +0200265 # 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 +0200266
267 $pfx = $1; $sfx = $2;
268
Akrone19aa3e2020-07-27 11:41:27 +0200269 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200270 ." contains additional information ... => Aborting\n\tline=$_"
271 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
272
273 if ( $dir ne "" ){
274
Peter Harders6f526a32020-06-29 21:44:41 +0200275 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200276
Peter Harders41c35622020-07-12 01:16:22 +0200277 # ~ whitespace handling ~
278 #
279 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
280 # (see function 'retr_info()').
281 #
282 # Definition of significant and insignificant whitespace
283 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
284 #
285 # Significant whitespace is part of the document content and should be preserved.
286 # Insignificant whitespace is used when editing XML documents for readability.
287 # These whitespaces are typically not intended for inclusion in the delivery of the document.
288 #
Peter Harders6f526a32020-06-29 21:44:41 +0200289 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
290 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
291 } else {
292 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
293 }
294
295 @structures = (); @oti = ();
296
297 if ( $_TOKENS_PROC ){
298 @tokens = (); @oti2 = ()
299 }
300
301 $dl = $rl = 0;
302
303 # ~ whitespace related issue ~
304 $add_one = 0;
305 %ws = ();
306
307
308 # ~ recursion ~
309
310 retr_info( \$tree_data->[2] ); # parse input data
311
312 $rl--;
313
314
315 # ~ write data.xml ~
316
Peter Harders41c35622020-07-12 01:16:22 +0200317 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
318 # (...elsif ( $data_fl )....)
Peter Harders6f526a32020-06-29 21:44:41 +0200319 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
Peter Harders41c35622020-07-12 01:16:22 +0200320 #
Peter Harders6f526a32020-06-29 21:44:41 +0200321
Peter Harders6f526a32020-06-29 21:44:41 +0200322
Akronedee6e52020-07-27 14:15:11 +0200323 # ~ tokenization ~
324
Akron8b511f92020-07-09 17:28:08 +0200325 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200326
Akronedee6e52020-07-27 14:15:11 +0200327 $ext_tok->tokenize($data)->to_zip(
328 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
329 $text_id_esc
330 );
Peter Hardersb1227172020-07-21 02:12:10 +0200331
Peter Harders42e18a62020-07-21 02:43:26 +0200332 }
333
334 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200335
Akronedee6e52020-07-27 14:15:11 +0200336 # Tokenize and output
337 $cons_tok->tokenize($data)->to_zip(
338 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
339 $text_id_esc
340 );
341
342 $aggr_tok->tokenize($data)->to_zip(
343 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
344 $text_id_esc
345 );
346
347 $aggr_tok->reset;
348 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200349 }
Akron8b511f92020-07-09 17:28:08 +0200350
Peter Harders6f526a32020-06-29 21:44:41 +0200351 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
352
Peter Harders6f526a32020-06-29 21:44:41 +0200353 $data =~ s/(&|<|>)/$ent{$1}/g;
354
Peter Harders1c5ce152020-07-22 18:02:50 +0200355 # convert text strings to binary strings
356 $data = encode( "UTF-8", $data );
357
Akron85717512020-07-08 11:19:19 +0200358 $zipper->new_stream("$_root_dir$dir/$_data_file")
359 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200360
361 # ~ write structures ~
362
363 write_structures() if @structures;
364
365
366 # ~ write tokens ~
367
368 write_tokens() if $_TOKENS_PROC && @tokens;
369
Peter Hardersb1227172020-07-21 02:12:10 +0200370 #print STDERR "$0: write_tokenization(): DONE\n";
371
Peter Harders6f526a32020-06-29 21:44:41 +0200372 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
373
374 } else { # $dir eq ""
375
376 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
Akronf57ed812020-07-27 10:37:52 +0200377 # print STDERR "WARNING ($0): main(): text header=$header_txt\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200378 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100379 }
380
Peter Harders6f526a32020-06-29 21:44:41 +0200381 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100382
Peter Hardersd892a582020-02-12 15:45:22 +0100383
Peter Harders6f526a32020-06-29 21:44:41 +0200384 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100385
Peter Hardersd892a582020-02-12 15:45:22 +0100386
Peter Harders6f526a32020-06-29 21:44:41 +0200387 #print STDERR "inside text body (\$data_fl set)\n";
388
389 # ~ whitespace handling ~
390
Peter Harders41c35622020-07-12 01:16:22 +0200391 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
392 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100393 #
Peter Harders41c35622020-07-12 01:16:22 +0200394 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
395 # example further down and notes on 'Input restrictions' in the manpage).
396 #
397 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
398 #
399 # 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
400 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
401 #
402 # Examples (how primary text with linebreaks would be converted by below code):
403 #
404 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
405 # '...<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 +0100406
Peter Harders41c35622020-07-12 01:16:22 +0200407 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
408
409 ### NOTE: this is only relevant, if a text consists of more than one line
410 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
411 ### 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 +0200412 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100413
Peter Harders41c35622020-07-12 01:16:22 +0200414 # NOTE: not stringent ('...' stands for text):
415 #
416 # beg1............................end1 => no blank before 'beg1'
417 # beg2....<pb/>...................end2 => no blank before 'beg2'
418 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
419 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
420 #
421 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
422 # ^
423 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100424
Peter Harders41c35622020-07-12 01:16:22 +0200425 $tl++; # counter for text lines
426
427 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100428 }
Peter Harders41c35622020-07-12 01:16:22 +0200429 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100430
Peter Harders6f526a32020-06-29 21:44:41 +0200431 # add line to buffer
432 $buf_in .= $_;
433
Peter Harders6f526a32020-06-29 21:44:41 +0200434 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
435
Peter Harders6f526a32020-06-29 21:44:41 +0200436 # ~ start of text body ~
437
Peter Harders6f526a32020-06-29 21:44:41 +0200438 #print STDERR "inside text body\n";
439
440 $pfx = $1; $sfx = $2;
441
442 $data_fl = 1;
443
Akrone19aa3e2020-07-27 11:41:27 +0200444 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200445 ." contains additional information ... => Aborting\n\tline=$_"
446 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
447
Akronf57ed812020-07-27 10:37:52 +0200448 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200449
Akronf57ed812020-07-27 10:37:52 +0200450 # ~ start of header ~
451 $pfx = $1;
452 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200453
Akrone19aa3e2020-07-27 11:41:27 +0200454 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200455 ." is not in expected format ... => Aborting\n\tline=$_"
456 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100457
Akronf57ed812020-07-27 10:37:52 +0200458 # Parse header
459 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
460
461 # Header was parseable
462 if ($header) {
463
464 # Write header to zip
465 my $file = $_root_dir . $header->dir . '/' . $_header_file;
466
467 print STDERR "DEBUG ($0): Writing file $file\n" if $_DEBUG;
468
469 $header->to_zip($zipper->new_stream($file));
470
471 # Header is for text level
472 if ($header->type eq 'text') {
473
474 # Remember dir and sigles
475 $dir = $header->dir;
476 $text_id = $header->id;
477 $text_id_esc = $header->id_esc;
478
479 # log output for seeing progression
Peter Harders1c5ce152020-07-22 18:02:50 +0200480 print STDERR "$0: main(): text_id=".decode("UTF-8", $text_id )."\n";
Akronf57ed812020-07-27 10:37:52 +0200481
482 $tl = 0; # reset (needed for ~ whitespace handling ~)
483 };
484 }
485 }
Peter Harders6f526a32020-06-29 21:44:41 +0200486 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100487
Akron85717512020-07-08 11:19:19 +0200488 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200489
Akron8b511f92020-07-09 17:28:08 +0200490 if( $_GEN_TOK_EXT ){
491 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100492 }
Peter Hardersd892a582020-02-12 15:45:22 +0100493
Peter Harders41c35622020-07-12 01:16:22 +0200494} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100495
Peter Hardersd892a582020-02-12 15:45:22 +0100496
Peter Harders41c35622020-07-12 01:16:22 +0200497sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100498
Peter Harders41c35622020-07-12 01:16:22 +0200499 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200500 #
Peter Harders41c35622020-07-12 01:16:22 +0200501 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200502 #
Peter Harders41c35622020-07-12 01:16:22 +0200503 # Print out name of 'node2' for the above example:
504 #
505 # 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"'
506 #
507 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200508 #
509 # [ 0: XML_READER_TYPE_DOCUMENT,
510 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200511 # 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 +0200512 # 1: 'node'
513 # 2: ?
514 # 3: HASH (attributes)
515 # 4: 1 (line number)
516 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
517 # 1: 'node1'
518 # 2: ?
519 # 3: undefined (no attributes)
520 # 4: 1 (line number)
521 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
522 # 1: 'some '
523 # ]
524 # 1: [ 0: XML_READER_TYPE_ELEMENT
525 # 1: 'n'
526 # 2: ?
527 # 3: undefined (no attributes)
528 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200529 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200530 # ]
531 # 2: [ 0: XML_READER_TYPE_TEXT
532 # 1: ' text'
533 # ]
534 # ]
535 # ]
536 # 1: [ 0: XML_READER_TYPE_ELEMENT
537 # 1: 'node2'
538 # 2: ?
539 # 3: undefined (not attributes)
540 # 4: 1 (line number)
541 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
542 # 1: 'more-text'
543 # ]
544 # ]
545 # ]
546 # ]
547 # ]
548 # ]
549 # ]
550 #
551 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
552 #
553 # ref($data->[2]) == ARRAY (with 1 element for 'node')
554 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
555 #
556 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
557 # $data->[2]->[0]->[1] == 'node'
558 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
559 # $data->[2]->[0]->[4] == 1 (line number)
560 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200561 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200562 #
563 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
564 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
565 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
566 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
567 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
568 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
569 #
570 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
571 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
572 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
573 #
574 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
575 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
576 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
577 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
578 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200579 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200580 #
581 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
582 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
583 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
584 #
585 #
586 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
587 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
588 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100589
Peter Harders41c35622020-07-12 01:16:22 +0200590
Peter Harders6f526a32020-06-29 21:44:41 +0200591 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Hardersd892a582020-02-12 15:45:22 +0100593
Peter Harders6f526a32020-06-29 21:44:41 +0200594 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100595
Peter Hardersd892a582020-02-12 15:45:22 +0100596
Peter Harders41c35622020-07-12 01:16:22 +0200597 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 +0100598
Peter Hardersd892a582020-02-12 15:45:22 +0100599
Peter Harders6f526a32020-06-29 21:44:41 +0200600 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200601 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200602 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100603
Peter Hardersd892a582020-02-12 15:45:22 +0100604
Peter Harders6f526a32020-06-29 21:44:41 +0200605 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
606 # 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 +0100607
Peter Harders6f526a32020-06-29 21:44:41 +0200608 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100609
Peter Harders6f526a32020-06-29 21:44:41 +0200610 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100611
Peter Hardersd892a582020-02-12 15:45:22 +0100612
Peter Harders6f526a32020-06-29 21:44:41 +0200613 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100614
Peter Harders6f526a32020-06-29 21:44:41 +0200615 my @array;
616 push @array, $n;
617 push @structures, \@array;
618 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100619
Peter Hardersd892a582020-02-12 15:45:22 +0100620
Peter Harders6f526a32020-06-29 21:44:41 +0200621 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100622
Peter Harders6f526a32020-06-29 21:44:41 +0200623 $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 +0100624
Peter Harders6f526a32020-06-29 21:44:41 +0200625 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100626
Peter Harders6f526a32020-06-29 21:44:41 +0200627 my @array2;
628 push @array2, $n;
629 push @tokens, \@array2;
630 push @oti2, $#tokens;
631 }
Peter Hardersd892a582020-02-12 15:45:22 +0100632
Peter Hardersd892a582020-02-12 15:45:22 +0100633
Peter Harders6f526a32020-06-29 21:44:41 +0200634 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100635
Peter Harders6f526a32020-06-29 21:44:41 +0200636 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100637
Peter Harders6f526a32020-06-29 21:44:41 +0200638 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
639 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
640 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100641
Peter Harders6f526a32020-06-29 21:44:41 +0200642 # '$c' references the 'key' and '$c+1' the 'value'
643 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100644
Peter Harders6f526a32020-06-29 21:44:41 +0200645 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100646
Peter Harders6f526a32020-06-29 21:44:41 +0200647 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
648 }
649
650 }
651 }
652
653
654 # ~ index 'from' ~
655
656 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
657
Peter Harders41c35622020-07-12 01:16:22 +0200658 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200659
660 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
661
662 push @{$tokens[$#tokens]}, ( $dl + $add_one );
663 }
664
665
666 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200667 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200668 #~~~~
669
670
671 # ~~ RECURSION ~~
672
Peter Harders41c35622020-07-12 01:16:22 +0200673 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 +0200674
Peter Harders41c35622020-07-12 01:16:22 +0200675 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200676
677 $rl--; # return from recursion
678 }
679
680
681 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200682 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200683 #~~~~~
684
685
686 # ~ handle structures ~
687
688 {
689 my $ix = pop @oti; # index of just closed tag
690
691 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
692
693 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
694
695 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
696
Peter Harders41c35622020-07-12 01:16:22 +0200697 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200698
Peter Harders41c35622020-07-12 01:16:22 +0200699 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200700 }
701
702 # in case this fails, check input
703 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
704 ." than to-value ($dl) => please check. aborting ...\n"
705 if ( $fval - 1 ) > $dl;
706
Peter Harders41c35622020-07-12 01:16:22 +0200707 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200708 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
709 # 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 +0200710 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200711 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
712
713 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
714
715 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
716 }
717
718
719 # ~ handle tokens ~
720
721
722 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
723
724 my $ix = pop @oti2;
725
726 my $aix = $#{$tokens[$ix]};
727
728 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
729
730 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
731
Peter Harders41c35622020-07-12 01:16:22 +0200732 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200733
Peter Harders41c35622020-07-12 01:16:22 +0200734 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200735 }
736
737 # in case this fails, check input
738 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
739 ." than to-value ($dl) => please check. aborting ...\n"
740 if ( $fval2 - 1 ) > $dl;
741
Peter Harders41c35622020-07-12 01:16:22 +0200742 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200743 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
744 # 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 +0200745 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200746 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
747
748 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
749
750 $inside_tokens_tag = -1; # reset
751 }
752
753 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100754 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200755 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
756 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100757
758
Peter Harders41c35622020-07-12 01:16:22 +0200759 #~~~~
760 # until here: tag-node (closing)
761 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100762
763
Peter Harders41c35622020-07-12 01:16:22 +0200764 #~~~~~
765 # from here: text- and whitespace-nodes
766 #~~~~~
767
768 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
769 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200770 #
Peter Harders41c35622020-07-12 01:16:22 +0200771 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
772 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
773 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200774 #
Peter Harders41c35622020-07-12 01:16:22 +0200775 # 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 +0100776
Peter Harders6f526a32020-06-29 21:44:41 +0200777 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100778
Peter Harders41c35622020-07-12 01:16:22 +0200779 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200780 #
Peter Harders41c35622020-07-12 01:16:22 +0200781 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200782 #
783 # 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 +0200784 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200785 #
Peter Harders41c35622020-07-12 01:16:22 +0200786 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
787 # 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 +0200788 #
Peter Harders41c35622020-07-12 01:16:22 +0200789 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
790 # 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 +0200791 #
Peter Harders41c35622020-07-12 01:16:22 +0200792 # 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.
793 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
794 # 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
795 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200796 #
Peter Harders41c35622020-07-12 01:16:22 +0200797 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
798 # 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 +0200799 #
Peter Harders41c35622020-07-12 01:16:22 +0200800 # [1]
801 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
802 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
803 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200804 #
Peter Harders41c35622020-07-12 01:16:22 +0200805 # [2]
806 # 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
807 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200808 #
Peter Harders41c35622020-07-12 01:16:22 +0200809 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
810 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200811 #
Peter Harders41c35622020-07-12 01:16:22 +0200812 # 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-
813 # 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 +0200814
815 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
816
Peter Harders41c35622020-07-12 01:16:22 +0200817 # ~ whitespace-node ~
818
819 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200820
821 $add_one = 0;
822
Peter Harders41c35622020-07-12 01:16:22 +0200823 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
824 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200825
826 }else{
827
828 # ~ text-node ~
829
830 $add_one = 1;
831 }
832
833
834 # ~ update $data and $dl ~
835
836 $data .= $e->[1];
837
838 $dl += length( $e->[1] ); # update length of $data
839
840
Peter Harders41c35622020-07-12 01:16:22 +0200841 #~~~~~
842 # until here: text- and whitespace-nodes
843 #~~~~~
844
845
846 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200847 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
848
849
850 }else{ # not yet handled type
851
852 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
853 }
854
855 } # end: foreach iteration
856
857} # end: sub retr_info
858
859
Peter Harders41c35622020-07-12 01:16:22 +0200860sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200861
862 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100863
864 #print STDERR "$0: write_structures(): ...\n";
865
Peter Harders6f526a32020-06-29 21:44:41 +0200866 if ( $dir eq "" ){
867
868 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100869 return;
870 }
871
Peter Harders6f526a32020-06-29 21:44:41 +0200872 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
873 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200874 .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 +0100875
876 $c = 0;
877
Peter Harders6f526a32020-06-29 21:44:41 +0200878 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100879
Peter Harders6f526a32020-06-29 21:44:41 +0200880 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
881 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100882
Peter Harders6f526a32020-06-29 21:44:41 +0200883 # 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 )
884
885 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
886
887 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100888 }
Peter Hardersd892a582020-02-12 15:45:22 +0100889
Peter Harders6f526a32020-06-29 21:44:41 +0200890 # this consistency check is already done in 'retr_info()'
891 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
892 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
893 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
894 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
895 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100896
Peter Harders6f526a32020-06-29 21:44:41 +0200897 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
898 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100899
Peter Harders6f526a32020-06-29 21:44:41 +0200900 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100901
Peter Harders6f526a32020-06-29 21:44:41 +0200902 # l (level): insert information about depth of element in XML-tree (top element = level 1)
903 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
904 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
905 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
906
907 if ( $idx > 2 ) # attributes
908 {
909 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
910
911 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
912
913 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
914
915 # attribute (at index $att_idx) with value (at index $att_idx+1)
916 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
917 }
918
919 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100920 }
921
Peter Harders6f526a32020-06-29 21:44:41 +0200922 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100923
Peter Harders6f526a32020-06-29 21:44:41 +0200924 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100925
926 $c++;
927
Peter Harders6f526a32020-06-29 21:44:41 +0200928 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100929
930 $output .= " </spanList>\n</layer>";
931
Peter Harders1c5ce152020-07-22 18:02:50 +0200932 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +0100933
Akron85717512020-07-08 11:19:19 +0200934 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
935 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100936
937 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200938
Peter Hardersd892a582020-02-12 15:45:22 +0100939} # end: sub write_structures
940
941
Peter Harders41c35622020-07-12 01:16:22 +0200942sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200943
944 # ~ write @tokens ~
945
946 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100947
948 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +0200949
950 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100951 return;
952 }
953
Peter Harders6f526a32020-06-29 21:44:41 +0200954 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
955 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200956 .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 +0100957
958 $c = 0;
959
Peter Harders6f526a32020-06-29 21:44:41 +0200960 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +0100961
Peter Harders6f526a32020-06-29 21:44:41 +0200962 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
963 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +0100964
Peter Harders6f526a32020-06-29 21:44:41 +0200965 # 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())
966 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
967
968 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +0100969 }
Peter Hardersd892a582020-02-12 15:45:22 +0100970
Peter Harders6f526a32020-06-29 21:44:41 +0200971 # l (level): insert information about depth of element in XML-tree (top element = level 1)
972 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
973 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
974 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100975
Peter Harders6f526a32020-06-29 21:44:41 +0200976 if ( $idx > 2 ){ # attributes
977
Peter Hardersd892a582020-02-12 15:45:22 +0100978 $output .= " <fs>\n";
979
Peter Harders6f526a32020-06-29 21:44:41 +0200980 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +0100981
Peter Harders6f526a32020-06-29 21:44:41 +0200982 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
983 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +0100984
Peter Harders6f526a32020-06-29 21:44:41 +0200985 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +0100986
Peter Harders6f526a32020-06-29 21:44:41 +0200987 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
988
989 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
990 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
991
992 if ( "$_INLINE_POS_WR" ){
993
994 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +0100995 $output .= "$1" if defined $1;
996 $output .= "</f>\n";
997 }
Peter Harders6f526a32020-06-29 21:44:41 +0200998
999 if ( "$_INLINE_MSD_WR" ){
1000
1001 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001002 $output .= "$2" if defined $2;
1003 $output .= "</f>\n";
1004 }
1005
Peter Harders6f526a32020-06-29 21:44:41 +02001006 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001007
Peter Harders6f526a32020-06-29 21:44:41 +02001008 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001009
Peter Harders6f526a32020-06-29 21:44:41 +02001010 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001011
Peter Harders6f526a32020-06-29 21:44:41 +02001012 $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 +01001013 }
1014
Peter Harders6f526a32020-06-29 21:44:41 +02001015 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001016
1017 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001018
1019 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001020
1021 $output .= " </f>\n </fs>\n </span>\n";
1022
1023 $c++;
1024
Peter Harders6f526a32020-06-29 21:44:41 +02001025 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001026
1027 $output .= " </spanList>\n</layer>";
1028
Peter Harders1c5ce152020-07-22 18:02:50 +02001029 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +01001030
Akron85717512020-07-08 11:19:19 +02001031 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1032 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001033
Peter Harders6f526a32020-06-29 21:44:41 +02001034 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001035
Peter Harders6f526a32020-06-29 21:44:41 +02001036} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001037
Peter Hardersd892a582020-02-12 15:45:22 +01001038
Akrond949e182020-02-14 12:23:57 +01001039__END__
1040
1041=pod
1042
1043=encoding utf8
1044
1045=head1 NAME
1046
1047tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1048
1049=head1 SYNOPSIS
1050
1051 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1052
1053=head1 DESCRIPTION
1054
Akronee434b12020-07-08 12:53:01 +02001055C<tei2korapxml> is a script to convert TEI P5 and
1056L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1057based documents to the
1058L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1059If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001060read from C<STDIN>. If no specific output is defined, data is written
1061to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001062
Akrond949e182020-02-14 12:23:57 +01001063This program is usually called from inside another script.
1064
Akronee434b12020-07-08 12:53:01 +02001065=head1 FORMATS
1066
1067=head2 Input restrictions
1068
1069=over 2
1070
1071=item
1072
1073utf8 encoded
1074
1075=item
1076
1077TEI P5 formatted input with certain restrictions:
1078
1079=over 4
1080
1081=item
1082
1083B<mandatory>: text-header with integrated textsigle, text-body
1084
1085=item
1086
1087B<optional>: corp-header with integrated corpsigle,
1088doc-header with integrated docsigle
1089
1090=back
1091
1092=item
1093
1094all tokens inside the primary text (inside $data) may not be
1095newline seperated, because newlines are removed
1096(see code section C<~ inside text body ~>) and a conversion of newlines
1097into blanks between 2 tokens could lead to additional blanks,
1098where there should be none (e.g.: punctuation characters like C<,> or
1099C<.> should not be seperated from their predecessor token).
1100(see also code section C<~ whitespace handling ~>).
1101
1102=back
1103
1104=head2 Notes on the output
1105
1106=over 2
1107
1108=item
1109
1110zip file output (default on C<stdout>) with utf8 encoded entries
1111(which together form the KorAP-XML format)
1112
1113=back
1114
Akrond949e182020-02-14 12:23:57 +01001115=head1 INSTALLATION
1116
1117C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1118these bindings are available, the preferred way to install the script is
1119to use L<cpanm|App::cpanminus>.
1120
1121 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1122
1123In case everything went well, the C<tei2korapxml> tool will
1124be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001125
Akrond949e182020-02-14 12:23:57 +01001126Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1127
1128=head1 OPTIONS
1129
1130=over 2
1131
Akron4e603a52020-07-27 14:23:49 +02001132=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +01001133
Akron4e603a52020-07-27 14:23:49 +02001134The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +01001135
1136=item B<--help|-h>
1137
1138Print help information.
1139
1140=item B<--version|-v>
1141
1142Print version information.
1143
Akron4e603a52020-07-27 14:23:49 +02001144=item B<--tokenizer-call|-tc>
1145
1146Call an external tokenizer process, that will tokenize
1147a single line from STDIN and outputs one token per line.
1148
1149=item B<--use-intern-tokenization|-ti>
1150
1151Tokenize the data using two embedded tokenizers,
1152that will take an I<Aggressive> and a I<conservative>
1153approach.
1154
Akrond949e182020-02-14 12:23:57 +01001155=back
1156
1157=head1 COPYRIGHT AND LICENSE
1158
1159Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1160
1161Author: Peter Harders
1162
1163Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1164
1165L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1166Corpus Analysis Platform at the
1167L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1168member of the
1169L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1170
1171This program is free software published under the
1172L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1173
1174=cut