blob: 96cddcfd563de53fa25fed2f583d50aebfa940bf [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
Akron3378dfd2020-08-01 15:01:36 +02005use Log::Any '$log';
6use Log::Any::Adapter;
Peter Harders6f526a32020-06-29 21:44:41 +02007use Pod::Usage;
8use Getopt::Long qw(GetOptions :config no_auto_abbrev);
9
10use File::Basename qw(dirname);
Peter Hardersd892a582020-02-12 15:45:22 +010011
12use open qw(:std :utf8); # assume utf-8 encoding
Peter Harders1c5ce152020-07-22 18:02:50 +020013use Encode qw(encode decode);
Peter Hardersd892a582020-02-12 15:45:22 +010014
Peter Hardersd892a582020-02-12 15:45:22 +010015use XML::CompactTree::XS;
16use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010017
Akron4f67cd42020-07-02 12:27:58 +020018use FindBin;
19BEGIN {
20 unshift @INC, "$FindBin::Bin/../lib";
21};
22
Akron0465e9e2020-07-27 15:55:21 +020023use KorAP::XML::TEI qw!remove_xml_comments escape_xml!;
Akron8b511f92020-07-09 17:28:08 +020024use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020025use KorAP::XML::TEI::Tokenizer::Conservative;
26use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron7501ca02020-08-01 21:05:25 +020027use KorAP::XML::TEI::Annotations::Collector;
Akron85717512020-07-08 11:19:19 +020028use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020029use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010030
Peter Harders1c5ce152020-07-22 18:02:50 +020031
Akrond949e182020-02-14 12:23:57 +010032our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020033
Akrond949e182020-02-14 12:23:57 +010034our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
35
Peter Hardersd892a582020-02-12 15:45:22 +010036
Peter Harders6f526a32020-06-29 21:44:41 +020037# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010038GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020039 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
40 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020041 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Peter Hardersf9c51242020-07-21 02:37:44 +020042 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron3378dfd2020-08-01 15:01:36 +020043 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020044 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010045 pod2usage(
46 -verbose => 99,
47 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
48 -msg => $VERSION_MSG,
49 -output => '-'
50 )
51 },
52 'version|v' => sub {
53 pod2usage(
54 -verbose => 0,
55 -msg => $VERSION_MSG,
56 -output => '-'
57 )
58 }
Peter Hardersd892a582020-02-12 15:45:22 +010059);
60
Akron3378dfd2020-08-01 15:01:36 +020061Log::Any::Adapter->set('Stderr', log_level => $log_level);
62
Peter Harders6f526a32020-06-29 21:44:41 +020063#
64# ~~~ parameter (mandatory) ~~~
65#
Peter Harders6f526a32020-06-29 21:44:41 +020066my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
67 # optional
68my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
69 # optional
70my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
71 # mandatory
72my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020073
Peter Harders6f526a32020-06-29 21:44:41 +020074#
75# ~~~ constants ~~~
76#
Peter Hardersd892a582020-02-12 15:45:22 +010077
Peter Harders41c35622020-07-12 01:16:22 +020078## extern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020079my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0;
Akron8b511f92020-07-09 17:28:08 +020080 # TODO:
81 # Read tokenizer call from configuration file.
82 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
83 my $ext_tok;
84 if ($tokenizer_call) {
85 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
86 };
Peter Harders41c35622020-07-12 01:16:22 +020087 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020088##
89
Akron8b511f92020-07-09 17:28:08 +020090## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020091my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +020092 my $_tok_file_con = "tokens_conservative.xml";
93 my $_tok_file_agg = "tokens_aggressive.xml";
94 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
95 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +020096##
97
98my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +020099
Peter Harders6f526a32020-06-29 21:44:41 +0200100my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
101my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
102 # (see also manpage of XML::CompactTree::XS)
103
104my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
105my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
106my $_structure_dir = "struct"; # name of directory containing the $_structure_file
107my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
108 # (= their names and byte offsets in $_data)
109## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
110my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
111my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
112my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
113 # - evtl. with additional inline annotations
114my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
115
116## TODO: optional
117# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200118my $_INLINE_ANNOT = $ENV{KORAPXMLTEI_INLINE}?1:0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
Akron09e0b2c2020-07-28 15:57:01 +0200119
120# TODO:
121# These parameters are now defunct and moved to Token.pm
Peter Harders6f526a32020-06-29 21:44:41 +0200122my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
123my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
124 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
125 # - which means, that the POS information can be followed by an optional blank with additional
126 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
127my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
128my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
129my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
130##
131
132
133#
134# ~~~ variables ~~~
135#
136
Akron7501ca02020-08-01 21:05:25 +0200137# Initialize Token- and Structure-Collector
138my $tokens = KorAP::XML::TEI::Annotations::Collector->new;
139my $structures = KorAP::XML::TEI::Annotations::Collector->new;
Akron09e0b2c2020-07-28 15:57:01 +0200140
141
Akron85717512020-07-08 11:19:19 +0200142# Initialize zipper
Akron3bdc0a32020-08-03 12:12:56 +0200143my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir);
Peter Harders6f526a32020-06-29 21:44:41 +0200144my $input_fh; # input file handle (default: stdin)
145
Peter Harders6f526a32020-06-29 21:44:41 +0200146my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
147
148my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200149
150my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
151
Akronf57ed812020-07-27 10:37:52 +0200152my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200153
Akron09e0b2c2020-07-28 15:57:01 +0200154my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures'
Peter Harders6f526a32020-06-29 21:44:41 +0200155
156my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
157 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
158
159# these are only used inside recursive function 'retr_info'
160my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
161 $e, # element from $tree_data
Peter Harders6f526a32020-06-29 21:44:41 +0200162 $dl, # actual length of string $data
Peter Harders6f526a32020-06-29 21:44:41 +0200163 # represents the actual processed element from @structures
Peter Harders6f526a32020-06-29 21:44:41 +0200164 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
165 $add_one, # ...
Akron7501ca02020-08-01 21:05:25 +0200166 $fval, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200167 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
168 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200169 # (means: 'from-index - 1' is a key in %ws).
170 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
171
Akron7501ca02020-08-01 21:05:25 +0200172my $c; # index variables used in loops
Peter Harders6f526a32020-06-29 21:44:41 +0200173
Peter Harders6f526a32020-06-29 21:44:41 +0200174
175#
176# ~~~ main ~~~
177#
178
179# ~ initializations ~
180
181($_XCT_LN)?($_IDX=5):($_IDX=4);
182
Akronf57ed812020-07-27 10:37:52 +0200183$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200184
Akron7501ca02020-08-01 21:05:25 +0200185$fval = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200186
Akronec2cef22020-07-31 10:00:15 +0200187# Normalize regex for header parsing
188for ($_CORP_HEADER_BEG,
189 $_DOC_HEADER_BEG,
190 $_TEXT_HEADER_BEG) {
191 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
192};
Peter Hardersd892a582020-02-12 15:45:22 +0100193
194$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
195$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
196$data_prfx1 .= "<raw_text docid=\"";
197$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200198## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100199$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200200##
Peter Hardersd892a582020-02-12 15:45:22 +0100201$data_prfx2 .= " <text>";
202$data_sfx = "</text>\n</raw_text>";
203
Peter Hardersd892a582020-02-12 15:45:22 +0100204
Peter Harders6f526a32020-06-29 21:44:41 +0200205# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200206main();
Peter Hardersd892a582020-02-12 15:45:22 +0100207
Peter Hardersd892a582020-02-12 15:45:22 +0100208
Peter Harders6f526a32020-06-29 21:44:41 +0200209#
210# ~~~ subs ~~~
211#
Peter Hardersd892a582020-02-12 15:45:22 +0100212
Peter Hardersd892a582020-02-12 15:45:22 +0100213
Peter Harders41c35622020-07-12 01:16:22 +0200214sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100215
Peter Harders6f526a32020-06-29 21:44:41 +0200216 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100217
Peter Harders41c35622020-07-12 01:16:22 +0200218 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200219
220 $input_fh = *STDIN; # input file handle (default: stdin)
221
Akron598d1a72020-08-02 17:33:31 +0200222 $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200223
224
225 if ( $input_fname ne '' ){
226
227 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
228
229 }
230
231
Peter Harders41c35622020-07-12 01:16:22 +0200232 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200233 # 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 +0200234 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
235 # 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 +0200236 binmode $input_fh;
237
Akronc1124212020-07-31 08:55:38 +0200238 my $pos;
239 my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders90157342020-07-01 21:05:14 +0200240
Peter Harders6f526a32020-06-29 21:44:41 +0200241 # ~ loop (reading input document) ~
242
Akron598d1a72020-08-02 17:33:31 +0200243 MAIN: while ( <$input_fh> ){
Peter Harders6f526a32020-06-29 21:44:41 +0200244
Akron598d1a72020-08-02 17:33:31 +0200245 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200246
247
Akron598d1a72020-08-02 17:33:31 +0200248 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200249
Peter Harders6f526a32020-06-29 21:44:41 +0200250 # ~ start of text body ~
251
Peter Harders6f526a32020-06-29 21:44:41 +0200252 $pfx = $1; $sfx = $2;
253
Akrone19aa3e2020-07-27 11:41:27 +0200254 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200255 ." contains additional information ... => Aborting\n\tline=$_"
256 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
257
Akron598d1a72020-08-02 17:33:31 +0200258 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
259 my $buf_in = '';
260
261 # Iterate over all lines in the text body
262 while (<$input_fh>) {
263
264 $_ = remove_xml_comments( $input_fh, $_ );
265
266 # ~ end of text body ~
267 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
268
269 # write data.xml, structure.xml and evtl. morpho.xml and/or tokenization files (s.a.: $_tok_file_ext, $_tok_file_con, $_tok_file_agg)
270
271 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
272 ." contains additional information ... => Aborting\n\tline=$_"
273 if (substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/;
274
275 if ( $dir ne "" ){
276
277 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
278
279 # ~ whitespace handling ~
280 #
281 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
282 # (see function 'retr_info()').
283 #
284 # Definition of significant and insignificant whitespace
285 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
286 #
287 # Significant whitespace is part of the document content and should be preserved.
288 # Insignificant whitespace is used when editing XML documents for readability.
289 # These whitespaces are typically not intended for inclusion in the delivery of the document.
290 #
291 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
292 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
293 } else {
294 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
295 }
296
Akron7501ca02020-08-01 21:05:25 +0200297 $structures->reset;
Akron598d1a72020-08-02 17:33:31 +0200298
299 if ( $_TOKENS_PROC ){
300 $tokens->reset;
301 }
302
303 $dl = 0;
304
305 # ~ whitespace related issue ~
306 $add_one = 0;
307 %ws = ();
308
309
310 # ~ recursion ~
311 retr_info(1, \$tree_data->[2] ); # parse input data
312
313
314 # ~ write data.xml ~
315
316 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
317 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
318 #
319
320
321 # ~ tokenization ~
322
323 if ( $_GEN_TOK_EXT ){
324
325 # Tokenize and output
326 $ext_tok->tokenize($data)->to_zip(
327 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
328 $text_id_esc
329 );
330 };
331
332 if ( $_GEN_TOK_INT ){
333
334 # Tokenize and output
335 $cons_tok->tokenize($data)->to_zip(
336 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
337 $text_id_esc
338 );
339
340 $aggr_tok->tokenize($data)->to_zip(
341 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
342 $text_id_esc
343 );
344
345 $aggr_tok->reset;
346 $cons_tok->reset;
347 };
348
349 # Encode and escape data
350 $data = escape_xml(encode( "UTF-8", $data ));
351 # note: the index still refers to the 'single character'-versions,
352 # which are counted as 1 (search for '&amp;' in data.xml and see
353 # corresponding indices in $_tokens_file)
354
355 if ($_DEBUG) {
356 $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file");
357 };
358
359 $zipper->new_stream("$dir/$_data_file")
360 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
361
362 # ~ write structures ~
Akron7501ca02020-08-01 21:05:25 +0200363 if (!$structures->empty) {
364 $structures->to_zip(
365 $zipper->new_stream("$dir/$_structure_dir/$_structure_file"),
366 $text_id_esc,
367 2 # = structure serialization
368 );
369 };
Akron598d1a72020-08-02 17:33:31 +0200370
371 # ~ write tokens ~
Akron598d1a72020-08-02 17:33:31 +0200372 if ($_TOKENS_PROC && !$tokens->empty) {
373 $tokens->to_zip(
374 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
375 $text_id_esc,
Akron7501ca02020-08-01 21:05:25 +0200376 $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline
Akron598d1a72020-08-02 17:33:31 +0200377 );
378 };
379
380
381 $data = $dir = ""; # reinit.
382
383 } else { # $dir eq ""
384
385 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
386 }
387
388 next MAIN;
389 };
390
391 # ~ inside text body ~
392
393 # ~ whitespace handling ~
394
395 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
396 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
397 #
398 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
399 # example further down and notes on 'Input restrictions' in the manpage).
400 #
401 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
402 #
403 # 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
404 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
405 #
406 # Examples (how primary text with linebreaks would be converted by below code):
407 #
408 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
409 # '...<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>'.
410
411 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
412
413 ### NOTE: this is only relevant, if a text consists of more than one line
414 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
415 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
416 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
417
418 # NOTE: not stringent ('...' stands for text):
419 #
420 # beg1............................end1 => no blank before 'beg1'
421 # beg2....<pb/>...................end2 => no blank before 'beg2'
422 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
423 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
424 #
425 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
426 # ^
427 # |_blank between 'end3' and 'beg4'
428
429 $tl++; # counter for text lines
430
431 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
432 }
433 ###
434
435 # add line to buffer
436 $buf_in .= $_;
437 };
438
Akronf57ed812020-07-27 10:37:52 +0200439 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200440
Akronf57ed812020-07-27 10:37:52 +0200441 # ~ start of header ~
442 $pfx = $1;
443 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200444
Akrone19aa3e2020-07-27 11:41:27 +0200445 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200446 ." is not in expected format ... => Aborting\n\tline=$_"
447 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100448
Akronf57ed812020-07-27 10:37:52 +0200449 # Parse header
450 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
451
452 # Header was parseable
453 if ($header) {
454
455 # Write header to zip
Akron3bdc0a32020-08-03 12:12:56 +0200456 my $file = $header->dir . '/' . $_header_file;
Akronf57ed812020-07-27 10:37:52 +0200457
Akron3378dfd2020-08-01 15:01:36 +0200458 $log->debug("Writing file $file") if $_DEBUG;
Akronf57ed812020-07-27 10:37:52 +0200459
460 $header->to_zip($zipper->new_stream($file));
461
462 # Header is for text level
463 if ($header->type eq 'text') {
464
465 # Remember dir and sigles
466 $dir = $header->dir;
467 $text_id = $header->id;
468 $text_id_esc = $header->id_esc;
469
470 # log output for seeing progression
Akron3378dfd2020-08-01 15:01:36 +0200471 $log->notice("$0: main(): text_id=".decode('UTF-8', $text_id ));
Akronf57ed812020-07-27 10:37:52 +0200472
473 $tl = 0; # reset (needed for ~ whitespace handling ~)
474 };
475 }
476 }
Peter Harders6f526a32020-06-29 21:44:41 +0200477 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100478
Akron85717512020-07-08 11:19:19 +0200479 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200480
Akron09e0b2c2020-07-28 15:57:01 +0200481 $ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100482
Peter Harders41c35622020-07-12 01:16:22 +0200483} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100484
Peter Hardersd892a582020-02-12 15:45:22 +0100485
Peter Harders41c35622020-07-12 01:16:22 +0200486sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200487 # recursion level
488 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
489 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100490
Peter Harders41c35622020-07-12 01:16:22 +0200491 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200492 #
Peter Harders41c35622020-07-12 01:16:22 +0200493 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200494 #
Peter Harders41c35622020-07-12 01:16:22 +0200495 # Print out name of 'node2' for the above example:
496 #
497 # 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"'
498 #
499 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200500 #
501 # [ 0: XML_READER_TYPE_DOCUMENT,
502 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200503 # 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 +0200504 # 1: 'node'
505 # 2: ?
506 # 3: HASH (attributes)
507 # 4: 1 (line number)
508 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
509 # 1: 'node1'
510 # 2: ?
511 # 3: undefined (no attributes)
512 # 4: 1 (line number)
513 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
514 # 1: 'some '
515 # ]
516 # 1: [ 0: XML_READER_TYPE_ELEMENT
517 # 1: 'n'
518 # 2: ?
519 # 3: undefined (no attributes)
520 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200521 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200522 # ]
523 # 2: [ 0: XML_READER_TYPE_TEXT
524 # 1: ' text'
525 # ]
526 # ]
527 # ]
528 # 1: [ 0: XML_READER_TYPE_ELEMENT
529 # 1: 'node2'
530 # 2: ?
531 # 3: undefined (not attributes)
532 # 4: 1 (line number)
533 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
534 # 1: 'more-text'
535 # ]
536 # ]
537 # ]
538 # ]
539 # ]
540 # ]
541 # ]
542 #
543 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
544 #
545 # ref($data->[2]) == ARRAY (with 1 element for 'node')
546 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
547 #
548 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
549 # $data->[2]->[0]->[1] == 'node'
550 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
551 # $data->[2]->[0]->[4] == 1 (line number)
552 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200553 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200554 #
555 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
556 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
557 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
558 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
559 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
560 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
561 #
562 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
563 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
564 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
565 #
566 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
567 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
568 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
569 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
570 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200571 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200572 #
573 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
574 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
575 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
576 #
577 #
578 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
579 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
580 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100581
Peter Harders41c35622020-07-12 01:16:22 +0200582
Peter Harders6f526a32020-06-29 21:44:41 +0200583 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100584
Peter Hardersd892a582020-02-12 15:45:22 +0100585
Peter Harders41c35622020-07-12 01:16:22 +0200586 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 +0100587
Peter Hardersd892a582020-02-12 15:45:22 +0100588
Peter Harders6f526a32020-06-29 21:44:41 +0200589 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200590 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200591 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Hardersd892a582020-02-12 15:45:22 +0100593
Peter Harders6f526a32020-06-29 21:44:41 +0200594 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100595
Akron7501ca02020-08-01 21:05:25 +0200596 # $e->[1] represents the tag name
597 my $anno = $structures->add_new_annotation($e->[1]);
Peter Hardersd892a582020-02-12 15:45:22 +0100598
Peter Harders6f526a32020-06-29 21:44:41 +0200599 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Akron7501ca02020-08-01 21:05:25 +0200601 # Add element also to token list
602 if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) {
603 $tokens->add_annotation($anno);
604 };
Peter Hardersd892a582020-02-12 15:45:22 +0100605
Peter Harders6f526a32020-06-29 21:44:41 +0200606 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100607
Peter Harders6f526a32020-06-29 21:44:41 +0200608 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100609
Peter Harders6f526a32020-06-29 21:44:41 +0200610 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
611 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
612 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100613
Peter Harders6f526a32020-06-29 21:44:41 +0200614 # '$c' references the 'key' and '$c+1' the 'value'
Akron7501ca02020-08-01 21:05:25 +0200615 $anno->add_attribute(
616 @{$e->[3]}[$c, $c + 1]
617 );
Peter Harders6f526a32020-06-29 21:44:41 +0200618 }
619 }
620
621
622 # ~ index 'from' ~
623
624 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
Akron7501ca02020-08-01 21:05:25 +0200625 $anno->set_from($dl + $add_one);
Peter Harders6f526a32020-06-29 21:44:41 +0200626
627 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200628 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200629 #~~~~
630
631
632 # ~~ RECURSION ~~
633
Peter Harders41c35622020-07-12 01:16:22 +0200634 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 +0200635
Akron1c4f2202020-07-30 09:28:22 +0200636 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200637 }
638
639
640 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200641 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200642 #~~~~~
643
644
Akron7501ca02020-08-01 21:05:25 +0200645 # ~ handle structures and tokens ~
Peter Harders6f526a32020-06-29 21:44:41 +0200646
647 {
Akron7501ca02020-08-01 21:05:25 +0200648 $fval = $anno->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200649
650 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
651
Peter Harders41c35622020-07-12 01:16:22 +0200652 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200653
Akron7501ca02020-08-01 21:05:25 +0200654 $anno->set_from($fval - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200655 }
656
657 # in case this fails, check input
658 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
659 ." than to-value ($dl) => please check. aborting ...\n"
660 if ( $fval - 1 ) > $dl;
661
Peter Harders41c35622020-07-12 01:16:22 +0200662 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200663 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
664 # 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 +0200665 # do testing with bigger corpus excerpt (wikipedia?)
Akron7501ca02020-08-01 21:05:25 +0200666 $anno->set_from($dl) if $fval == $dl + 1;
667 $anno->set_to($dl);
668 $anno->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200669
670 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
671 }
672
Peter Harders6f526a32020-06-29 21:44:41 +0200673 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100674 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200675 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100676
677
Peter Harders41c35622020-07-12 01:16:22 +0200678 #~~~~
679 # until here: tag-node (closing)
680 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100681
682
Peter Harders41c35622020-07-12 01:16:22 +0200683 #~~~~~
684 # from here: text- and whitespace-nodes
685 #~~~~~
686
687 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
688 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200689 #
Peter Harders41c35622020-07-12 01:16:22 +0200690 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
691 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
692 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200693 #
Peter Harders41c35622020-07-12 01:16:22 +0200694 # 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 +0100695
Peter Harders6f526a32020-06-29 21:44:41 +0200696 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100697
Peter Harders41c35622020-07-12 01:16:22 +0200698 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200699 #
Peter Harders41c35622020-07-12 01:16:22 +0200700 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200701 #
702 # 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 +0200703 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200704 #
Peter Harders41c35622020-07-12 01:16:22 +0200705 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
706 # 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 +0200707 #
Peter Harders41c35622020-07-12 01:16:22 +0200708 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
709 # 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 +0200710 #
Peter Harders41c35622020-07-12 01:16:22 +0200711 # 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.
712 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
713 # 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
714 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200715 #
Peter Harders41c35622020-07-12 01:16:22 +0200716 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
717 # 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 +0200718 #
Peter Harders41c35622020-07-12 01:16:22 +0200719 # [1]
720 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
721 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
722 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200723 #
Peter Harders41c35622020-07-12 01:16:22 +0200724 # [2]
725 # 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
726 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200727 #
Peter Harders41c35622020-07-12 01:16:22 +0200728 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
729 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200730 #
Peter Harders41c35622020-07-12 01:16:22 +0200731 # 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-
732 # 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 +0200733
734 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
735
Peter Harders41c35622020-07-12 01:16:22 +0200736 # ~ whitespace-node ~
737
738 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200739
740 $add_one = 0;
741
Peter Harders41c35622020-07-12 01:16:22 +0200742 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
743 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200744
745 }else{
746
747 # ~ text-node ~
748
749 $add_one = 1;
750 }
751
752
753 # ~ update $data and $dl ~
754
755 $data .= $e->[1];
756
757 $dl += length( $e->[1] ); # update length of $data
758
759
Peter Harders41c35622020-07-12 01:16:22 +0200760 #~~~~~
761 # until here: text- and whitespace-nodes
762 #~~~~~
763
764
765 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200766 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
767
768
769 }else{ # not yet handled type
770
771 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
772 }
773
774 } # end: foreach iteration
775
776} # end: sub retr_info
777
Akrond949e182020-02-14 12:23:57 +0100778__END__
779
780=pod
781
782=encoding utf8
783
784=head1 NAME
785
786tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
787
788=head1 SYNOPSIS
789
790 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
791
792=head1 DESCRIPTION
793
Akronee434b12020-07-08 12:53:01 +0200794C<tei2korapxml> is a script to convert TEI P5 and
795L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
796based documents to the
797L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
798If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100799read from C<STDIN>. If no specific output is defined, data is written
800to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200801
Akrond949e182020-02-14 12:23:57 +0100802This program is usually called from inside another script.
803
Akronee434b12020-07-08 12:53:01 +0200804=head1 FORMATS
805
806=head2 Input restrictions
807
808=over 2
809
810=item
811
812utf8 encoded
813
814=item
815
816TEI P5 formatted input with certain restrictions:
817
818=over 4
819
820=item
821
822B<mandatory>: text-header with integrated textsigle, text-body
823
824=item
825
826B<optional>: corp-header with integrated corpsigle,
827doc-header with integrated docsigle
828
829=back
830
831=item
832
833all tokens inside the primary text (inside $data) may not be
834newline seperated, because newlines are removed
835(see code section C<~ inside text body ~>) and a conversion of newlines
836into blanks between 2 tokens could lead to additional blanks,
837where there should be none (e.g.: punctuation characters like C<,> or
838C<.> should not be seperated from their predecessor token).
839(see also code section C<~ whitespace handling ~>).
840
841=back
842
843=head2 Notes on the output
844
845=over 2
846
847=item
848
849zip file output (default on C<stdout>) with utf8 encoded entries
850(which together form the KorAP-XML format)
851
852=back
853
Akrond949e182020-02-14 12:23:57 +0100854=head1 INSTALLATION
855
856C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
857these bindings are available, the preferred way to install the script is
858to use L<cpanm|App::cpanminus>.
859
860 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
861
862In case everything went well, the C<tei2korapxml> tool will
863be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +0200864
Akrond949e182020-02-14 12:23:57 +0100865Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
866
867=head1 OPTIONS
868
869=over 2
870
Akron4e603a52020-07-27 14:23:49 +0200871=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +0100872
Akron4e603a52020-07-27 14:23:49 +0200873The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +0100874
875=item B<--help|-h>
876
877Print help information.
878
879=item B<--version|-v>
880
881Print version information.
882
Akron4e603a52020-07-27 14:23:49 +0200883=item B<--tokenizer-call|-tc>
884
885Call an external tokenizer process, that will tokenize
886a single line from STDIN and outputs one token per line.
887
888=item B<--use-intern-tokenization|-ti>
889
890Tokenize the data using two embedded tokenizers,
891that will take an I<Aggressive> and a I<conservative>
892approach.
893
Akron3378dfd2020-08-01 15:01:36 +0200894=item B<--log|-l>
895
896Loglevel for I<Log::Any>. Defaults to C<notice>.
897
Akrond949e182020-02-14 12:23:57 +0100898=back
899
900=head1 COPYRIGHT AND LICENSE
901
902Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
903
904Author: Peter Harders
905
906Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
907
908L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
909Corpus Analysis Platform at the
910L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
911member of the
912L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
913
914This program is free software published under the
915L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
916
917=cut