blob: 2e3aa0e6e320019fd5a294072d6e632c1af249bd [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
Akroneaa96232020-10-15 17:06:15 +020012use Encode qw(decode);
Peter Hardersd892a582020-02-12 15:45:22 +010013
Peter Hardersd892a582020-02-12 15:45:22 +010014use XML::CompactTree::XS;
15use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010016
Akron4f67cd42020-07-02 12:27:58 +020017use FindBin;
18BEGIN {
19 unshift @INC, "$FindBin::Bin/../lib";
20};
21
Marc Kupietz8a954e52021-02-16 22:03:07 +010022use KorAP::XML::TEI qw!remove_xml_comments replace_entities!;
Akron8b511f92020-07-09 17:28:08 +020023use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020024use KorAP::XML::TEI::Tokenizer::Conservative;
25use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron7501ca02020-08-01 21:05:25 +020026use KorAP::XML::TEI::Annotations::Collector;
Akrona10ad592020-08-03 11:20:23 +020027use KorAP::XML::TEI::Data;
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
Marc Kupietza1421f02021-02-18 15:32:38 +010036our $VERSION = '1.00';
Peter Harders6f526a32020-06-29 21:44:41 +020037
Akrond949e182020-02-14 12:23:57 +010038our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
39
Akronb3649472020-09-29 08:24:46 +020040# Set to 1 for minimal more debug output (no need to be parametrized)
41use constant DEBUG => $ENV{KORAPXMLTEI_DEBUG} // 0;
Peter Hardersd892a582020-02-12 15:45:22 +010042
Peter Harders6f526a32020-06-29 21:44:41 +020043# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010044GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020045 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
46 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020047 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Marc Kupietz1e882fb2020-09-09 00:05:46 +020048 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer
Akron6d7b8e42020-09-29 07:37:41 +020049 'tokenizer-internal|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Marc Kupietz985da0c2021-02-15 19:29:50 +010050 'use-tokenizer-sentence-splits|s' => (\my $use_tokenizer_sentence_splits), # use KorAP tokenizer to split s (default=no)
Akron1a5271a2021-02-18 13:18:15 +010051 'inline-tokens=s' => \(my $inline_tokens = 'tokens#morpho'),
Akrondd0be8f2021-02-18 19:29:41 +010052 'inline-structures=s' => \(my $inline_structures = 'struct#structure'),
Akron26a71522021-02-19 10:27:37 +010053 'base-foundry=s' => \(my $_tok_dir = 'base'),
54 'data-file=s' => \(my $_data_file = 'data'),
55 'header-file=s' => \(my $_header_file = 'header'),
Akron3378dfd2020-08-01 15:01:36 +020056 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020057 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010058 pod2usage(
59 -verbose => 99,
60 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
61 -msg => $VERSION_MSG,
62 -output => '-'
63 )
64 },
65 'version|v' => sub {
66 pod2usage(
67 -verbose => 0,
68 -msg => $VERSION_MSG,
69 -output => '-'
70 )
71 }
Peter Hardersd892a582020-02-12 15:45:22 +010072);
73
Marc Kupietz44b1f252020-11-26 16:31:40 +010074binmode(STDERR, ":encoding(UTF-8)");
Akron3378dfd2020-08-01 15:01:36 +020075Log::Any::Adapter->set('Stderr', log_level => $log_level);
76
Akronb3649472020-09-29 08:24:46 +020077$log->notice('Debugging is activated') if DEBUG;
78
Peter Harders6f526a32020-06-29 21:44:41 +020079#
80# ~~~ parameter (mandatory) ~~~
81#
Peter Harders6f526a32020-06-29 21:44:41 +020082my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
Akron0c41ab32020-09-29 07:33:33 +020083# optional
Peter Harders6f526a32020-06-29 21:44:41 +020084my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
Akron0c41ab32020-09-29 07:33:33 +020085# optional
Peter Harders6f526a32020-06-29 21:44:41 +020086my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
Akron0c41ab32020-09-29 07:33:33 +020087# mandatory
Peter Harders6f526a32020-06-29 21:44:41 +020088my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020089
Akron0c41ab32020-09-29 07:33:33 +020090
Peter Harders41c35622020-07-12 01:16:22 +020091## extern tokenization
Marc Kupietz1e882fb2020-09-09 00:05:46 +020092my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0;
93
Marc Kupietz985da0c2021-02-15 19:29:50 +010094if ($use_tokenizer_sentence_splits && !$tokenizer_korap) {
95 die $log->fatal("Sentence splitting is currently only supported by KorAP tokenizer (use -tk to activate it");
96}
97
Akron0c41ab32020-09-29 07:33:33 +020098my $ext_tok;
99if ($tokenizer_call) {
100 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
101}
Marc Kupietz1e882fb2020-09-09 00:05:46 +0200102
Akron0c41ab32020-09-29 07:33:33 +0200103elsif ($tokenizer_korap) {
Marc Kupietz985da0c2021-02-15 19:29:50 +0100104 $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new($use_tokenizer_sentence_splits);
Akron0c41ab32020-09-29 07:33:33 +0200105};
106my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +0200107##
108
Akron0c41ab32020-09-29 07:33:33 +0200109
Akron4e3c7e32021-02-18 15:19:53 +0100110#
111# ~~~ constants ~~~
112#
113
114
Akron8b511f92020-07-09 17:28:08 +0200115## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +0200116my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Akron0c41ab32020-09-29 07:33:33 +0200117my $_tok_file_con = "tokens_conservative.xml";
118my $_tok_file_agg = "tokens_aggressive.xml";
119my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
120my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +0200121##
122
Peter Harders6f526a32020-06-29 21:44:41 +0200123## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
124my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
Akron1a5271a2021-02-18 13:18:15 +0100125
126
Akrondd0be8f2021-02-18 19:29:41 +0100127# Name of the directory and the file containing all inline structure informations
128# except for $_TOKEN_TAG information
129my ($_structure_dir, $_structure_file) = split '#', $inline_structures . '#structure';
130$_structure_file .= '.xml';
131
132
Akron1a5271a2021-02-18 13:18:15 +0100133# Name of the directory and the file containing all inline token informations
134# i.e. tokens of the $_TOKENS_TAG, if $_TOKENS_PROC is set
135my ($_tokens_dir, $_tokens_file) = split '#', $inline_tokens . '#morpho';
136$_tokens_file .= '.xml';
137
Peter Harders6f526a32020-06-29 21:44:41 +0200138my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
139
Akron4e3c7e32021-02-18 15:19:53 +0100140# Handling inline annotations (inside $_TOKENS_TAG)
141my $_INLINE_ANNOT = $ENV{KORAPXMLTEI_INLINE} ? 1 : 0;
Akron09e0b2c2020-07-28 15:57:01 +0200142
Peter Harders6f526a32020-06-29 21:44:41 +0200143
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
Akron0c41ab32020-09-29 07:33:33 +0200163my ( $text_id,
164 $text_id_esc ); # '$text_id_esc' = escaped version of $text_id
Peter Harders6f526a32020-06-29 21:44:41 +0200165
Peter Harders6f526a32020-06-29 21:44:41 +0200166my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
167 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
168
169# these are only used inside recursive function 'retr_info'
Akron4e3c7e32021-02-18 15:19:53 +0100170my ( $_IDX, # value is set dependent on DEBUG - for extracting array of child elements from element in $tree_data
Peter Harders6f526a32020-06-29 21:44:41 +0200171 $e, # element from $tree_data
Peter Harders6f526a32020-06-29 21:44:41 +0200172 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
173 $add_one, # ...
Akron7501ca02020-08-01 21:05:25 +0200174 $fval, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200175 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
176 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200177 # (means: 'from-index - 1' is a key in %ws).
178 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
179
Akron7501ca02020-08-01 21:05:25 +0200180my $c; # index variables used in loops
Peter Harders6f526a32020-06-29 21:44:41 +0200181
Peter Harders6f526a32020-06-29 21:44:41 +0200182
183#
184# ~~~ main ~~~
185#
186
187# ~ initializations ~
188
Akron4e3c7e32021-02-18 15:19:53 +0100189# Include line numbers in elements of $tree_data for debugging
190DEBUG ? ($_IDX = 5) : ($_IDX = 4);
Peter Harders6f526a32020-06-29 21:44:41 +0200191
Akron7501ca02020-08-01 21:05:25 +0200192$fval = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200193
Akronec2cef22020-07-31 10:00:15 +0200194# Normalize regex for header parsing
195for ($_CORP_HEADER_BEG,
196 $_DOC_HEADER_BEG,
197 $_TEXT_HEADER_BEG) {
198 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
199};
Peter Hardersd892a582020-02-12 15:45:22 +0100200
Peter Hardersd892a582020-02-12 15:45:22 +0100201
Peter Harders6f526a32020-06-29 21:44:41 +0200202# ~ read input and write output (text by text) ~
Peter Hardersd892a582020-02-12 15:45:22 +0100203
Akron347be812020-09-29 07:52:52 +0200204my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100205
Akron347be812020-09-29 07:52:52 +0200206my $tl = 0; # text line (needed for whitespace handling)
Peter Hardersd892a582020-02-12 15:45:22 +0100207
Akron347be812020-09-29 07:52:52 +0200208$input_fh = *STDIN; # input file handle (default: stdin)
Peter Hardersd892a582020-02-12 15:45:22 +0100209
Akron347be812020-09-29 07:52:52 +0200210# Maybe not necessary
211$data->reset;
Peter Hardersd892a582020-02-12 15:45:22 +0100212
Akron347be812020-09-29 07:52:52 +0200213$dir = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100214
Akron347be812020-09-29 07:52:52 +0200215if ( $input_fname ne '' ){
216 unless (open($input_fh, '<', $input_fname)) {
217 die $log->fatal("File '$input_fname' could not be opened.");
218 };
219}
Peter Harders6f526a32020-06-29 21:44:41 +0200220
Akronf8088e62021-02-18 16:18:59 +0100221# Prevents segfaulting (see notes on segfault prevention)
Akron347be812020-09-29 07:52:52 +0200222binmode $input_fh;
Peter Harders6f526a32020-06-29 21:44:41 +0200223
Akron347be812020-09-29 07:52:52 +0200224my $pos;
Akroneaa96232020-10-15 17:06:15 +0200225my $input_enc = 'UTF-8';
Akron347be812020-09-29 07:52:52 +0200226my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders6f526a32020-06-29 21:44:41 +0200227
Akron347be812020-09-29 07:52:52 +0200228# ~ loop (reading input document) ~
Peter Harders6f526a32020-06-29 21:44:41 +0200229
Akron347be812020-09-29 07:52:52 +0200230MAIN: while ( <$input_fh> ){
231
232 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
233
Akroneaa96232020-10-15 17:06:15 +0200234 # Set input encoding
235 if ( index($_, '<?xml') == 0 && $_ =~ /\sencoding=(['"])([^\1]+?)\1/) {
236 $input_enc = $2;
237 next;
238 };
239
240 $_ = decode($input_enc, $_);
Marc Kupietz8a954e52021-02-16 22:03:07 +0100241 $_ = replace_entities($_);
Akroneaa96232020-10-15 17:06:15 +0200242
Akron347be812020-09-29 07:52:52 +0200243 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
244
245 # ~ start of text body ~
246
247 $pfx = $1;
248 $sfx = $2;
249
250 if ($pfx !~ /^\s*$/ || $sfx !~ /^\s*$/) {
251 die $log->fatal("input line number $.: " .
252 "line with opening text-body tag '${_TEXT_BODY}' " .
253 "contains additional information ... => Aborting (line=$_)");
Akron0bb7e722020-09-29 07:48:33 +0200254 };
Peter Harders6f526a32020-06-29 21:44:41 +0200255
Akron347be812020-09-29 07:52:52 +0200256 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
257 my $buf_in = '';
Peter Harders90157342020-07-01 21:05:14 +0200258
Akron347be812020-09-29 07:52:52 +0200259 # Iterate over all lines in the text body
260 while (<$input_fh>) {
Peter Harders90157342020-07-01 21:05:14 +0200261
Akron347be812020-09-29 07:52:52 +0200262 $_ = remove_xml_comments( $input_fh, $_ );
Akroneaa96232020-10-15 17:06:15 +0200263 $_ = decode($input_enc, $_);
Marc Kupietz8a954e52021-02-16 22:03:07 +0100264 $_ = replace_entities($_);
Peter Harders6f526a32020-06-29 21:44:41 +0200265
Akron347be812020-09-29 07:52:52 +0200266 # ~ end of text body ~
267 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
Peter Harders6f526a32020-06-29 21:44:41 +0200268
Akron347be812020-09-29 07:52:52 +0200269 # write data.xml, structure.xml and evtl. morpho.xml and/or tokenization files (s.a.: $_tok_file_ext, $_tok_file_con, $_tok_file_agg)
Peter Harders6f526a32020-06-29 21:44:41 +0200270
Akron347be812020-09-29 07:52:52 +0200271 if ((substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/) {
272 die $log->fatal("input line number $.: " .
273 "line with closing text-body tag '${_TEXT_BODY}'".
274 " contains additional information ... => Aborting (line=$_)");
275 };
Peter Harders6f526a32020-06-29 21:44:41 +0200276
Akron347be812020-09-29 07:52:52 +0200277 if ($dir ne "") {
Peter Harders6f526a32020-06-29 21:44:41 +0200278
Akron347be812020-09-29 07:52:52 +0200279 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200280
Akronf8088e62021-02-18 16:18:59 +0100281 # See notes on whitespace handling
Akron347be812020-09-29 07:52:52 +0200282 my $param = XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY;
Peter Harders6f526a32020-06-29 21:44:41 +0200283
Akron4e3c7e32021-02-18 15:19:53 +0100284 # XCT_LINE_NUMBERS is only needed for debugging
285 # (see XML::CompactTree::XS)
286 $param |= XCT_LINE_NUMBERS if DEBUG;
Akron347be812020-09-29 07:52:52 +0200287 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, $param);
Akron598d1a72020-08-02 17:33:31 +0200288
Akron347be812020-09-29 07:52:52 +0200289 $structures->reset;
Akron598d1a72020-08-02 17:33:31 +0200290
Akron347be812020-09-29 07:52:52 +0200291 $tokens->reset if $_TOKENS_PROC;
Akron598d1a72020-08-02 17:33:31 +0200292
Akron347be812020-09-29 07:52:52 +0200293 # ~ whitespace related issue ~
294 $add_one = 0;
295 %ws = ();
Akron598d1a72020-08-02 17:33:31 +0200296
Akron347be812020-09-29 07:52:52 +0200297 # ~ recursion ~
298 retr_info(1, \$tree_data->[2] ); # parse input data
Akron598d1a72020-08-02 17:33:31 +0200299
Akronb3649472020-09-29 08:24:46 +0200300 if (DEBUG) {
Akron26a71522021-02-19 10:27:37 +0100301 $log->debug("Writing (utf8-formatted) xml file $dir/${_data_file}.xml");
Akron0bb7e722020-09-29 07:48:33 +0200302 };
Akron598d1a72020-08-02 17:33:31 +0200303
Akron347be812020-09-29 07:52:52 +0200304 # ~ write data.xml ~
305 $data->to_zip(
Akron26a71522021-02-19 10:27:37 +0100306 $zipper->new_stream("$dir/${_data_file}.xml"),
Akron347be812020-09-29 07:52:52 +0200307 $text_id_esc
308 );
Akron598d1a72020-08-02 17:33:31 +0200309
Akron347be812020-09-29 07:52:52 +0200310 # ~ tokenization ~
311 if ($_GEN_TOK_EXT) {
Akron598d1a72020-08-02 17:33:31 +0200312
Akron347be812020-09-29 07:52:52 +0200313 # Tokenize and output
314 $ext_tok->tokenize($data->data)->to_zip(
315 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
316 $text_id_esc
317 );
318 };
Akrona10ad592020-08-03 11:20:23 +0200319
Akron347be812020-09-29 07:52:52 +0200320 if ($_GEN_TOK_INT) {
Akrona10ad592020-08-03 11:20:23 +0200321
Akron347be812020-09-29 07:52:52 +0200322 # Tokenize and output
323 $cons_tok->tokenize($data->data)->to_zip(
324 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
Akrona10ad592020-08-03 11:20:23 +0200325 $text_id_esc
326 );
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200327
Akron347be812020-09-29 07:52:52 +0200328 $aggr_tok->tokenize($data->data)->to_zip(
329 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
330 $text_id_esc
331 );
Akron598d1a72020-08-02 17:33:31 +0200332
Akron347be812020-09-29 07:52:52 +0200333 $aggr_tok->reset;
334 $cons_tok->reset;
335 };
Akron598d1a72020-08-02 17:33:31 +0200336
Marc Kupietz985da0c2021-02-15 19:29:50 +0100337 if ($use_tokenizer_sentence_splits) {
338 $ext_tok->sentencize_from_previous_input($structures);
339 }
340
Akron347be812020-09-29 07:52:52 +0200341 # ~ write structures ~
342 if (!$structures->empty) {
343 $structures->to_zip(
344 $zipper->new_stream("$dir/$_structure_dir/$_structure_file"),
345 $text_id_esc,
346 2 # = structure serialization
347 );
348 };
Akron598d1a72020-08-02 17:33:31 +0200349
Akron347be812020-09-29 07:52:52 +0200350 # ~ write tokens ~
351 if ($_TOKENS_PROC && !$tokens->empty) {
352 $tokens->to_zip(
353 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
354 $text_id_esc,
355 $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline
356 );
357 };
Akron598d1a72020-08-02 17:33:31 +0200358
Akron347be812020-09-29 07:52:52 +0200359 $dir = ""; # reinit.
Akron598d1a72020-08-02 17:33:31 +0200360
Akron347be812020-09-29 07:52:52 +0200361 # Maybe not necessary
362 $data->reset;
Akron598d1a72020-08-02 17:33:31 +0200363
Akron347be812020-09-29 07:52:52 +0200364 } else { # $dir eq ""
Akron598d1a72020-08-02 17:33:31 +0200365
Akron347be812020-09-29 07:52:52 +0200366 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
Akron598d1a72020-08-02 17:33:31 +0200367 }
Akron598d1a72020-08-02 17:33:31 +0200368
Akron347be812020-09-29 07:52:52 +0200369 next MAIN;
Akron598d1a72020-08-02 17:33:31 +0200370 };
371
Akron347be812020-09-29 07:52:52 +0200372 # ~ inside text body ~
Peter Harders6f526a32020-06-29 21:44:41 +0200373
Akron347be812020-09-29 07:52:52 +0200374 # ~ whitespace handling ~
Peter Harders6f526a32020-06-29 21:44:41 +0200375
Akronf8088e62021-02-18 16:18:59 +0100376 # Fix whitespaces (see notes on whitespace fixing)
Peter Hardersd892a582020-02-12 15:45:22 +0100377
Akronf8088e62021-02-18 16:18:59 +0100378 # 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
379 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
380
381 # Remove consecutive whitespace at beginning and end (mostly one newline)
382 s/^\s+//; s/\s+$//;
Akronf57ed812020-07-27 10:37:52 +0200383
Akron347be812020-09-29 07:52:52 +0200384 ### NOTE: this is only relevant, if a text consists of more than one line
385 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
386 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
387 if (m/<[^>]+>[^<]/) { # line contains at least one tag with at least one character contents
Akronf57ed812020-07-27 10:37:52 +0200388
Akron347be812020-09-29 07:52:52 +0200389 $tl++; # counter for text lines
Akronf57ed812020-07-27 10:37:52 +0200390
Akron347be812020-09-29 07:52:52 +0200391 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
392 }
393 ###
Akronf57ed812020-07-27 10:37:52 +0200394
Akron347be812020-09-29 07:52:52 +0200395 # add line to buffer
396 $buf_in .= $_;
397 };
Akronf57ed812020-07-27 10:37:52 +0200398
Akron347be812020-09-29 07:52:52 +0200399 } elsif (m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$#) {
Akronf57ed812020-07-27 10:37:52 +0200400
Akron347be812020-09-29 07:52:52 +0200401 # ~ start of header ~
402 $pfx = $1;
403 my $content = "$2\n";
Akronf57ed812020-07-27 10:37:52 +0200404
Akron347be812020-09-29 07:52:52 +0200405 if ($pfx !~ /^\s*$/) {
406 die $log->fatal("input line number $.: " .
407 "line with opening header tag" .
408 " is not in expected format ... => Aborting (line=$_)");
409 };
410
411 # Parse header
Akroneaa96232020-10-15 17:06:15 +0200412 my $header = KorAP::XML::TEI::Header->new($content, $input_enc)->parse($input_fh);
Akron347be812020-09-29 07:52:52 +0200413
414 # Header was parseable
415 if ($header) {
416
417 # Write header to zip
Akron26a71522021-02-19 10:27:37 +0100418 my $file = $header->dir . '/' . $_header_file . '.xml';
Akron347be812020-09-29 07:52:52 +0200419
Akronb3649472020-09-29 08:24:46 +0200420 $log->debug("Writing file $file") if DEBUG;
Akron347be812020-09-29 07:52:52 +0200421
422 $header->to_zip($zipper->new_stream($file));
423
424 # Header is for text level
425 if ($header->type eq 'text') {
426
427 # Remember dir and sigles
428 $dir = $header->dir;
429 $text_id = $header->id;
430 $text_id_esc = $header->id_esc;
431
432 # log output for seeing progression
Marc Kupietz44b1f252020-11-26 16:31:40 +0100433 $log->notice("$0: main(): text_id=$text_id");
Akron347be812020-09-29 07:52:52 +0200434
435 $tl = 0; # reset (needed for ~ whitespace handling ~)
Akronf57ed812020-07-27 10:37:52 +0200436 }
437 }
Akron347be812020-09-29 07:52:52 +0200438 }
439} #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100440
Akron347be812020-09-29 07:52:52 +0200441$zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200442
Akron347be812020-09-29 07:52:52 +0200443$ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100444
Akron347be812020-09-29 07:52:52 +0200445exit(0);
Peter Hardersd892a582020-02-12 15:45:22 +0100446
Peter Hardersd892a582020-02-12 15:45:22 +0100447
Akrond658df72021-02-18 18:58:56 +0100448# Recursively called function to handle XML tree data
449sub retr_info {
450
Akron1c4f2202020-07-30 09:28:22 +0200451 # recursion level
452 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
453 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100454
Marc Kupietz985da0c2021-02-15 19:29:50 +0100455 my $dummy_anno;
456 if ($use_tokenizer_sentence_splits) {
Akrond658df72021-02-18 18:58:56 +0100457 $dummy_anno = $structures->new_dummy_annotation;
Marc Kupietz985da0c2021-02-15 19:29:50 +0100458 }
459
Akrond658df72021-02-18 18:58:56 +0100460 # Iteration through all array elements
461 # ($_[0] is a reference to an array reference)
462 # See notes on how 'XML::CompactTree::XS' works and
463 # see 'NODE TYPES' in manpage of XML::LibXML::Reader
464 foreach $e (@{${$_[0]}}) {
Peter Hardersd892a582020-02-12 15:45:22 +0100465
Akrond658df72021-02-18 18:58:56 +0100466 # Element node
467 if ($e->[0] == XML_READER_TYPE_ELEMENT) {
Peter Hardersd892a582020-02-12 15:45:22 +0100468
Peter Harders6f526a32020-06-29 21:44:41 +0200469 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200470 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200471 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100472
Marc Kupietz985da0c2021-02-15 19:29:50 +0100473 my $anno;
474
Akron7501ca02020-08-01 21:05:25 +0200475 # $e->[1] represents the tag name
Marc Kupietz985da0c2021-02-15 19:29:50 +0100476 if ($use_tokenizer_sentence_splits && $e->[1] eq "s") {
477 $anno = $dummy_anno;
478 } else {
479 $anno = $structures->add_new_annotation($e->[1]);
480 }
Peter Hardersd892a582020-02-12 15:45:22 +0100481
Peter Hardersd892a582020-02-12 15:45:22 +0100482
Akron7501ca02020-08-01 21:05:25 +0200483 # Add element also to token list
484 if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) {
485 $tokens->add_annotation($anno);
486 };
Peter Hardersd892a582020-02-12 15:45:22 +0100487
Akrond658df72021-02-18 18:58:56 +0100488 # Handle attributes (if attributes exist)
489 if (defined $e->[3]) {
Peter Hardersd892a582020-02-12 15:45:22 +0100490
Akrond658df72021-02-18 18:58:56 +0100491 # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
492 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
493 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
494 for ($c = 0; $c < @{$e->[3]}; $c += 2) {
Peter Hardersd892a582020-02-12 15:45:22 +0100495
Peter Harders6f526a32020-06-29 21:44:41 +0200496 # '$c' references the 'key' and '$c+1' the 'value'
Akron7501ca02020-08-01 21:05:25 +0200497 $anno->add_attribute(
498 @{$e->[3]}[$c, $c + 1]
499 );
Akrond658df72021-02-18 18:58:56 +0100500 };
501 };
Peter Harders6f526a32020-06-29 21:44:41 +0200502
503 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
Akrona10ad592020-08-03 11:20:23 +0200504 $anno->set_from($data->position + $add_one);
Peter Harders6f526a32020-06-29 21:44:41 +0200505
Akrond658df72021-02-18 18:58:56 +0100506
Peter Harders6f526a32020-06-29 21:44:41 +0200507 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200508 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200509 #~~~~
510
511
Akrond658df72021-02-18 18:58:56 +0100512 # Call function recursively
513 # do no recursion, if $e->[$_IDX] is not defined
514 # (because we have no array of child-nodes, e.g.: <back/>)
515 if (defined $e->[$_IDX]) {
Peter Harders6f526a32020-06-29 21:44:41 +0200516
Akrond658df72021-02-18 18:58:56 +0100517 # Recursion with array of child-nodes
518 retr_info($rl+1, \$e->[$_IDX]);
Peter Harders6f526a32020-06-29 21:44:41 +0200519 }
520
521
522 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200523 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200524 #~~~~~
525
Akrond658df72021-02-18 18:58:56 +0100526 # NOTE: use $pos, because the offsets are _between_ the characters
527 # (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
Akrona10ad592020-08-03 11:20:23 +0200528 my $pos = $data->position;
Peter Harders6f526a32020-06-29 21:44:41 +0200529
Akrond658df72021-02-18 18:58:56 +0100530 # Handle structures and tokens
Peter Harders6f526a32020-06-29 21:44:41 +0200531
Akrond658df72021-02-18 18:58:56 +0100532 $fval = $anno->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200533
Peter Harders6f526a32020-06-29 21:44:41 +0200534 # ~ whitespace related issue ~
Akrond658df72021-02-18 18:58:56 +0100535 if ($fval > 0 && not exists $ws{$fval - 1}) {
536
537 # ~ previous node was a text-node ~
538 $anno->set_from($fval - 1);
539 }
540
541 # in case this fails, check input
542 if (($fval - 1) > $pos) {
543 die $log->fatal("text_id='$text_id', " .
544 "processing of structures: " .
545 "from-value ($fval) is 2 or more greater " .
546 "than to-value ($pos) => please check. Aborting");
547 };
548
549 # TODO: find example for which this case applies
550 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
551 #
552 # TODO: check, if it's better to remove this line and change above check to 'if ($fval - 1) >= $pos;
553 # do testing with bigger corpus excerpt (wikipedia?)
554 $anno->set_from($pos) if $fval == $pos + 1;
555 $anno->set_to($pos);
556 $anno->set_level($rl);
557
558 # Clean up whitespace
Akron0c41ab32020-09-29 07:33:33 +0200559 delete $ws{$fval - 1} if $fval > 0 && exists $ws{$fval - 1};
Peter Hardersd892a582020-02-12 15:45:22 +0100560
561
Peter Harders41c35622020-07-12 01:16:22 +0200562 #~~~~
563 # until here: tag-node (closing)
564 #~~~~
Peter Harders6f526a32020-06-29 21:44:41 +0200565 }
566
Akrond658df72021-02-18 18:58:56 +0100567 # Text node
568 elsif ($e->[0] == XML_READER_TYPE_TEXT){
Peter Harders6f526a32020-06-29 21:44:41 +0200569
Akrond658df72021-02-18 18:58:56 +0100570 $add_one = 1;
571 $data->append($e->[1]);
572 }
573
574 # Whitespace node
575 # (See notes on whitespace handling - regarding XML_READER_TYPE_SIGNIFICANT_WHITESPACE)
576 elsif ($e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE) {
577
578 # state, that this from-index belongs to a whitespace-node
579 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
580 $ws{$data->position}++;
581
582 $add_one = 0;
583 $data->append($e->[1]);
584 }
585
586 # not yet handled type
587 else {
588
589 die $log->fatal('Not yet handled type ($e->[0]=' . $e->[0] . ') ... => Aborting');
590 };
591 };
592};
593
Peter Harders6f526a32020-06-29 21:44:41 +0200594
Akrond949e182020-02-14 12:23:57 +0100595__END__
596
597=pod
598
599=encoding utf8
600
601=head1 NAME
602
603tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
604
605=head1 SYNOPSIS
606
607 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
608
609=head1 DESCRIPTION
610
Akronee434b12020-07-08 12:53:01 +0200611C<tei2korapxml> is a script to convert TEI P5 and
612L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
613based documents to the
614L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
615If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100616read from C<STDIN>. If no specific output is defined, data is written
617to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200618
Akrond949e182020-02-14 12:23:57 +0100619This program is usually called from inside another script.
620
Akronee434b12020-07-08 12:53:01 +0200621=head1 FORMATS
622
623=head2 Input restrictions
624
625=over 2
626
627=item
628
Akronee434b12020-07-08 12:53:01 +0200629TEI P5 formatted input with certain restrictions:
630
631=over 4
632
633=item
634
635B<mandatory>: text-header with integrated textsigle, text-body
636
637=item
638
639B<optional>: corp-header with integrated corpsigle,
640doc-header with integrated docsigle
641
642=back
643
644=item
645
Akron0c41ab32020-09-29 07:33:33 +0200646All tokens inside the primary text may not be
Akronee434b12020-07-08 12:53:01 +0200647newline seperated, because newlines are removed
Akron0c41ab32020-09-29 07:33:33 +0200648(see L<KorAP::XML::TEI::Data>) and a conversion of newlines
Akronee434b12020-07-08 12:53:01 +0200649into blanks between 2 tokens could lead to additional blanks,
650where there should be none (e.g.: punctuation characters like C<,> or
651C<.> should not be seperated from their predecessor token).
652(see also code section C<~ whitespace handling ~>).
653
654=back
655
656=head2 Notes on the output
657
658=over 2
659
660=item
661
662zip file output (default on C<stdout>) with utf8 encoded entries
663(which together form the KorAP-XML format)
664
665=back
666
Akrond949e182020-02-14 12:23:57 +0100667=head1 INSTALLATION
668
669C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
670these bindings are available, the preferred way to install the script is
671to use L<cpanm|App::cpanminus>.
672
673 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
674
675In case everything went well, the C<tei2korapxml> tool will
676be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +0200677
Akrond949e182020-02-14 12:23:57 +0100678Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
679
680=head1 OPTIONS
681
682=over 2
683
Akron4e603a52020-07-27 14:23:49 +0200684=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +0100685
Akron4e603a52020-07-27 14:23:49 +0200686The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +0100687
688=item B<--help|-h>
689
690Print help information.
691
692=item B<--version|-v>
693
694Print version information.
695
Akron4e603a52020-07-27 14:23:49 +0200696=item B<--tokenizer-call|-tc>
697
698Call an external tokenizer process, that will tokenize
699a single line from STDIN and outputs one token per line.
700
Marc Kupietz1e882fb2020-09-09 00:05:46 +0200701=item B<--tokenizer-korap|-tk>
702
703Use the standard KorAP/DeReKo tokenizer.
704
Akron6d7b8e42020-09-29 07:37:41 +0200705=item B<--tokenizer-internal|-ti>
Akron4e603a52020-07-27 14:23:49 +0200706
707Tokenize the data using two embedded tokenizers,
708that will take an I<Aggressive> and a I<conservative>
709approach.
710
Akron1a5271a2021-02-18 13:18:15 +0100711=item B<--inline-tokens> <foundry>#[<file>]
712
713Define the foundry and file (without extension)
714to store inline token information in.
715If L</KORAPXMLTEI_INLINE> is set, this will contain
716annotations as well.
717Defaults to C<tokens> and C<morpho>.
718
Akrondd0be8f2021-02-18 19:29:41 +0100719=item B<--inline-structures> <foundry>#[<file>]
720
721Define the foundry and file (without extension)
722to store inline structure information in.
723Defaults to C<struct> and C<structures>.
724
Akron26a71522021-02-19 10:27:37 +0100725=item B<--base-foundry> <foundry>
726
727Define the base foundry to store newly generated
728token information in.
729Defaults to C<base>.
730
731=item B<--data-file> <file>
732
733Define the file (without extension)
734to store primary data information in.
735Defaults to C<data>.
736
737=item B<--header-file> <file>
738
739Define the file name (without extension)
740to store header information on
741the corpus, document, and text level in.
742Defaults to C<header>.
743
Marc Kupietz985da0c2021-02-15 19:29:50 +0100744=item B<--use-tokenizer-sentence-splits|-s>
745
746Replace existing with, or add new, sentence boundary information
747provided by the KorAP tokenizer (currently supported only).
748
Akron3378dfd2020-08-01 15:01:36 +0200749=item B<--log|-l>
750
751Loglevel for I<Log::Any>. Defaults to C<notice>.
752
Akrond949e182020-02-14 12:23:57 +0100753=back
754
Akronb3649472020-09-29 08:24:46 +0200755=head1 ENVIRONMENT VARIABLES
756
757=over 2
758
759=item B<KORAPXMLTEI_DEBUG>
760
761Activate minimal debugging.
762Defaults to C<false>.
763
764=item B<KORAPXMLTEI_INLINE>
765
766Process inline annotations, if present.
767Defaults to C<false>.
768
769=back
770
Akrond949e182020-02-14 12:23:57 +0100771=head1 COPYRIGHT AND LICENSE
772
Marc Kupietze955ecc2021-02-17 17:42:01 +0100773Copyright (C) 2021, L<IDS Mannheim|https://www.ids-mannheim.de/>
Akrond949e182020-02-14 12:23:57 +0100774
775Author: Peter Harders
776
Akronaabd0952020-09-29 07:35:08 +0200777Contributors: Nils Diewald, Marc Kupietz, Carsten Schnober
Akrond949e182020-02-14 12:23:57 +0100778
779L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
780Corpus Analysis Platform at the
781L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
782member of the
783L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
784
785This program is free software published under the
Marc Kupietze955ecc2021-02-17 17:42:01 +0100786L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>.
Akrond949e182020-02-14 12:23:57 +0100787
788=cut
Akronf8088e62021-02-18 16:18:59 +0100789
790# NOTES
791
792## Notes on how 'XML::CompactTree::XS' works
793
794Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
795
796Print out name of 'node2' for the above example:
797
798echo '<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"'
799
800Exploring the structure of $data ( = reference to below array ):
801
802[ 0: XML_READER_TYPE_DOCUMENT,
803 1: ?
804 2: [ 0: [ 0: XML_READER_TYPE_ELEMENT <- start recursion with array '$data->[2]' (see main(): retr_info( \$tree_data->[2] ))
805 1: 'node'
806 2: ?
807 3: HASH (attributes)
808 4: 1 (line number)
809 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
810 1: 'node1'
811 2: ?
812 3: undefined (no attributes)
813 4: 1 (line number)
814 5: [ 0: [ 0: XML_READER_TYPE_TEXT
815 1: 'some '
816 ]
817 1: [ 0: XML_READER_TYPE_ELEMENT
818 1: 'n'
819 2: ?
820 3: undefined (no attributes)
821 4: 1 (line number)
822 5: undefined (no child-nodes)
823 ]
824 2: [ 0: XML_READER_TYPE_TEXT
825 1: ' text'
826 ]
827 ]
828 ]
829 1: [ 0: XML_READER_TYPE_ELEMENT
830 1: 'node2'
831 2: ?
832 3: undefined (not attributes)
833 4: 1 (line number)
834 5: [ 0: [ 0: XML_READER_TYPE_TEXT
835 1: 'more-text'
836 ]
837 ]
838 ]
839 ]
840 ]
841 ]
842]
843
844$data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
845
846ref($data->[2]) == ARRAY (with 1 element for 'node')
847ref($data->[2]->[0]) == ARRAY (with 6 elements)
848
849$data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
850$data->[2]->[0]->[1] == 'node'
851ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
852$data->[2]->[0]->[4] == 1 (line number)
853ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
854 # child-nodes of actual node (see $_IDX)
855
856ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
857$data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
858$data->[2]->[0]->[5]->[0]->[1] == 'node1'
859$data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
860$data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
861ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
862
863ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
864$data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
865$data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
866
867ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
868$data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
869$data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
870$data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
871$data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
872$data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
873
874ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
875$data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
876$data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
877
878
879retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
880Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
881${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
882
883
884## Notes on whitespace handling
885
886Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
887(see function 'retr_info()').
888
889Definition of significant and insignificant whitespace
890(source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
891
892Significant whitespace is part of the document content and should be preserved.
893Insignificant whitespace is used when editing XML documents for readability.
894These whitespaces are typically not intended for inclusion in the delivery of the document.
895
896### Regarding XML_READER_TYPE_SIGNIFICANT_WHITESPACE
897
898The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
899 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
900
901When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
902 '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
903 (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
904
905echo '<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"'
906
907
908Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
909
910Two text-nodes should normally be separated by a blank. In the above example, that would be the 2 text-nodes
911 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
912
913The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
914 it's from-index gets set to the correct start-index of '1792' (and not to the start-index of the whitespace-node ' ').
915
916The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
917 enables a way, to check, if this really _was_ the case for the last 2 'non-tag'-nodes, when closing a tag:
918
919When 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.
920 So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
921 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
922 the last read 'non-tag'-node has to be corrected (see [1]),
923
924For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
925 additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $pos).
926
927[1]
928Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
929 In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
930 (see above code fragment '... not exists $ws{ $fval - 1 } ...').
931
932[2]
933Comparing 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
934 whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
935
936The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
937 (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
938
939Empty 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-
940 and to-indizes for the tags 'a' and 'b' both 12, which is the start-index of the token 'tok3'.
941
942
943## Notes on whitespace fixing
944
945The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
946 into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
947
948It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
949 example further down and notes on 'Input restrictions' in the manpage).
950
951Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
952
953Examples (how primary text with linebreaks would be converted by below code):
954
955 '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
956 '...<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>'.
957
958Blanks are inserted before the 1st character:
959
960 NOTE: not stringent ('...' stands for text):
961
962 beg1............................end1 => no blank before 'beg1'
963 beg2....<pb/>...................end2 => no blank before 'beg2'
964 beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
965 beg4....<test>ok</test>.........end4 => blank before 'beg4'
966
967 => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
968 ^
969 |_blank between 'end3' and 'beg4'
970
971
972## Notes on segfault prevention
973
974binmode on the input handler prevents segfaulting of 'XML::LibXML::Reader' inside 'main()'
975(see notes on 'PerlIO layers' in 'man XML::LibXML'),
976removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
977see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
978see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data.