blob: 0e72931b5b400719e70c074dd602bd0cf17844cb [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
Marc Kupietzfd0e6a92020-09-09 18:07:29 +020023use KorAP::XML::TEI qw!remove_xml_comments escape_xml escape_xml_minimal!;
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;
Akron09e0b2c2020-07-28 15:57:01 +020027use KorAP::XML::TEI::Tokenizer::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
Marc Kupietz1e882fb2020-09-09 00:05:46 +020031eval {
32 require KorAP::XML::TEI::Tokenizer::KorAP;
33 1;
34};
Peter Harders1c5ce152020-07-22 18:02:50 +020035
Akrond949e182020-02-14 12:23:57 +010036our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020037
Akrond949e182020-02-14 12:23:57 +010038our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
39
Peter Hardersd892a582020-02-12 15:45:22 +010040
Peter Harders6f526a32020-06-29 21:44:41 +020041# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010042GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020043 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
44 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020045 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Marc Kupietz1e882fb2020-09-09 00:05:46 +020046 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer
Peter Hardersf9c51242020-07-21 02:37:44 +020047 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron3378dfd2020-08-01 15:01:36 +020048 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020049 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010050 pod2usage(
51 -verbose => 99,
52 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
53 -msg => $VERSION_MSG,
54 -output => '-'
55 )
56 },
57 'version|v' => sub {
58 pod2usage(
59 -verbose => 0,
60 -msg => $VERSION_MSG,
61 -output => '-'
62 )
63 }
Peter Hardersd892a582020-02-12 15:45:22 +010064);
65
Akron3378dfd2020-08-01 15:01:36 +020066Log::Any::Adapter->set('Stderr', log_level => $log_level);
67
Peter Harders6f526a32020-06-29 21:44:41 +020068#
69# ~~~ parameter (mandatory) ~~~
70#
Peter Harders6f526a32020-06-29 21:44:41 +020071my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
72 # optional
73my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
74 # optional
75my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
76 # mandatory
77my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020078
Peter Harders6f526a32020-06-29 21:44:41 +020079#
80# ~~~ constants ~~~
81#
Peter Hardersd892a582020-02-12 15:45:22 +010082
Peter Harders41c35622020-07-12 01:16:22 +020083## extern tokenization
Marc Kupietz1e882fb2020-09-09 00:05:46 +020084my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0;
85
Akron8b511f92020-07-09 17:28:08 +020086 # TODO:
87 # Read tokenizer call from configuration file.
88 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
89 my $ext_tok;
90 if ($tokenizer_call) {
91 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
Marc Kupietz1e882fb2020-09-09 00:05:46 +020092 }
93
94 elsif ($tokenizer_korap) {
95 $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new;
Akron8b511f92020-07-09 17:28:08 +020096 };
Peter Harders41c35622020-07-12 01:16:22 +020097 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020098##
99
Akron8b511f92020-07-09 17:28:08 +0200100## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +0200101my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +0200102 my $_tok_file_con = "tokens_conservative.xml";
103 my $_tok_file_agg = "tokens_aggressive.xml";
104 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
105 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +0200106##
107
108my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +0200109
Peter Harders6f526a32020-06-29 21:44:41 +0200110my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
111my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
112 # (see also manpage of XML::CompactTree::XS)
113
114my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
115my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
116my $_structure_dir = "struct"; # name of directory containing the $_structure_file
117my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
118 # (= their names and byte offsets in $_data)
119## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
120my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
121my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
122my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
123 # - evtl. with additional inline annotations
124my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
125
126## TODO: optional
127# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200128my $_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 +0200129
130# TODO:
131# These parameters are now defunct and moved to Token.pm
Peter Harders6f526a32020-06-29 21:44:41 +0200132my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
133my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
134 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
135 # - which means, that the POS information can be followed by an optional blank with additional
136 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
137my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
138my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
139my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
140##
141
142
143#
144# ~~~ variables ~~~
145#
146
Akron09e0b2c2020-07-28 15:57:01 +0200147# Initialize Token-Collector
148my $tokens = KorAP::XML::TEI::Tokenizer::Collector->new;
149
150
Akron85717512020-07-08 11:19:19 +0200151# Initialize zipper
Akron3bdc0a32020-08-03 12:12:56 +0200152my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir);
Peter Harders6f526a32020-06-29 21:44:41 +0200153my $input_fh; # input file handle (default: stdin)
154
Peter Harders6f526a32020-06-29 21:44:41 +0200155my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
156
157my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200158
159my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
160
Akronf57ed812020-07-27 10:37:52 +0200161my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200162
Peter Harders6f526a32020-06-29 21:44:41 +0200163
164my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
165 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
166
Akron09e0b2c2020-07-28 15:57:01 +0200167my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures'
Peter Harders6f526a32020-06-29 21:44:41 +0200168
169my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
170 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
171
172# these are only used inside recursive function 'retr_info'
173my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
174 $e, # element from $tree_data
175 $n, # tag name of actual processed element $e
Peter Harders6f526a32020-06-29 21:44:41 +0200176 $dl, # actual length of string $data
177 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
178 # represents the actual processed element from @structures
Peter Harders6f526a32020-06-29 21:44:41 +0200179 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
180 $add_one, # ...
181 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200182 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
183 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200184 # (means: 'from-index - 1' is a key in %ws).
185 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
186
187my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
188
189my ( $i, $c ); # index variables used in loops
190
Peter Harders6f526a32020-06-29 21:44:41 +0200191
192#
193# ~~~ main ~~~
194#
195
196# ~ initializations ~
197
198($_XCT_LN)?($_IDX=5):($_IDX=4);
199
Akronf57ed812020-07-27 10:37:52 +0200200$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200201
Peter Harders6f526a32020-06-29 21:44:41 +0200202$fval = $fval2 = 0;
203
Akronec2cef22020-07-31 10:00:15 +0200204# Normalize regex for header parsing
205for ($_CORP_HEADER_BEG,
206 $_DOC_HEADER_BEG,
207 $_TEXT_HEADER_BEG) {
208 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
209};
Peter Hardersd892a582020-02-12 15:45:22 +0100210
211$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
212$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
213$data_prfx1 .= "<raw_text docid=\"";
214$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200215## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100216$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200217##
Peter Hardersd892a582020-02-12 15:45:22 +0100218$data_prfx2 .= " <text>";
219$data_sfx = "</text>\n</raw_text>";
220
Peter Hardersd892a582020-02-12 15:45:22 +0100221
Peter Harders6f526a32020-06-29 21:44:41 +0200222# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200223main();
Peter Hardersd892a582020-02-12 15:45:22 +0100224
Peter Hardersd892a582020-02-12 15:45:22 +0100225
Peter Harders6f526a32020-06-29 21:44:41 +0200226#
227# ~~~ subs ~~~
228#
Peter Hardersd892a582020-02-12 15:45:22 +0100229
Peter Hardersd892a582020-02-12 15:45:22 +0100230
Peter Harders41c35622020-07-12 01:16:22 +0200231sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100232
Peter Harders6f526a32020-06-29 21:44:41 +0200233 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100234
Peter Harders41c35622020-07-12 01:16:22 +0200235 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200236
237 $input_fh = *STDIN; # input file handle (default: stdin)
238
Akron598d1a72020-08-02 17:33:31 +0200239 $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200240
241
242 if ( $input_fname ne '' ){
243
244 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
245
246 }
247
248
Peter Harders41c35622020-07-12 01:16:22 +0200249 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200250 # 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 +0200251 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
252 # 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 +0200253 binmode $input_fh;
254
Akronc1124212020-07-31 08:55:38 +0200255 my $pos;
256 my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders90157342020-07-01 21:05:14 +0200257
Peter Harders6f526a32020-06-29 21:44:41 +0200258 # ~ loop (reading input document) ~
259
Akron598d1a72020-08-02 17:33:31 +0200260 MAIN: while ( <$input_fh> ){
Peter Harders6f526a32020-06-29 21:44:41 +0200261
Akron598d1a72020-08-02 17:33:31 +0200262 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200263
264
Akron598d1a72020-08-02 17:33:31 +0200265 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200266
Peter Harders6f526a32020-06-29 21:44:41 +0200267 # ~ start of text body ~
268
Peter Harders6f526a32020-06-29 21:44:41 +0200269 $pfx = $1; $sfx = $2;
270
Akrone19aa3e2020-07-27 11:41:27 +0200271 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200272 ." contains additional information ... => Aborting\n\tline=$_"
273 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
274
Akron598d1a72020-08-02 17:33:31 +0200275 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
276 my $buf_in = '';
277
278 # Iterate over all lines in the text body
279 while (<$input_fh>) {
280
281 $_ = remove_xml_comments( $input_fh, $_ );
282
283 # ~ end of text body ~
284 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
285
286 # write data.xml, structure.xml and evtl. morpho.xml and/or tokenization files (s.a.: $_tok_file_ext, $_tok_file_con, $_tok_file_agg)
287
288 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
289 ." contains additional information ... => Aborting\n\tline=$_"
290 if (substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/;
291
292 if ( $dir ne "" ){
293
294 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
295
296 # ~ whitespace handling ~
297 #
298 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
299 # (see function 'retr_info()').
300 #
301 # Definition of significant and insignificant whitespace
302 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
303 #
304 # Significant whitespace is part of the document content and should be preserved.
305 # Insignificant whitespace is used when editing XML documents for readability.
306 # These whitespaces are typically not intended for inclusion in the delivery of the document.
307 #
308 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
309 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
310 } else {
311 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
312 }
313
314 @structures = (); @oti = ();
315
316 if ( $_TOKENS_PROC ){
317 $tokens->reset;
318 }
319
320 $dl = 0;
321
322 # ~ whitespace related issue ~
323 $add_one = 0;
324 %ws = ();
325
326
327 # ~ recursion ~
328 retr_info(1, \$tree_data->[2] ); # parse input data
329
330
331 # ~ write data.xml ~
332
333 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
334 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
335 #
336
337
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200338 # Encode and escape data
339 my $escaped_data = escape_xml_minimal(encode( "UTF-8", $data ));
340 # note: the index still refers to the 'single character'-versions,
341 # which are counted as 1 (search for '&amp;' in data.xml and see
342 # corresponding indices in $_tokens_file)
343
344 if ($_DEBUG) {
345 $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file");
346 };
347
348 $zipper->new_stream("$dir/$_data_file")
349 ->print("$data_prfx1$text_id_esc$data_prfx2$escaped_data$data_sfx");
350
351
Akron598d1a72020-08-02 17:33:31 +0200352 # ~ tokenization ~
353
354 if ( $_GEN_TOK_EXT ){
355
356 # Tokenize and output
357 $ext_tok->tokenize($data)->to_zip(
358 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
359 $text_id_esc
360 );
361 };
362
363 if ( $_GEN_TOK_INT ){
364
365 # Tokenize and output
366 $cons_tok->tokenize($data)->to_zip(
367 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
368 $text_id_esc
369 );
370
371 $aggr_tok->tokenize($data)->to_zip(
372 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
373 $text_id_esc
374 );
375
376 $aggr_tok->reset;
377 $cons_tok->reset;
378 };
379
Akron598d1a72020-08-02 17:33:31 +0200380 # ~ write structures ~
381
382 write_structures() if @structures;
383
384
385 # ~ write tokens ~
386
387 if ($_TOKENS_PROC && !$tokens->empty) {
388 $tokens->to_zip(
389 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
390 $text_id_esc,
391 $_INLINE_ANNOT
392 );
393 };
394
395
396 $data = $dir = ""; # reinit.
397
398 } else { # $dir eq ""
399
400 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
401 }
402
403 next MAIN;
404 };
405
406 # ~ inside text body ~
407
408 # ~ whitespace handling ~
409
410 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
411 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
412 #
413 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
414 # example further down and notes on 'Input restrictions' in the manpage).
415 #
416 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
417 #
418 # 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
419 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
420 #
421 # Examples (how primary text with linebreaks would be converted by below code):
422 #
423 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
424 # '...<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>'.
425
426 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
427
428 ### NOTE: this is only relevant, if a text consists of more than one line
429 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
430 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
431 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
432
433 # NOTE: not stringent ('...' stands for text):
434 #
435 # beg1............................end1 => no blank before 'beg1'
436 # beg2....<pb/>...................end2 => no blank before 'beg2'
437 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
438 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
439 #
440 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
441 # ^
442 # |_blank between 'end3' and 'beg4'
443
444 $tl++; # counter for text lines
445
446 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
447 }
448 ###
449
450 # add line to buffer
451 $buf_in .= $_;
452 };
453
Akronf57ed812020-07-27 10:37:52 +0200454 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200455
Akronf57ed812020-07-27 10:37:52 +0200456 # ~ start of header ~
457 $pfx = $1;
458 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200459
Akrone19aa3e2020-07-27 11:41:27 +0200460 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200461 ." is not in expected format ... => Aborting\n\tline=$_"
462 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100463
Akronf57ed812020-07-27 10:37:52 +0200464 # Parse header
465 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
466
467 # Header was parseable
468 if ($header) {
469
470 # Write header to zip
Akron3bdc0a32020-08-03 12:12:56 +0200471 my $file = $header->dir . '/' . $_header_file;
Akronf57ed812020-07-27 10:37:52 +0200472
Akron3378dfd2020-08-01 15:01:36 +0200473 $log->debug("Writing file $file") if $_DEBUG;
Akronf57ed812020-07-27 10:37:52 +0200474
475 $header->to_zip($zipper->new_stream($file));
476
477 # Header is for text level
478 if ($header->type eq 'text') {
479
480 # Remember dir and sigles
481 $dir = $header->dir;
482 $text_id = $header->id;
483 $text_id_esc = $header->id_esc;
484
485 # log output for seeing progression
Akron3378dfd2020-08-01 15:01:36 +0200486 $log->notice("$0: main(): text_id=".decode('UTF-8', $text_id ));
Akronf57ed812020-07-27 10:37:52 +0200487
488 $tl = 0; # reset (needed for ~ whitespace handling ~)
489 };
490 }
491 }
Peter Harders6f526a32020-06-29 21:44:41 +0200492 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100493
Akron85717512020-07-08 11:19:19 +0200494 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200495
Akron09e0b2c2020-07-28 15:57:01 +0200496 $ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100497
Peter Harders41c35622020-07-12 01:16:22 +0200498} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100499
Peter Hardersd892a582020-02-12 15:45:22 +0100500
Peter Harders41c35622020-07-12 01:16:22 +0200501sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200502 # recursion level
503 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
504 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100505
Peter Harders41c35622020-07-12 01:16:22 +0200506 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200507 #
Peter Harders41c35622020-07-12 01:16:22 +0200508 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200509 #
Peter Harders41c35622020-07-12 01:16:22 +0200510 # Print out name of 'node2' for the above example:
511 #
512 # 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"'
513 #
514 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200515 #
516 # [ 0: XML_READER_TYPE_DOCUMENT,
517 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200518 # 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 +0200519 # 1: 'node'
520 # 2: ?
521 # 3: HASH (attributes)
522 # 4: 1 (line number)
523 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
524 # 1: 'node1'
525 # 2: ?
526 # 3: undefined (no attributes)
527 # 4: 1 (line number)
528 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
529 # 1: 'some '
530 # ]
531 # 1: [ 0: XML_READER_TYPE_ELEMENT
532 # 1: 'n'
533 # 2: ?
534 # 3: undefined (no attributes)
535 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200536 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200537 # ]
538 # 2: [ 0: XML_READER_TYPE_TEXT
539 # 1: ' text'
540 # ]
541 # ]
542 # ]
543 # 1: [ 0: XML_READER_TYPE_ELEMENT
544 # 1: 'node2'
545 # 2: ?
546 # 3: undefined (not attributes)
547 # 4: 1 (line number)
548 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
549 # 1: 'more-text'
550 # ]
551 # ]
552 # ]
553 # ]
554 # ]
555 # ]
556 # ]
557 #
558 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
559 #
560 # ref($data->[2]) == ARRAY (with 1 element for 'node')
561 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
562 #
563 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
564 # $data->[2]->[0]->[1] == 'node'
565 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
566 # $data->[2]->[0]->[4] == 1 (line number)
567 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200568 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200569 #
570 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
571 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
572 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
573 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
574 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
575 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
576 #
577 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
578 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
579 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
580 #
581 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
582 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
583 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
584 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
585 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200586 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200587 #
588 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
589 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
590 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
591 #
592 #
593 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
594 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
595 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100596
Peter Harders41c35622020-07-12 01:16:22 +0200597
Peter Harders6f526a32020-06-29 21:44:41 +0200598 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100599
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Harders41c35622020-07-12 01:16:22 +0200601 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 +0100602
Peter Hardersd892a582020-02-12 15:45:22 +0100603
Peter Harders6f526a32020-06-29 21:44:41 +0200604 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200605 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200606 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100607
Peter Hardersd892a582020-02-12 15:45:22 +0100608
Peter Harders6f526a32020-06-29 21:44:41 +0200609 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
610 # 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 +0100611
Peter Harders6f526a32020-06-29 21:44:41 +0200612 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100613
Peter Harders6f526a32020-06-29 21:44:41 +0200614 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100615
Peter Hardersd892a582020-02-12 15:45:22 +0100616
Peter Harders6f526a32020-06-29 21:44:41 +0200617 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100618
Peter Harders6f526a32020-06-29 21:44:41 +0200619 my @array;
620 push @array, $n;
621 push @structures, \@array;
622 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100623
Peter Hardersd892a582020-02-12 15:45:22 +0100624
Peter Harders6f526a32020-06-29 21:44:41 +0200625 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100626
Akron09e0b2c2020-07-28 15:57:01 +0200627 # Wether to push entry also into tokens
Akron0eacef72020-07-30 11:51:28 +0200628 my $inside_tokens_tag = 1 if $_TOKENS_PROC && $n eq $_TOKENS_TAG;
Peter Hardersd892a582020-02-12 15:45:22 +0100629
Akron09e0b2c2020-07-28 15:57:01 +0200630 my $current_token;
631
632 # Add element to token list
Akron0eacef72020-07-30 11:51:28 +0200633 if ($inside_tokens_tag) {
Akron09e0b2c2020-07-28 15:57:01 +0200634 $current_token = $tokens->add_token($n); # TODO: adding $n is of no use (redundant)
Peter Harders6f526a32020-06-29 21:44:41 +0200635 }
Peter Hardersd892a582020-02-12 15:45:22 +0100636
Peter Hardersd892a582020-02-12 15:45:22 +0100637
Peter Harders6f526a32020-06-29 21:44:41 +0200638 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100639
Peter Harders6f526a32020-06-29 21:44:41 +0200640 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100641
Peter Harders6f526a32020-06-29 21:44:41 +0200642 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
643 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
644 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100645
Peter Harders6f526a32020-06-29 21:44:41 +0200646 # '$c' references the 'key' and '$c+1' the 'value'
647 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100648
Akron0eacef72020-07-30 11:51:28 +0200649 if ($inside_tokens_tag) {
Peter Hardersd892a582020-02-12 15:45:22 +0100650
Akron09e0b2c2020-07-28 15:57:01 +0200651 # Add attributes to current token
652 $current_token->add_attribute(
653 @{$e->[3]}[$c, $c + 1]
654 );
Peter Harders6f526a32020-06-29 21:44:41 +0200655 }
Peter Harders6f526a32020-06-29 21:44:41 +0200656 }
657 }
658
659
660 # ~ index 'from' ~
661
662 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
663
Peter Harders41c35622020-07-12 01:16:22 +0200664 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200665
Akron0eacef72020-07-30 11:51:28 +0200666 if ($inside_tokens_tag) {
Peter Harders6f526a32020-06-29 21:44:41 +0200667
Akron09e0b2c2020-07-28 15:57:01 +0200668 # Set from value to tokens
669 $current_token->set_from($dl + $add_one);
670 };
Peter Harders6f526a32020-06-29 21:44:41 +0200671
672
673 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200674 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200675 #~~~~
676
677
678 # ~~ RECURSION ~~
679
Peter Harders41c35622020-07-12 01:16:22 +0200680 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 +0200681
Akron1c4f2202020-07-30 09:28:22 +0200682 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200683 }
684
685
686 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200687 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200688 #~~~~~
689
690
691 # ~ handle structures ~
692
693 {
694 my $ix = pop @oti; # index of just closed tag
695
696 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
697
698 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
699
700 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
701
Peter Harders41c35622020-07-12 01:16:22 +0200702 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200703
Peter Harders41c35622020-07-12 01:16:22 +0200704 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200705 }
706
707 # in case this fails, check input
708 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
709 ." than to-value ($dl) => please check. aborting ...\n"
710 if ( $fval - 1 ) > $dl;
711
Peter Harders41c35622020-07-12 01:16:22 +0200712 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200713 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
714 # 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 +0200715 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200716 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
717
718 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
719
720 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
721 }
722
723
724 # ~ handle tokens ~
725
726
Akron0eacef72020-07-30 11:51:28 +0200727 if ($inside_tokens_tag) {
Peter Harders6f526a32020-06-29 21:44:41 +0200728
Akron09e0b2c2020-07-28 15:57:01 +0200729 # Check last added token
730 my $last_token = $tokens->last_token;
Peter Harders6f526a32020-06-29 21:44:41 +0200731
Akron09e0b2c2020-07-28 15:57:01 +0200732 # Get from-value from last added token
733 my $fval2 = $last_token->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200734
735 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
736
Peter Harders41c35622020-07-12 01:16:22 +0200737 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200738
Akron09e0b2c2020-07-28 15:57:01 +0200739 # recorrect from-value
740 # (see below: Notes on ~ whitespace related issue ~)
741 $last_token->set_from($fval2 - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200742 }
743
744 # in case this fails, check input
Akron09e0b2c2020-07-28 15:57:01 +0200745 die "ERROR ($0, retr_info()): text_id='$text_id', processing of tokens: from-value ($fval2) is 2 or more greater"
Peter Harders6f526a32020-06-29 21:44:41 +0200746 ." than to-value ($dl) => please check. aborting ...\n"
747 if ( $fval2 - 1 ) > $dl;
748
Akron09e0b2c2020-07-28 15:57:01 +0200749 # TODO:
750 # find example for which this case applies
751 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
752 #
753 # TODO:
754 # 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 +0200755 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200756
Akron09e0b2c2020-07-28 15:57:01 +0200757 # Correct from-value (same as ... if $fval-1 == $dl)
758 $last_token->set_from($dl) if $fval2 == $dl + 1;
759 $last_token->set_to($dl); # Here from == to?
760 $last_token->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200761 }
762
763 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100764 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200765 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
766 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100767
768
Peter Harders41c35622020-07-12 01:16:22 +0200769 #~~~~
770 # until here: tag-node (closing)
771 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100772
773
Peter Harders41c35622020-07-12 01:16:22 +0200774 #~~~~~
775 # from here: text- and whitespace-nodes
776 #~~~~~
777
778 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
779 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200780 #
Peter Harders41c35622020-07-12 01:16:22 +0200781 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
782 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
783 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200784 #
Peter Harders41c35622020-07-12 01:16:22 +0200785 # 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 +0100786
Peter Harders6f526a32020-06-29 21:44:41 +0200787 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100788
Peter Harders41c35622020-07-12 01:16:22 +0200789 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200790 #
Peter Harders41c35622020-07-12 01:16:22 +0200791 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200792 #
793 # 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 +0200794 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200795 #
Peter Harders41c35622020-07-12 01:16:22 +0200796 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
797 # 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 +0200798 #
Peter Harders41c35622020-07-12 01:16:22 +0200799 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
800 # 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 +0200801 #
Peter Harders41c35622020-07-12 01:16:22 +0200802 # 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.
803 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
804 # 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
805 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200806 #
Peter Harders41c35622020-07-12 01:16:22 +0200807 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
808 # 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 +0200809 #
Peter Harders41c35622020-07-12 01:16:22 +0200810 # [1]
811 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
812 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
813 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200814 #
Peter Harders41c35622020-07-12 01:16:22 +0200815 # [2]
816 # 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
817 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200818 #
Peter Harders41c35622020-07-12 01:16:22 +0200819 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
820 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200821 #
Peter Harders41c35622020-07-12 01:16:22 +0200822 # 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-
823 # 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 +0200824
825 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
826
Peter Harders41c35622020-07-12 01:16:22 +0200827 # ~ whitespace-node ~
828
829 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200830
831 $add_one = 0;
832
Peter Harders41c35622020-07-12 01:16:22 +0200833 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
834 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200835
836 }else{
837
838 # ~ text-node ~
839
840 $add_one = 1;
841 }
842
843
844 # ~ update $data and $dl ~
845
846 $data .= $e->[1];
847
848 $dl += length( $e->[1] ); # update length of $data
849
850
Peter Harders41c35622020-07-12 01:16:22 +0200851 #~~~~~
852 # until here: text- and whitespace-nodes
853 #~~~~~
854
855
856 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200857 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
858
859
860 }else{ # not yet handled type
861
862 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
863 }
864
865 } # end: foreach iteration
866
867} # end: sub retr_info
868
869
Peter Harders41c35622020-07-12 01:16:22 +0200870sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200871
872 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100873
Peter Harders6f526a32020-06-29 21:44:41 +0200874 if ( $dir eq "" ){
Akron3378dfd2020-08-01 15:01:36 +0200875 $log->warn("write_structures(): empty textSigle => nothing to do ...");
Peter Hardersd892a582020-02-12 15:45:22 +0100876 return;
877 }
878
Peter Harders6f526a32020-06-29 21:44:41 +0200879 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
880 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200881 .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 +0100882
883 $c = 0;
884
Peter Harders6f526a32020-06-29 21:44:41 +0200885 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100886
Peter Harders6f526a32020-06-29 21:44:41 +0200887 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
888 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100889
Peter Harders6f526a32020-06-29 21:44:41 +0200890 # 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 )
891
892 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
893
894 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100895 }
Peter Hardersd892a582020-02-12 15:45:22 +0100896
Peter Harders6f526a32020-06-29 21:44:41 +0200897 # this consistency check is already done in 'retr_info()'
898 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
899 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
900 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
901 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
902 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100903
Peter Harders6f526a32020-06-29 21:44:41 +0200904 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
905 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100906
Peter Harders6f526a32020-06-29 21:44:41 +0200907 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100908
Peter Harders6f526a32020-06-29 21:44:41 +0200909 # l (level): insert information about depth of element in XML-tree (top element = level 1)
910 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
911 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
912 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
913
914 if ( $idx > 2 ) # attributes
915 {
916 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
917
918 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
919
Akron0465e9e2020-07-27 15:55:21 +0200920 # see explanation in func. 'write_tokens'
921 ${$ref}[ $att_idx+1 ] = escape_xml(${$ref}[ $att_idx+1 ]);
Peter Harders6f526a32020-06-29 21:44:41 +0200922
923 # attribute (at index $att_idx) with value (at index $att_idx+1)
924 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
925 }
926
927 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100928 }
929
Peter Harders6f526a32020-06-29 21:44:41 +0200930 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100931
Peter Harders6f526a32020-06-29 21:44:41 +0200932 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100933
934 $c++;
935
Peter Harders6f526a32020-06-29 21:44:41 +0200936 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100937
938 $output .= " </spanList>\n</layer>";
939
Peter Harders1c5ce152020-07-22 18:02:50 +0200940 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +0100941
Akron3bdc0a32020-08-03 12:12:56 +0200942 $zipper->new_stream("$dir/$_structure_dir/$_structure_file")
Akron85717512020-07-08 11:19:19 +0200943 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100944
Peter Hardersd892a582020-02-12 15:45:22 +0100945} # end: sub write_structures
946
947
Akrond949e182020-02-14 12:23:57 +0100948__END__
949
950=pod
951
952=encoding utf8
953
954=head1 NAME
955
956tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
957
958=head1 SYNOPSIS
959
960 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
961
962=head1 DESCRIPTION
963
Akronee434b12020-07-08 12:53:01 +0200964C<tei2korapxml> is a script to convert TEI P5 and
965L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
966based documents to the
967L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
968If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100969read from C<STDIN>. If no specific output is defined, data is written
970to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200971
Akrond949e182020-02-14 12:23:57 +0100972This program is usually called from inside another script.
973
Akronee434b12020-07-08 12:53:01 +0200974=head1 FORMATS
975
976=head2 Input restrictions
977
978=over 2
979
980=item
981
982utf8 encoded
983
984=item
985
986TEI P5 formatted input with certain restrictions:
987
988=over 4
989
990=item
991
992B<mandatory>: text-header with integrated textsigle, text-body
993
994=item
995
996B<optional>: corp-header with integrated corpsigle,
997doc-header with integrated docsigle
998
999=back
1000
1001=item
1002
1003all tokens inside the primary text (inside $data) may not be
1004newline seperated, because newlines are removed
1005(see code section C<~ inside text body ~>) and a conversion of newlines
1006into blanks between 2 tokens could lead to additional blanks,
1007where there should be none (e.g.: punctuation characters like C<,> or
1008C<.> should not be seperated from their predecessor token).
1009(see also code section C<~ whitespace handling ~>).
1010
1011=back
1012
1013=head2 Notes on the output
1014
1015=over 2
1016
1017=item
1018
1019zip file output (default on C<stdout>) with utf8 encoded entries
1020(which together form the KorAP-XML format)
1021
1022=back
1023
Akrond949e182020-02-14 12:23:57 +01001024=head1 INSTALLATION
1025
1026C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1027these bindings are available, the preferred way to install the script is
1028to use L<cpanm|App::cpanminus>.
1029
1030 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1031
1032In case everything went well, the C<tei2korapxml> tool will
1033be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001034
Akrond949e182020-02-14 12:23:57 +01001035Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1036
1037=head1 OPTIONS
1038
1039=over 2
1040
Akron4e603a52020-07-27 14:23:49 +02001041=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +01001042
Akron4e603a52020-07-27 14:23:49 +02001043The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +01001044
1045=item B<--help|-h>
1046
1047Print help information.
1048
1049=item B<--version|-v>
1050
1051Print version information.
1052
Akron4e603a52020-07-27 14:23:49 +02001053=item B<--tokenizer-call|-tc>
1054
1055Call an external tokenizer process, that will tokenize
1056a single line from STDIN and outputs one token per line.
1057
Marc Kupietz1e882fb2020-09-09 00:05:46 +02001058=item B<--tokenizer-korap|-tk>
1059
1060Use the standard KorAP/DeReKo tokenizer.
1061
Akron4e603a52020-07-27 14:23:49 +02001062=item B<--use-intern-tokenization|-ti>
1063
1064Tokenize the data using two embedded tokenizers,
1065that will take an I<Aggressive> and a I<conservative>
1066approach.
1067
Akron3378dfd2020-08-01 15:01:36 +02001068=item B<--log|-l>
1069
1070Loglevel for I<Log::Any>. Defaults to C<notice>.
1071
Akrond949e182020-02-14 12:23:57 +01001072=back
1073
1074=head1 COPYRIGHT AND LICENSE
1075
1076Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1077
1078Author: Peter Harders
1079
1080Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1081
1082L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1083Corpus Analysis Platform at the
1084L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1085member of the
1086L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1087
1088This program is free software published under the
1089L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1090
1091=cut