blob: 0912d3045f32f7937ad39efa8d2a6ecdc8692cf5 [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
Akrona10ad592020-08-03 11:20:23 +020023use KorAP::XML::TEI qw!remove_xml_comments!;
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;
Akrona10ad592020-08-03 11:20:23 +020028use KorAP::XML::TEI::Data;
Akron85717512020-07-08 11:19:19 +020029use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020030use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010031
Marc Kupietz1e882fb2020-09-09 00:05:46 +020032eval {
33 require KorAP::XML::TEI::Tokenizer::KorAP;
34 1;
35};
Peter Harders1c5ce152020-07-22 18:02:50 +020036
Akrond949e182020-02-14 12:23:57 +010037our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020038
Akrond949e182020-02-14 12:23:57 +010039our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
40
Peter Hardersd892a582020-02-12 15:45:22 +010041
Peter Harders6f526a32020-06-29 21:44:41 +020042# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010043GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020044 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
45 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020046 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Marc Kupietz1e882fb2020-09-09 00:05:46 +020047 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer
Peter Hardersf9c51242020-07-21 02:37:44 +020048 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron3378dfd2020-08-01 15:01:36 +020049 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020050 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010051 pod2usage(
52 -verbose => 99,
53 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
54 -msg => $VERSION_MSG,
55 -output => '-'
56 )
57 },
58 'version|v' => sub {
59 pod2usage(
60 -verbose => 0,
61 -msg => $VERSION_MSG,
62 -output => '-'
63 )
64 }
Peter Hardersd892a582020-02-12 15:45:22 +010065);
66
Akron3378dfd2020-08-01 15:01:36 +020067Log::Any::Adapter->set('Stderr', log_level => $log_level);
68
Peter Harders6f526a32020-06-29 21:44:41 +020069#
70# ~~~ parameter (mandatory) ~~~
71#
Peter Harders6f526a32020-06-29 21:44:41 +020072my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
73 # optional
74my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
75 # optional
76my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
77 # mandatory
78my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020079
Peter Harders6f526a32020-06-29 21:44:41 +020080#
81# ~~~ constants ~~~
82#
Peter Hardersd892a582020-02-12 15:45:22 +010083
Peter Harders41c35622020-07-12 01:16:22 +020084## extern tokenization
Marc Kupietz1e882fb2020-09-09 00:05:46 +020085my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0;
86
Akron8b511f92020-07-09 17:28:08 +020087 # TODO:
88 # Read tokenizer call from configuration file.
89 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
90 my $ext_tok;
91 if ($tokenizer_call) {
92 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
Marc Kupietz1e882fb2020-09-09 00:05:46 +020093 }
94
95 elsif ($tokenizer_korap) {
96 $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new;
Akron8b511f92020-07-09 17:28:08 +020097 };
Peter Harders41c35622020-07-12 01:16:22 +020098 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020099##
100
Akron8b511f92020-07-09 17:28:08 +0200101## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +0200102my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +0200103 my $_tok_file_con = "tokens_conservative.xml";
104 my $_tok_file_agg = "tokens_aggressive.xml";
105 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
106 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +0200107##
108
109my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +0200110
Peter Harders6f526a32020-06-29 21:44:41 +0200111my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
112my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
113 # (see also manpage of XML::CompactTree::XS)
114
115my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
116my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
117my $_structure_dir = "struct"; # name of directory containing the $_structure_file
118my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
119 # (= their names and byte offsets in $_data)
120## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
121my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
122my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
123my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
124 # - evtl. with additional inline annotations
125my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
126
127## TODO: optional
128# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200129my $_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 +0200130
131# TODO:
132# These parameters are now defunct and moved to Token.pm
Peter Harders6f526a32020-06-29 21:44:41 +0200133my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
134my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
135 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
136 # - which means, that the POS information can be followed by an optional blank with additional
137 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
138my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
139my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
140my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
141##
142
143
144#
145# ~~~ variables ~~~
146#
147
Akron7501ca02020-08-01 21:05:25 +0200148# Initialize Token- and Structure-Collector
149my $tokens = KorAP::XML::TEI::Annotations::Collector->new;
150my $structures = KorAP::XML::TEI::Annotations::Collector->new;
Akron09e0b2c2020-07-28 15:57:01 +0200151
152
Akrona10ad592020-08-03 11:20:23 +0200153# Initialize Data-Collector
154my $data = KorAP::XML::TEI::Data->new;
155
156
Akron85717512020-07-08 11:19:19 +0200157# Initialize zipper
Akron3bdc0a32020-08-03 12:12:56 +0200158my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir);
Peter Harders6f526a32020-06-29 21:44:41 +0200159my $input_fh; # input file handle (default: stdin)
160
Peter Harders6f526a32020-06-29 21:44:41 +0200161my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200162
163my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
164
Peter Harders6f526a32020-06-29 21:44:41 +0200165my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
166 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
167
168# these are only used inside recursive function 'retr_info'
169my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
170 $e, # element from $tree_data
Peter Harders6f526a32020-06-29 21:44:41 +0200171 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
172 $add_one, # ...
Akron7501ca02020-08-01 21:05:25 +0200173 $fval, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200174 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
175 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200176 # (means: 'from-index - 1' is a key in %ws).
177 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
178
Akron7501ca02020-08-01 21:05:25 +0200179my $c; # index variables used in loops
Peter Harders6f526a32020-06-29 21:44:41 +0200180
Peter Harders6f526a32020-06-29 21:44:41 +0200181
182#
183# ~~~ main ~~~
184#
185
186# ~ initializations ~
187
188($_XCT_LN)?($_IDX=5):($_IDX=4);
189
Akron7501ca02020-08-01 21:05:25 +0200190$fval = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200191
Akronec2cef22020-07-31 10:00:15 +0200192# Normalize regex for header parsing
193for ($_CORP_HEADER_BEG,
194 $_DOC_HEADER_BEG,
195 $_TEXT_HEADER_BEG) {
196 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
197};
Peter Hardersd892a582020-02-12 15:45:22 +0100198
Peter Hardersd892a582020-02-12 15:45:22 +0100199
Peter Harders6f526a32020-06-29 21:44:41 +0200200# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200201main();
Peter Hardersd892a582020-02-12 15:45:22 +0100202
Peter Hardersd892a582020-02-12 15:45:22 +0100203
Peter Harders6f526a32020-06-29 21:44:41 +0200204#
205# ~~~ subs ~~~
206#
Peter Hardersd892a582020-02-12 15:45:22 +0100207
Peter Hardersd892a582020-02-12 15:45:22 +0100208
Peter Harders41c35622020-07-12 01:16:22 +0200209sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100210
Peter Harders6f526a32020-06-29 21:44:41 +0200211 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100212
Peter Harders41c35622020-07-12 01:16:22 +0200213 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200214
215 $input_fh = *STDIN; # input file handle (default: stdin)
216
Akrona10ad592020-08-03 11:20:23 +0200217 # Maybe not necessary
218 $data->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200219
Akrona10ad592020-08-03 11:20:23 +0200220 $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200221
222 if ( $input_fname ne '' ){
223
224 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
225
226 }
227
228
Peter Harders41c35622020-07-12 01:16:22 +0200229 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200230 # 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 +0200231 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
232 # 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 +0200233 binmode $input_fh;
234
Akronc1124212020-07-31 08:55:38 +0200235 my $pos;
236 my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders90157342020-07-01 21:05:14 +0200237
Peter Harders6f526a32020-06-29 21:44:41 +0200238 # ~ loop (reading input document) ~
239
Akrona10ad592020-08-03 11:20:23 +0200240 MAIN: while ( <$input_fh> ){
Peter Harders6f526a32020-06-29 21:44:41 +0200241
Akron598d1a72020-08-02 17:33:31 +0200242 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200243
244
Akron598d1a72020-08-02 17:33:31 +0200245 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200246
Peter Harders6f526a32020-06-29 21:44:41 +0200247 # ~ start of text body ~
248
Peter Harders6f526a32020-06-29 21:44:41 +0200249 $pfx = $1; $sfx = $2;
250
Akrone19aa3e2020-07-27 11:41:27 +0200251 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200252 ." contains additional information ... => Aborting\n\tline=$_"
Akrona10ad592020-08-03 11:20:23 +0200253 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
Peter Harders6f526a32020-06-29 21:44:41 +0200254
Akron598d1a72020-08-02 17:33:31 +0200255 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
256 my $buf_in = '';
257
258 # Iterate over all lines in the text body
259 while (<$input_fh>) {
260
261 $_ = remove_xml_comments( $input_fh, $_ );
262
263 # ~ end of text body ~
264 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
265
266 # write data.xml, structure.xml and evtl. morpho.xml and/or tokenization files (s.a.: $_tok_file_ext, $_tok_file_con, $_tok_file_agg)
267
268 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
269 ." contains additional information ... => Aborting\n\tline=$_"
270 if (substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/;
271
272 if ( $dir ne "" ){
273
274 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
275
276 # ~ whitespace handling ~
277 #
278 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
279 # (see function 'retr_info()').
280 #
281 # Definition of significant and insignificant whitespace
282 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
283 #
284 # Significant whitespace is part of the document content and should be preserved.
285 # Insignificant whitespace is used when editing XML documents for readability.
286 # These whitespaces are typically not intended for inclusion in the delivery of the document.
287 #
Akrona10ad592020-08-03 11:20:23 +0200288
289 my $param = XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY;
290
291 # _XCT_LINE_NUMBERS is only for debugging
292 $param |= XCT_LINE_NUMBERS if $_XCT_LN;
293 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, $param);
Akron598d1a72020-08-02 17:33:31 +0200294
Akron7501ca02020-08-01 21:05:25 +0200295 $structures->reset;
Akron598d1a72020-08-02 17:33:31 +0200296
297 if ( $_TOKENS_PROC ){
298 $tokens->reset;
299 }
300
Akron598d1a72020-08-02 17:33:31 +0200301 # ~ whitespace related issue ~
302 $add_one = 0;
303 %ws = ();
304
305
306 # ~ recursion ~
307 retr_info(1, \$tree_data->[2] ); # parse input data
308
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200309 if ($_DEBUG) {
310 $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file");
311 };
312
Akrona10ad592020-08-03 11:20:23 +0200313 # ~ write data.xml ~
314 $data->to_zip(
315 $zipper->new_stream("$dir/${_data_file}"),
316 $text_id_esc
317 );
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200318
Akron598d1a72020-08-02 17:33:31 +0200319 # ~ tokenization ~
320
321 if ( $_GEN_TOK_EXT ){
322
323 # Tokenize and output
Akrona10ad592020-08-03 11:20:23 +0200324 $ext_tok->tokenize($data->data)->to_zip(
Akron598d1a72020-08-02 17:33:31 +0200325 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
326 $text_id_esc
327 );
328 };
329
330 if ( $_GEN_TOK_INT ){
331
332 # Tokenize and output
Akrona10ad592020-08-03 11:20:23 +0200333 $cons_tok->tokenize($data->data)->to_zip(
Akron598d1a72020-08-02 17:33:31 +0200334 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
335 $text_id_esc
336 );
337
Akrona10ad592020-08-03 11:20:23 +0200338 $aggr_tok->tokenize($data->data)->to_zip(
Akron598d1a72020-08-02 17:33:31 +0200339 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
340 $text_id_esc
341 );
342
343 $aggr_tok->reset;
344 $cons_tok->reset;
345 };
346
Akron598d1a72020-08-02 17:33:31 +0200347 # ~ write structures ~
Akron7501ca02020-08-01 21:05:25 +0200348 if (!$structures->empty) {
349 $structures->to_zip(
350 $zipper->new_stream("$dir/$_structure_dir/$_structure_file"),
351 $text_id_esc,
352 2 # = structure serialization
353 );
354 };
Akron598d1a72020-08-02 17:33:31 +0200355
356 # ~ write tokens ~
Akron598d1a72020-08-02 17:33:31 +0200357 if ($_TOKENS_PROC && !$tokens->empty) {
358 $tokens->to_zip(
359 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
360 $text_id_esc,
Akron7501ca02020-08-01 21:05:25 +0200361 $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline
Akron598d1a72020-08-02 17:33:31 +0200362 );
363 };
364
365
Akrona10ad592020-08-03 11:20:23 +0200366 $dir = ""; # reinit.
367
368 # Maybe not necessary
369 $data->reset;
Akron598d1a72020-08-02 17:33:31 +0200370
371 } else { # $dir eq ""
372
373 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
374 }
375
376 next MAIN;
377 };
378
379 # ~ inside text body ~
380
381 # ~ whitespace handling ~
382
383 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
384 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
385 #
386 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
387 # example further down and notes on 'Input restrictions' in the manpage).
388 #
389 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
390 #
391 # 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
392 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
393 #
394 # Examples (how primary text with linebreaks would be converted by below code):
395 #
396 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
397 # '...<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>'.
398
399 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
400
401 ### NOTE: this is only relevant, if a text consists of more than one line
402 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
403 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
404 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
405
406 # NOTE: not stringent ('...' stands for text):
407 #
408 # beg1............................end1 => no blank before 'beg1'
409 # beg2....<pb/>...................end2 => no blank before 'beg2'
410 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
411 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
412 #
413 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
414 # ^
415 # |_blank between 'end3' and 'beg4'
416
417 $tl++; # counter for text lines
418
419 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
420 }
421 ###
422
423 # add line to buffer
424 $buf_in .= $_;
425 };
426
Akronf57ed812020-07-27 10:37:52 +0200427 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200428
Akronf57ed812020-07-27 10:37:52 +0200429 # ~ start of header ~
430 $pfx = $1;
431 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200432
Akrone19aa3e2020-07-27 11:41:27 +0200433 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200434 ." is not in expected format ... => Aborting\n\tline=$_"
435 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100436
Akronf57ed812020-07-27 10:37:52 +0200437 # Parse header
438 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
439
440 # Header was parseable
441 if ($header) {
442
443 # Write header to zip
Akron3bdc0a32020-08-03 12:12:56 +0200444 my $file = $header->dir . '/' . $_header_file;
Akronf57ed812020-07-27 10:37:52 +0200445
Akron3378dfd2020-08-01 15:01:36 +0200446 $log->debug("Writing file $file") if $_DEBUG;
Akronf57ed812020-07-27 10:37:52 +0200447
448 $header->to_zip($zipper->new_stream($file));
449
450 # Header is for text level
451 if ($header->type eq 'text') {
452
453 # Remember dir and sigles
454 $dir = $header->dir;
455 $text_id = $header->id;
456 $text_id_esc = $header->id_esc;
457
458 # log output for seeing progression
Akron3378dfd2020-08-01 15:01:36 +0200459 $log->notice("$0: main(): text_id=".decode('UTF-8', $text_id ));
Akronf57ed812020-07-27 10:37:52 +0200460
461 $tl = 0; # reset (needed for ~ whitespace handling ~)
462 };
463 }
464 }
Peter Harders6f526a32020-06-29 21:44:41 +0200465 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100466
Akron85717512020-07-08 11:19:19 +0200467 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200468
Akron09e0b2c2020-07-28 15:57:01 +0200469 $ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100470
Peter Harders41c35622020-07-12 01:16:22 +0200471} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100472
Peter Hardersd892a582020-02-12 15:45:22 +0100473
Peter Harders41c35622020-07-12 01:16:22 +0200474sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200475 # recursion level
476 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
477 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100478
Peter Harders41c35622020-07-12 01:16:22 +0200479 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200480 #
Peter Harders41c35622020-07-12 01:16:22 +0200481 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200482 #
Peter Harders41c35622020-07-12 01:16:22 +0200483 # Print out name of 'node2' for the above example:
484 #
485 # 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"'
486 #
487 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200488 #
489 # [ 0: XML_READER_TYPE_DOCUMENT,
490 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200491 # 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 +0200492 # 1: 'node'
493 # 2: ?
494 # 3: HASH (attributes)
495 # 4: 1 (line number)
496 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
497 # 1: 'node1'
498 # 2: ?
499 # 3: undefined (no attributes)
500 # 4: 1 (line number)
501 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
502 # 1: 'some '
503 # ]
504 # 1: [ 0: XML_READER_TYPE_ELEMENT
505 # 1: 'n'
506 # 2: ?
507 # 3: undefined (no attributes)
508 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200509 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200510 # ]
511 # 2: [ 0: XML_READER_TYPE_TEXT
512 # 1: ' text'
513 # ]
514 # ]
515 # ]
516 # 1: [ 0: XML_READER_TYPE_ELEMENT
517 # 1: 'node2'
518 # 2: ?
519 # 3: undefined (not attributes)
520 # 4: 1 (line number)
521 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
522 # 1: 'more-text'
523 # ]
524 # ]
525 # ]
526 # ]
527 # ]
528 # ]
529 # ]
530 #
531 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
532 #
533 # ref($data->[2]) == ARRAY (with 1 element for 'node')
534 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
535 #
536 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
537 # $data->[2]->[0]->[1] == 'node'
538 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
539 # $data->[2]->[0]->[4] == 1 (line number)
540 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200541 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200542 #
543 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
544 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
545 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
546 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
547 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
548 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
549 #
550 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
551 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
552 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
553 #
554 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
555 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
556 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
557 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
558 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200559 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200560 #
561 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
562 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
563 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
564 #
565 #
566 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
567 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
568 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100569
Peter Harders41c35622020-07-12 01:16:22 +0200570
Peter Harders6f526a32020-06-29 21:44:41 +0200571 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100572
Peter Harders41c35622020-07-12 01:16:22 +0200573 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 +0100574
Peter Hardersd892a582020-02-12 15:45:22 +0100575
Peter Harders6f526a32020-06-29 21:44:41 +0200576 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200577 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200578 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100579
Peter Hardersd892a582020-02-12 15:45:22 +0100580
Peter Harders6f526a32020-06-29 21:44:41 +0200581 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100582
Akron7501ca02020-08-01 21:05:25 +0200583 # $e->[1] represents the tag name
584 my $anno = $structures->add_new_annotation($e->[1]);
Peter Hardersd892a582020-02-12 15:45:22 +0100585
Peter Harders6f526a32020-06-29 21:44:41 +0200586 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100587
Akron7501ca02020-08-01 21:05:25 +0200588 # Add element also to token list
589 if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) {
590 $tokens->add_annotation($anno);
591 };
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Harders6f526a32020-06-29 21:44:41 +0200593 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100594
Peter Harders6f526a32020-06-29 21:44:41 +0200595 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100596
Peter Harders6f526a32020-06-29 21:44:41 +0200597 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
598 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
599 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Harders6f526a32020-06-29 21:44:41 +0200601 # '$c' references the 'key' and '$c+1' the 'value'
Akron7501ca02020-08-01 21:05:25 +0200602 $anno->add_attribute(
603 @{$e->[3]}[$c, $c + 1]
604 );
Peter Harders6f526a32020-06-29 21:44:41 +0200605 }
606 }
607
608
609 # ~ index 'from' ~
610
611 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
Akrona10ad592020-08-03 11:20:23 +0200612 $anno->set_from($data->position + $add_one);
Peter Harders6f526a32020-06-29 21:44:41 +0200613
614 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200615 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200616 #~~~~
617
618
619 # ~~ RECURSION ~~
620
Peter Harders41c35622020-07-12 01:16:22 +0200621 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 +0200622
Akron1c4f2202020-07-30 09:28:22 +0200623 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200624 }
625
626
627 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200628 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200629 #~~~~~
630
Akrona10ad592020-08-03 11:20:23 +0200631 my $pos = $data->position;
Peter Harders6f526a32020-06-29 21:44:41 +0200632
Akron7501ca02020-08-01 21:05:25 +0200633 # ~ handle structures and tokens ~
Peter Harders6f526a32020-06-29 21:44:41 +0200634
635 {
Akron7501ca02020-08-01 21:05:25 +0200636 $fval = $anno->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200637
638 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
639
Peter Harders41c35622020-07-12 01:16:22 +0200640 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200641
Akron7501ca02020-08-01 21:05:25 +0200642 $anno->set_from($fval - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200643 }
644
645 # in case this fails, check input
646 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
Akrona10ad592020-08-03 11:20:23 +0200647 ." than to-value ($pos) => please check. aborting ...\n"
648 if ( $fval - 1 ) > $pos;
Peter Harders6f526a32020-06-29 21:44:41 +0200649
Peter Harders41c35622020-07-12 01:16:22 +0200650 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200651 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
Akrona10ad592020-08-03 11:20:23 +0200652 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $pos;
Peter Harders41c35622020-07-12 01:16:22 +0200653 # do testing with bigger corpus excerpt (wikipedia?)
Akrona10ad592020-08-03 11:20:23 +0200654 $anno->set_from($pos) if $fval == $pos + 1;
655 $anno->set_to($pos);
Akron7501ca02020-08-01 21:05:25 +0200656 $anno->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200657
Akrona10ad592020-08-03 11:20:23 +0200658 # note: use $pos, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
Peter Harders6f526a32020-06-29 21:44:41 +0200659 }
660
Peter Harders6f526a32020-06-29 21:44:41 +0200661 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100662 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200663 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100664
665
Peter Harders41c35622020-07-12 01:16:22 +0200666 #~~~~
667 # until here: tag-node (closing)
668 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100669
670
Peter Harders41c35622020-07-12 01:16:22 +0200671 #~~~~~
672 # from here: text- and whitespace-nodes
673 #~~~~~
674
675 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
676 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200677 #
Peter Harders41c35622020-07-12 01:16:22 +0200678 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
679 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
680 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200681 #
Peter Harders41c35622020-07-12 01:16:22 +0200682 # 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 +0100683
Peter Harders6f526a32020-06-29 21:44:41 +0200684 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100685
Peter Harders41c35622020-07-12 01:16:22 +0200686 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200687 #
Peter Harders41c35622020-07-12 01:16:22 +0200688 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200689 #
690 # 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 +0200691 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200692 #
Peter Harders41c35622020-07-12 01:16:22 +0200693 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
694 # 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 +0200695 #
Peter Harders41c35622020-07-12 01:16:22 +0200696 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
697 # 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 +0200698 #
Peter Harders41c35622020-07-12 01:16:22 +0200699 # 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.
700 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
701 # 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
702 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200703 #
Peter Harders41c35622020-07-12 01:16:22 +0200704 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
Akrona10ad592020-08-03 11:20:23 +0200705 # additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $pos).
Peter Harders6f526a32020-06-29 21:44:41 +0200706 #
Peter Harders41c35622020-07-12 01:16:22 +0200707 # [1]
708 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
709 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
710 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200711 #
Peter Harders41c35622020-07-12 01:16:22 +0200712 # [2]
713 # 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
714 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200715 #
Peter Harders41c35622020-07-12 01:16:22 +0200716 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
717 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200718 #
Peter Harders41c35622020-07-12 01:16:22 +0200719 # 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-
720 # 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 +0200721
722 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
723
Peter Harders41c35622020-07-12 01:16:22 +0200724 # ~ whitespace-node ~
725
726 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200727
728 $add_one = 0;
729
Akrona10ad592020-08-03 11:20:23 +0200730 # state, that this from-index belongs to a whitespace-node
731 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
732 $ws{$data->position}++;
Peter Harders6f526a32020-06-29 21:44:41 +0200733
734 }else{
735
736 # ~ text-node ~
737
738 $add_one = 1;
739 }
740
741
Akrona10ad592020-08-03 11:20:23 +0200742 # ~ update $data ~
Peter Harders6f526a32020-06-29 21:44:41 +0200743
Akrona10ad592020-08-03 11:20:23 +0200744 $data->append($e->[1]);
Peter Harders6f526a32020-06-29 21:44:41 +0200745
Peter Harders41c35622020-07-12 01:16:22 +0200746 #~~~~~
747 # until here: text- and whitespace-nodes
748 #~~~~~
749
750
751 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200752 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
753
754
755 }else{ # not yet handled type
756
757 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
758 }
759
760 } # end: foreach iteration
761
762} # end: sub retr_info
763
Akrond949e182020-02-14 12:23:57 +0100764__END__
765
766=pod
767
768=encoding utf8
769
770=head1 NAME
771
772tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
773
774=head1 SYNOPSIS
775
776 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
777
778=head1 DESCRIPTION
779
Akronee434b12020-07-08 12:53:01 +0200780C<tei2korapxml> is a script to convert TEI P5 and
781L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
782based documents to the
783L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
784If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100785read from C<STDIN>. If no specific output is defined, data is written
786to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200787
Akrond949e182020-02-14 12:23:57 +0100788This program is usually called from inside another script.
789
Akronee434b12020-07-08 12:53:01 +0200790=head1 FORMATS
791
792=head2 Input restrictions
793
794=over 2
795
796=item
797
798utf8 encoded
799
800=item
801
802TEI P5 formatted input with certain restrictions:
803
804=over 4
805
806=item
807
808B<mandatory>: text-header with integrated textsigle, text-body
809
810=item
811
812B<optional>: corp-header with integrated corpsigle,
813doc-header with integrated docsigle
814
815=back
816
817=item
818
819all tokens inside the primary text (inside $data) may not be
820newline seperated, because newlines are removed
821(see code section C<~ inside text body ~>) and a conversion of newlines
822into blanks between 2 tokens could lead to additional blanks,
823where there should be none (e.g.: punctuation characters like C<,> or
824C<.> should not be seperated from their predecessor token).
825(see also code section C<~ whitespace handling ~>).
826
827=back
828
829=head2 Notes on the output
830
831=over 2
832
833=item
834
835zip file output (default on C<stdout>) with utf8 encoded entries
836(which together form the KorAP-XML format)
837
838=back
839
Akrond949e182020-02-14 12:23:57 +0100840=head1 INSTALLATION
841
842C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
843these bindings are available, the preferred way to install the script is
844to use L<cpanm|App::cpanminus>.
845
846 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
847
848In case everything went well, the C<tei2korapxml> tool will
849be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +0200850
Akrond949e182020-02-14 12:23:57 +0100851Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
852
853=head1 OPTIONS
854
855=over 2
856
Akron4e603a52020-07-27 14:23:49 +0200857=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +0100858
Akron4e603a52020-07-27 14:23:49 +0200859The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +0100860
861=item B<--help|-h>
862
863Print help information.
864
865=item B<--version|-v>
866
867Print version information.
868
Akron4e603a52020-07-27 14:23:49 +0200869=item B<--tokenizer-call|-tc>
870
871Call an external tokenizer process, that will tokenize
872a single line from STDIN and outputs one token per line.
873
Marc Kupietz1e882fb2020-09-09 00:05:46 +0200874=item B<--tokenizer-korap|-tk>
875
876Use the standard KorAP/DeReKo tokenizer.
877
Akron4e603a52020-07-27 14:23:49 +0200878=item B<--use-intern-tokenization|-ti>
879
880Tokenize the data using two embedded tokenizers,
881that will take an I<Aggressive> and a I<conservative>
882approach.
883
Akron3378dfd2020-08-01 15:01:36 +0200884=item B<--log|-l>
885
886Loglevel for I<Log::Any>. Defaults to C<notice>.
887
Akrond949e182020-02-14 12:23:57 +0100888=back
889
890=head1 COPYRIGHT AND LICENSE
891
892Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
893
894Author: Peter Harders
895
896Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
897
898L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
899Corpus Analysis Platform at the
900L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
901member of the
902L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
903
904This program is free software published under the
905L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
906
907=cut