blob: 09f2a81e1f6399a6941978eecd3ba549ce642023 [file] [log] [blame]
Akron9cb13942020-02-14 07:39:54 +01001#!/usr/bin/env perl
Peter Hardersd892a582020-02-12 15:45:22 +01002use strict;
3use warnings;
Peter Harders6f526a32020-06-29 21:44:41 +02004
Akron3378dfd2020-08-01 15:01:36 +02005use Log::Any '$log';
6use Log::Any::Adapter;
Peter Harders6f526a32020-06-29 21:44:41 +02007use Pod::Usage;
8use Getopt::Long qw(GetOptions :config no_auto_abbrev);
9
10use File::Basename qw(dirname);
Peter Hardersd892a582020-02-12 15:45:22 +010011
12use open qw(:std :utf8); # assume utf-8 encoding
Peter Harders1c5ce152020-07-22 18:02:50 +020013use Encode qw(encode decode);
Peter Hardersd892a582020-02-12 15:45:22 +010014
Peter Hardersd892a582020-02-12 15:45:22 +010015use XML::CompactTree::XS;
16use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010017
Akron4f67cd42020-07-02 12:27:58 +020018use FindBin;
19BEGIN {
20 unshift @INC, "$FindBin::Bin/../lib";
21};
22
Akrona10ad592020-08-03 11:20:23 +020023use KorAP::XML::TEI qw!remove_xml_comments!;
Akron8b511f92020-07-09 17:28:08 +020024use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020025use KorAP::XML::TEI::Tokenizer::Conservative;
26use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron7501ca02020-08-01 21:05:25 +020027use KorAP::XML::TEI::Annotations::Collector;
Akrona10ad592020-08-03 11:20:23 +020028use KorAP::XML::TEI::Data;
Akron85717512020-07-08 11:19:19 +020029use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020030use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010031
Marc Kupietz1e882fb2020-09-09 00:05:46 +020032eval {
33 require KorAP::XML::TEI::Tokenizer::KorAP;
34 1;
35};
Peter Harders1c5ce152020-07-22 18:02:50 +020036
Akrond949e182020-02-14 12:23:57 +010037our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020038
Akrond949e182020-02-14 12:23:57 +010039our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
40
Akronb3649472020-09-29 08:24:46 +020041# Set to 1 for minimal more debug output (no need to be parametrized)
42use constant DEBUG => $ENV{KORAPXMLTEI_DEBUG} // 0;
Peter Hardersd892a582020-02-12 15:45:22 +010043
Peter Harders6f526a32020-06-29 21:44:41 +020044# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010045GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020046 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
47 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020048 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Marc Kupietz1e882fb2020-09-09 00:05:46 +020049 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer
Akron6d7b8e42020-09-29 07:37:41 +020050 'tokenizer-internal|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron3378dfd2020-08-01 15:01:36 +020051 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020052 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010053 pod2usage(
54 -verbose => 99,
55 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
56 -msg => $VERSION_MSG,
57 -output => '-'
58 )
59 },
60 'version|v' => sub {
61 pod2usage(
62 -verbose => 0,
63 -msg => $VERSION_MSG,
64 -output => '-'
65 )
66 }
Peter Hardersd892a582020-02-12 15:45:22 +010067);
68
Akron3378dfd2020-08-01 15:01:36 +020069Log::Any::Adapter->set('Stderr', log_level => $log_level);
70
Akronb3649472020-09-29 08:24:46 +020071$log->notice('Debugging is activated') if DEBUG;
72
Peter Harders6f526a32020-06-29 21:44:41 +020073#
74# ~~~ parameter (mandatory) ~~~
75#
Peter Harders6f526a32020-06-29 21:44:41 +020076my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
Akron0c41ab32020-09-29 07:33:33 +020077# optional
Peter Harders6f526a32020-06-29 21:44:41 +020078my $_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 +020079# optional
Peter Harders6f526a32020-06-29 21:44:41 +020080my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
Akron0c41ab32020-09-29 07:33:33 +020081# mandatory
Peter Harders6f526a32020-06-29 21:44:41 +020082my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020083
Peter Harders6f526a32020-06-29 21:44:41 +020084#
85# ~~~ constants ~~~
86#
Peter Hardersd892a582020-02-12 15:45:22 +010087
Akron0c41ab32020-09-29 07:33:33 +020088
Peter Harders41c35622020-07-12 01:16:22 +020089## extern tokenization
Marc Kupietz1e882fb2020-09-09 00:05:46 +020090my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0;
91
Akron0c41ab32020-09-29 07:33:33 +020092my $ext_tok;
93if ($tokenizer_call) {
94 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
95}
Marc Kupietz1e882fb2020-09-09 00:05:46 +020096
Akron0c41ab32020-09-29 07:33:33 +020097elsif ($tokenizer_korap) {
98 $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new;
99};
100my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +0200101##
102
Akron0c41ab32020-09-29 07:33:33 +0200103
Akron8b511f92020-07-09 17:28:08 +0200104## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +0200105my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Akron0c41ab32020-09-29 07:33:33 +0200106my $_tok_file_con = "tokens_conservative.xml";
107my $_tok_file_agg = "tokens_aggressive.xml";
108my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
109my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +0200110##
111
Akron0c41ab32020-09-29 07:33:33 +0200112
Peter Harders41c35622020-07-12 01:16:22 +0200113my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +0200114
Peter Harders6f526a32020-06-29 21:44:41 +0200115my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
116 # (see also manpage of XML::CompactTree::XS)
117
118my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
119my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
120my $_structure_dir = "struct"; # name of directory containing the $_structure_file
121my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
122 # (= their names and byte offsets in $_data)
123## 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)
125my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
126my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
127 # - evtl. with additional inline annotations
128my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
129
130## TODO: optional
131# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200132my $_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 +0200133
Peter Harders6f526a32020-06-29 21:44:41 +0200134
135#
136# ~~~ variables ~~~
137#
138
Akron7501ca02020-08-01 21:05:25 +0200139# Initialize Token- and Structure-Collector
140my $tokens = KorAP::XML::TEI::Annotations::Collector->new;
141my $structures = KorAP::XML::TEI::Annotations::Collector->new;
Akron09e0b2c2020-07-28 15:57:01 +0200142
143
Akrona10ad592020-08-03 11:20:23 +0200144# Initialize Data-Collector
145my $data = KorAP::XML::TEI::Data->new;
146
147
Akron85717512020-07-08 11:19:19 +0200148# Initialize zipper
Akron3bdc0a32020-08-03 12:12:56 +0200149my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir);
Peter Harders6f526a32020-06-29 21:44:41 +0200150my $input_fh; # input file handle (default: stdin)
151
Peter Harders6f526a32020-06-29 21:44:41 +0200152my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200153
Akron0c41ab32020-09-29 07:33:33 +0200154my ( $text_id,
155 $text_id_esc ); # '$text_id_esc' = escaped version of $text_id
Peter Harders6f526a32020-06-29 21:44:41 +0200156
Peter Harders6f526a32020-06-29 21:44:41 +0200157my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
158 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
159
160# these are only used inside recursive function 'retr_info'
161my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
162 $e, # element from $tree_data
Peter Harders6f526a32020-06-29 21:44:41 +0200163 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
164 $add_one, # ...
Akron7501ca02020-08-01 21:05:25 +0200165 $fval, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200166 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
167 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200168 # (means: 'from-index - 1' is a key in %ws).
169 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
170
Akron7501ca02020-08-01 21:05:25 +0200171my $c; # index variables used in loops
Peter Harders6f526a32020-06-29 21:44:41 +0200172
Peter Harders6f526a32020-06-29 21:44:41 +0200173
174#
175# ~~~ main ~~~
176#
177
178# ~ initializations ~
179
180($_XCT_LN)?($_IDX=5):($_IDX=4);
181
Akron7501ca02020-08-01 21:05:25 +0200182$fval = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200183
Akronec2cef22020-07-31 10:00:15 +0200184# Normalize regex for header parsing
185for ($_CORP_HEADER_BEG,
186 $_DOC_HEADER_BEG,
187 $_TEXT_HEADER_BEG) {
188 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
189};
Peter Hardersd892a582020-02-12 15:45:22 +0100190
Peter Hardersd892a582020-02-12 15:45:22 +0100191
Peter Harders6f526a32020-06-29 21:44:41 +0200192# ~ read input and write output (text by text) ~
Peter Hardersd892a582020-02-12 15:45:22 +0100193
Akron347be812020-09-29 07:52:52 +0200194my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100195
Akron347be812020-09-29 07:52:52 +0200196my $tl = 0; # text line (needed for whitespace handling)
Peter Hardersd892a582020-02-12 15:45:22 +0100197
Akron347be812020-09-29 07:52:52 +0200198$input_fh = *STDIN; # input file handle (default: stdin)
Peter Hardersd892a582020-02-12 15:45:22 +0100199
Akron347be812020-09-29 07:52:52 +0200200# Maybe not necessary
201$data->reset;
Peter Hardersd892a582020-02-12 15:45:22 +0100202
Akron347be812020-09-29 07:52:52 +0200203$dir = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100204
Akron347be812020-09-29 07:52:52 +0200205if ( $input_fname ne '' ){
206 unless (open($input_fh, '<', $input_fname)) {
207 die $log->fatal("File '$input_fname' could not be opened.");
208 };
209}
Peter Harders6f526a32020-06-29 21:44:41 +0200210
Akron347be812020-09-29 07:52:52 +0200211# prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
212# removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
213# see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
214# see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data.
215binmode $input_fh;
Peter Harders6f526a32020-06-29 21:44:41 +0200216
Akron347be812020-09-29 07:52:52 +0200217my $pos;
218my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders6f526a32020-06-29 21:44:41 +0200219
Akron347be812020-09-29 07:52:52 +0200220# ~ loop (reading input document) ~
Peter Harders6f526a32020-06-29 21:44:41 +0200221
Akron347be812020-09-29 07:52:52 +0200222MAIN: while ( <$input_fh> ){
223
224 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
225
226 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
227
228 # ~ start of text body ~
229
230 $pfx = $1;
231 $sfx = $2;
232
233 if ($pfx !~ /^\s*$/ || $sfx !~ /^\s*$/) {
234 die $log->fatal("input line number $.: " .
235 "line with opening text-body tag '${_TEXT_BODY}' " .
236 "contains additional information ... => Aborting (line=$_)");
Akron0bb7e722020-09-29 07:48:33 +0200237 };
Peter Harders6f526a32020-06-29 21:44:41 +0200238
Akron347be812020-09-29 07:52:52 +0200239 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
240 my $buf_in = '';
Peter Harders90157342020-07-01 21:05:14 +0200241
Akron347be812020-09-29 07:52:52 +0200242 # Iterate over all lines in the text body
243 while (<$input_fh>) {
Peter Harders90157342020-07-01 21:05:14 +0200244
Akron347be812020-09-29 07:52:52 +0200245 $_ = remove_xml_comments( $input_fh, $_ );
Peter Harders6f526a32020-06-29 21:44:41 +0200246
Akron347be812020-09-29 07:52:52 +0200247 # ~ end of text body ~
248 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
Peter Harders6f526a32020-06-29 21:44:41 +0200249
Akron347be812020-09-29 07:52:52 +0200250 # 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 +0200251
Akron347be812020-09-29 07:52:52 +0200252 if ((substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/) {
253 die $log->fatal("input line number $.: " .
254 "line with closing text-body tag '${_TEXT_BODY}'".
255 " contains additional information ... => Aborting (line=$_)");
256 };
Peter Harders6f526a32020-06-29 21:44:41 +0200257
Akron347be812020-09-29 07:52:52 +0200258 if ($dir ne "") {
Peter Harders6f526a32020-06-29 21:44:41 +0200259
Akron347be812020-09-29 07:52:52 +0200260 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200261
Akron347be812020-09-29 07:52:52 +0200262 # ~ whitespace handling ~
263 #
264 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
265 # (see function 'retr_info()').
266 #
267 # Definition of significant and insignificant whitespace
268 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
269 #
270 # Significant whitespace is part of the document content and should be preserved.
271 # Insignificant whitespace is used when editing XML documents for readability.
272 # These whitespaces are typically not intended for inclusion in the delivery of the document.
273 #
Peter Harders6f526a32020-06-29 21:44:41 +0200274
Akron347be812020-09-29 07:52:52 +0200275 my $param = XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY;
Peter Harders6f526a32020-06-29 21:44:41 +0200276
Akron347be812020-09-29 07:52:52 +0200277 # _XCT_LINE_NUMBERS is only for debugging
278 $param |= XCT_LINE_NUMBERS if $_XCT_LN;
279 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, $param);
Akron598d1a72020-08-02 17:33:31 +0200280
Akron347be812020-09-29 07:52:52 +0200281 $structures->reset;
Akron598d1a72020-08-02 17:33:31 +0200282
Akron347be812020-09-29 07:52:52 +0200283 $tokens->reset if $_TOKENS_PROC;
Akron598d1a72020-08-02 17:33:31 +0200284
Akron347be812020-09-29 07:52:52 +0200285 # ~ whitespace related issue ~
286 $add_one = 0;
287 %ws = ();
Akron598d1a72020-08-02 17:33:31 +0200288
Akron347be812020-09-29 07:52:52 +0200289 # ~ recursion ~
290 retr_info(1, \$tree_data->[2] ); # parse input data
Akron598d1a72020-08-02 17:33:31 +0200291
Akronb3649472020-09-29 08:24:46 +0200292 if (DEBUG) {
Akron347be812020-09-29 07:52:52 +0200293 $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file");
Akron0bb7e722020-09-29 07:48:33 +0200294 };
Akron598d1a72020-08-02 17:33:31 +0200295
Akron347be812020-09-29 07:52:52 +0200296 # ~ write data.xml ~
297 $data->to_zip(
298 $zipper->new_stream("$dir/${_data_file}"),
299 $text_id_esc
300 );
Akron598d1a72020-08-02 17:33:31 +0200301
Akron347be812020-09-29 07:52:52 +0200302 # ~ tokenization ~
303 if ($_GEN_TOK_EXT) {
Akron598d1a72020-08-02 17:33:31 +0200304
Akron347be812020-09-29 07:52:52 +0200305 # Tokenize and output
306 $ext_tok->tokenize($data->data)->to_zip(
307 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
308 $text_id_esc
309 );
310 };
Akrona10ad592020-08-03 11:20:23 +0200311
Akron347be812020-09-29 07:52:52 +0200312 if ($_GEN_TOK_INT) {
Akrona10ad592020-08-03 11:20:23 +0200313
Akron347be812020-09-29 07:52:52 +0200314 # Tokenize and output
315 $cons_tok->tokenize($data->data)->to_zip(
316 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
Akrona10ad592020-08-03 11:20:23 +0200317 $text_id_esc
318 );
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200319
Akron347be812020-09-29 07:52:52 +0200320 $aggr_tok->tokenize($data->data)->to_zip(
321 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
322 $text_id_esc
323 );
Akron598d1a72020-08-02 17:33:31 +0200324
Akron347be812020-09-29 07:52:52 +0200325 $aggr_tok->reset;
326 $cons_tok->reset;
327 };
Akron598d1a72020-08-02 17:33:31 +0200328
Akron347be812020-09-29 07:52:52 +0200329 # ~ write structures ~
330 if (!$structures->empty) {
331 $structures->to_zip(
332 $zipper->new_stream("$dir/$_structure_dir/$_structure_file"),
333 $text_id_esc,
334 2 # = structure serialization
335 );
336 };
Akron598d1a72020-08-02 17:33:31 +0200337
Akron347be812020-09-29 07:52:52 +0200338 # ~ write tokens ~
339 if ($_TOKENS_PROC && !$tokens->empty) {
340 $tokens->to_zip(
341 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
342 $text_id_esc,
343 $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline
344 );
345 };
Akron598d1a72020-08-02 17:33:31 +0200346
Akron347be812020-09-29 07:52:52 +0200347 $dir = ""; # reinit.
Akron598d1a72020-08-02 17:33:31 +0200348
Akron347be812020-09-29 07:52:52 +0200349 # Maybe not necessary
350 $data->reset;
Akron598d1a72020-08-02 17:33:31 +0200351
Akron347be812020-09-29 07:52:52 +0200352 } else { # $dir eq ""
Akron598d1a72020-08-02 17:33:31 +0200353
Akron347be812020-09-29 07:52:52 +0200354 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
Akron598d1a72020-08-02 17:33:31 +0200355 }
Akron598d1a72020-08-02 17:33:31 +0200356
Akron347be812020-09-29 07:52:52 +0200357 next MAIN;
Akron598d1a72020-08-02 17:33:31 +0200358 };
359
Akron347be812020-09-29 07:52:52 +0200360 # ~ inside text body ~
Peter Harders6f526a32020-06-29 21:44:41 +0200361
Akron347be812020-09-29 07:52:52 +0200362 # ~ whitespace handling ~
Peter Harders6f526a32020-06-29 21:44:41 +0200363
Akron347be812020-09-29 07:52:52 +0200364 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
365 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
366 #
367 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
368 # example further down and notes on 'Input restrictions' in the manpage).
369 #
370 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
371 #
372 # 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
373 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
374 #
375 # Examples (how primary text with linebreaks would be converted by below code):
376 #
377 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
378 # '...<w>,</w>\n<w>this</w>\n<w>is</w>\n<w>it</w>\n<w>!</w>...' -> '<w>,<w> <w>this</w> <w>is</w> <w>it</w> <w>!</w>'.
Peter Hardersd892a582020-02-12 15:45:22 +0100379
Akron347be812020-09-29 07:52:52 +0200380 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
Akronf57ed812020-07-27 10:37:52 +0200381
Akron347be812020-09-29 07:52:52 +0200382 ### NOTE: this is only relevant, if a text consists of more than one line
383 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
384 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
385 if (m/<[^>]+>[^<]/) { # line contains at least one tag with at least one character contents
Akronf57ed812020-07-27 10:37:52 +0200386
Akron347be812020-09-29 07:52:52 +0200387 # NOTE: not stringent ('...' stands for text):
388 #
389 # beg1............................end1 => no blank before 'beg1'
390 # beg2....<pb/>...................end2 => no blank before 'beg2'
391 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
392 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
393 #
394 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
395 # ^
396 # |_blank between 'end3' and 'beg4'
Akronf57ed812020-07-27 10:37:52 +0200397
Akron347be812020-09-29 07:52:52 +0200398 $tl++; # counter for text lines
Akronf57ed812020-07-27 10:37:52 +0200399
Akron347be812020-09-29 07:52:52 +0200400 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
401 }
402 ###
Akronf57ed812020-07-27 10:37:52 +0200403
Akron347be812020-09-29 07:52:52 +0200404 # add line to buffer
405 $buf_in .= $_;
406 };
Akronf57ed812020-07-27 10:37:52 +0200407
Akron347be812020-09-29 07:52:52 +0200408 } elsif (m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$#) {
Akronf57ed812020-07-27 10:37:52 +0200409
Akron347be812020-09-29 07:52:52 +0200410 # ~ start of header ~
411 $pfx = $1;
412 my $content = "$2\n";
Akronf57ed812020-07-27 10:37:52 +0200413
Akron347be812020-09-29 07:52:52 +0200414 if ($pfx !~ /^\s*$/) {
415 die $log->fatal("input line number $.: " .
416 "line with opening header tag" .
417 " is not in expected format ... => Aborting (line=$_)");
418 };
419
420 # Parse header
421 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
422
423 # Header was parseable
424 if ($header) {
425
426 # Write header to zip
427 my $file = $header->dir . '/' . $_header_file;
428
Akronb3649472020-09-29 08:24:46 +0200429 $log->debug("Writing file $file") if DEBUG;
Akron347be812020-09-29 07:52:52 +0200430
431 $header->to_zip($zipper->new_stream($file));
432
433 # Header is for text level
434 if ($header->type eq 'text') {
435
436 # Remember dir and sigles
437 $dir = $header->dir;
438 $text_id = $header->id;
439 $text_id_esc = $header->id_esc;
440
441 # log output for seeing progression
442 $log->notice("$0: main(): text_id=".decode('UTF-8', $text_id));
443
444 $tl = 0; # reset (needed for ~ whitespace handling ~)
Akronf57ed812020-07-27 10:37:52 +0200445 }
446 }
Akron347be812020-09-29 07:52:52 +0200447 }
448} #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100449
Akron347be812020-09-29 07:52:52 +0200450$zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200451
Akron347be812020-09-29 07:52:52 +0200452$ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100453
Akron347be812020-09-29 07:52:52 +0200454exit(0);
Peter Hardersd892a582020-02-12 15:45:22 +0100455
Peter Hardersd892a582020-02-12 15:45:22 +0100456
Peter Harders41c35622020-07-12 01:16:22 +0200457sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200458 # recursion level
459 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
460 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100461
Peter Harders41c35622020-07-12 01:16:22 +0200462 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200463 #
Peter Harders41c35622020-07-12 01:16:22 +0200464 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200465 #
Peter Harders41c35622020-07-12 01:16:22 +0200466 # Print out name of 'node2' for the above example:
467 #
468 # 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"'
469 #
470 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200471 #
472 # [ 0: XML_READER_TYPE_DOCUMENT,
473 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200474 # 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 +0200475 # 1: 'node'
476 # 2: ?
477 # 3: HASH (attributes)
478 # 4: 1 (line number)
479 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
480 # 1: 'node1'
481 # 2: ?
482 # 3: undefined (no attributes)
483 # 4: 1 (line number)
484 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
485 # 1: 'some '
486 # ]
487 # 1: [ 0: XML_READER_TYPE_ELEMENT
488 # 1: 'n'
489 # 2: ?
490 # 3: undefined (no attributes)
491 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200492 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200493 # ]
494 # 2: [ 0: XML_READER_TYPE_TEXT
495 # 1: ' text'
496 # ]
497 # ]
498 # ]
499 # 1: [ 0: XML_READER_TYPE_ELEMENT
500 # 1: 'node2'
501 # 2: ?
502 # 3: undefined (not attributes)
503 # 4: 1 (line number)
504 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
505 # 1: 'more-text'
506 # ]
507 # ]
508 # ]
509 # ]
510 # ]
511 # ]
512 # ]
513 #
514 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
515 #
516 # ref($data->[2]) == ARRAY (with 1 element for 'node')
517 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
518 #
519 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
520 # $data->[2]->[0]->[1] == 'node'
521 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
522 # $data->[2]->[0]->[4] == 1 (line number)
523 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200524 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200525 #
526 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
527 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
528 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
529 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
530 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
531 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
532 #
533 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
534 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
535 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
536 #
537 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
538 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
539 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
540 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
541 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200542 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200543 #
544 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
545 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
546 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
Akron0c41ab32020-09-29 07:33:33 +0200547 #
Peter Harders6f526a32020-06-29 21:44:41 +0200548 #
549 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
550 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
551 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100552
Akron0c41ab32020-09-29 07:33:33 +0200553 foreach $e (@{${$_[0]}}) { # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Harders41c35622020-07-12 01:16:22 +0200554
Akron0c41ab32020-09-29 07:33:33 +0200555 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 +0100556
Peter Harders6f526a32020-06-29 21:44:41 +0200557 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200558 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200559 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100560
Peter Harders6f526a32020-06-29 21:44:41 +0200561 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100562
Akron7501ca02020-08-01 21:05:25 +0200563 # $e->[1] represents the tag name
564 my $anno = $structures->add_new_annotation($e->[1]);
Peter Hardersd892a582020-02-12 15:45:22 +0100565
Peter Harders6f526a32020-06-29 21:44:41 +0200566 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100567
Akron7501ca02020-08-01 21:05:25 +0200568 # Add element also to token list
569 if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) {
570 $tokens->add_annotation($anno);
571 };
Peter Hardersd892a582020-02-12 15:45:22 +0100572
Peter Harders6f526a32020-06-29 21:44:41 +0200573 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100574
Akron0c41ab32020-09-29 07:33:33 +0200575 if (defined $e->[3]) { # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100576
Akron0c41ab32020-09-29 07:33:33 +0200577 for ($c = 0; $c < @{$e->[3]}; $c += 2) { # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
Peter Harders6f526a32020-06-29 21:44:41 +0200578 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
579 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100580
Peter Harders6f526a32020-06-29 21:44:41 +0200581 # '$c' references the 'key' and '$c+1' the 'value'
Akron7501ca02020-08-01 21:05:25 +0200582 $anno->add_attribute(
583 @{$e->[3]}[$c, $c + 1]
584 );
Peter Harders6f526a32020-06-29 21:44:41 +0200585 }
586 }
587
588
589 # ~ index 'from' ~
590
591 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
Akrona10ad592020-08-03 11:20:23 +0200592 $anno->set_from($data->position + $add_one);
Peter Harders6f526a32020-06-29 21:44:41 +0200593
594 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200595 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200596 #~~~~
597
598
599 # ~~ RECURSION ~~
600
Akron0c41ab32020-09-29 07:33:33 +0200601 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 +0200602
Akron1c4f2202020-07-30 09:28:22 +0200603 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200604 }
605
606
607 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200608 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200609 #~~~~~
610
Akrona10ad592020-08-03 11:20:23 +0200611 my $pos = $data->position;
Peter Harders6f526a32020-06-29 21:44:41 +0200612
Akron7501ca02020-08-01 21:05:25 +0200613 # ~ handle structures and tokens ~
Peter Harders6f526a32020-06-29 21:44:41 +0200614
615 {
Akron7501ca02020-08-01 21:05:25 +0200616 $fval = $anno->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200617
Akron0c41ab32020-09-29 07:33:33 +0200618 if ($fval > 0 && not exists $ws{$fval - 1}) { # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200619
Peter Harders41c35622020-07-12 01:16:22 +0200620 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200621
Akron7501ca02020-08-01 21:05:25 +0200622 $anno->set_from($fval - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200623 }
624
625 # in case this fails, check input
Akron0bb7e722020-09-29 07:48:33 +0200626 if (($fval - 1) > $pos) {
627 die $log->fatal("text_id='$text_id', " .
628 "processing of structures: " .
629 "from-value ($fval) is 2 or more greater " .
630 "than to-value ($pos) => please check. Aborting");
631 };
Peter Harders6f526a32020-06-29 21:44:41 +0200632
Peter Harders41c35622020-07-12 01:16:22 +0200633 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200634 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
Akron0c41ab32020-09-29 07:33:33 +0200635 #
Akrona10ad592020-08-03 11:20:23 +0200636 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $pos;
Peter Harders41c35622020-07-12 01:16:22 +0200637 # do testing with bigger corpus excerpt (wikipedia?)
Akrona10ad592020-08-03 11:20:23 +0200638 $anno->set_from($pos) if $fval == $pos + 1;
639 $anno->set_to($pos);
Akron7501ca02020-08-01 21:05:25 +0200640 $anno->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200641
Akrona10ad592020-08-03 11:20:23 +0200642 # note: use $pos, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
Peter Harders6f526a32020-06-29 21:44:41 +0200643 }
644
Peter Harders6f526a32020-06-29 21:44:41 +0200645 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100646 # clean up
Akron0c41ab32020-09-29 07:33:33 +0200647 delete $ws{$fval - 1} if $fval > 0 && exists $ws{$fval - 1};
Peter Hardersd892a582020-02-12 15:45:22 +0100648
649
Peter Harders41c35622020-07-12 01:16:22 +0200650 #~~~~
651 # until here: tag-node (closing)
652 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100653
654
Akron0c41ab32020-09-29 07:33:33 +0200655 #~~~~~
656 # from here: text- and whitespace-nodes
657 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200658
Akron0c41ab32020-09-29 07:33:33 +0200659 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
660 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
661 #
662 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
663 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
664 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
665 #
666 # 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 +0100667
Akron0c41ab32020-09-29 07:33:33 +0200668 } elsif ($e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE){
Peter Hardersd892a582020-02-12 15:45:22 +0100669
Peter Harders41c35622020-07-12 01:16:22 +0200670 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200671 #
Peter Harders41c35622020-07-12 01:16:22 +0200672 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200673 #
674 # 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 +0200675 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Akron0c41ab32020-09-29 07:33:33 +0200676 #
Peter Harders41c35622020-07-12 01:16:22 +0200677 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
678 # 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 +0200679 #
Peter Harders41c35622020-07-12 01:16:22 +0200680 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
681 # 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 +0200682 #
Peter Harders41c35622020-07-12 01:16:22 +0200683 # 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.
684 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
685 # 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
686 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200687 #
Peter Harders41c35622020-07-12 01:16:22 +0200688 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
Akrona10ad592020-08-03 11:20:23 +0200689 # additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $pos).
Peter Harders6f526a32020-06-29 21:44:41 +0200690 #
Peter Harders41c35622020-07-12 01:16:22 +0200691 # [1]
692 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
693 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
694 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200695 #
Peter Harders41c35622020-07-12 01:16:22 +0200696 # [2]
697 # 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
698 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200699 #
Peter Harders41c35622020-07-12 01:16:22 +0200700 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
701 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200702 #
Peter Harders41c35622020-07-12 01:16:22 +0200703 # 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-
704 # 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 +0200705
Akron0c41ab32020-09-29 07:33:33 +0200706 if ($e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE) {
Peter Harders6f526a32020-06-29 21:44:41 +0200707
Peter Harders41c35622020-07-12 01:16:22 +0200708 # ~ whitespace-node ~
709
710 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200711
712 $add_one = 0;
713
Akrona10ad592020-08-03 11:20:23 +0200714 # state, that this from-index belongs to a whitespace-node
715 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
716 $ws{$data->position}++;
Peter Harders6f526a32020-06-29 21:44:41 +0200717
Akron0c41ab32020-09-29 07:33:33 +0200718 } else {
Peter Harders6f526a32020-06-29 21:44:41 +0200719
720 # ~ text-node ~
721
722 $add_one = 1;
Akron0c41ab32020-09-29 07:33:33 +0200723 };
Peter Harders6f526a32020-06-29 21:44:41 +0200724
725
Akrona10ad592020-08-03 11:20:23 +0200726 # ~ update $data ~
Peter Harders6f526a32020-06-29 21:44:41 +0200727
Akrona10ad592020-08-03 11:20:23 +0200728 $data->append($e->[1]);
Peter Harders6f526a32020-06-29 21:44:41 +0200729
Peter Harders41c35622020-07-12 01:16:22 +0200730 #~~~~~
731 # until here: text- and whitespace-nodes
732 #~~~~~
733
734
Akron0c41ab32020-09-29 07:33:33 +0200735 # elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
736 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
Peter Harders6f526a32020-06-29 21:44:41 +0200737
738
Akron0c41ab32020-09-29 07:33:33 +0200739 } else { # not yet handled type
Peter Harders6f526a32020-06-29 21:44:41 +0200740
Akron0bb7e722020-09-29 07:48:33 +0200741 die $log->fatal('Not yet handled type ($e->[0]=' . $e->[0] . ') ... => Aborting');
Peter Harders6f526a32020-06-29 21:44:41 +0200742 }
743
744 } # end: foreach iteration
745
746} # end: sub retr_info
747
Akrond949e182020-02-14 12:23:57 +0100748__END__
749
750=pod
751
752=encoding utf8
753
754=head1 NAME
755
756tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
757
758=head1 SYNOPSIS
759
760 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
761
762=head1 DESCRIPTION
763
Akronee434b12020-07-08 12:53:01 +0200764C<tei2korapxml> is a script to convert TEI P5 and
765L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
766based documents to the
767L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
768If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100769read from C<STDIN>. If no specific output is defined, data is written
770to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200771
Akrond949e182020-02-14 12:23:57 +0100772This program is usually called from inside another script.
773
Akronee434b12020-07-08 12:53:01 +0200774=head1 FORMATS
775
776=head2 Input restrictions
777
778=over 2
779
780=item
781
782utf8 encoded
783
784=item
785
786TEI P5 formatted input with certain restrictions:
787
788=over 4
789
790=item
791
792B<mandatory>: text-header with integrated textsigle, text-body
793
794=item
795
796B<optional>: corp-header with integrated corpsigle,
797doc-header with integrated docsigle
798
799=back
800
801=item
802
Akron0c41ab32020-09-29 07:33:33 +0200803All tokens inside the primary text may not be
Akronee434b12020-07-08 12:53:01 +0200804newline seperated, because newlines are removed
Akron0c41ab32020-09-29 07:33:33 +0200805(see L<KorAP::XML::TEI::Data>) and a conversion of newlines
Akronee434b12020-07-08 12:53:01 +0200806into blanks between 2 tokens could lead to additional blanks,
807where there should be none (e.g.: punctuation characters like C<,> or
808C<.> should not be seperated from their predecessor token).
809(see also code section C<~ whitespace handling ~>).
810
811=back
812
813=head2 Notes on the output
814
815=over 2
816
817=item
818
819zip file output (default on C<stdout>) with utf8 encoded entries
820(which together form the KorAP-XML format)
821
822=back
823
Akrond949e182020-02-14 12:23:57 +0100824=head1 INSTALLATION
825
826C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
827these bindings are available, the preferred way to install the script is
828to use L<cpanm|App::cpanminus>.
829
830 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
831
832In case everything went well, the C<tei2korapxml> tool will
833be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +0200834
Akrond949e182020-02-14 12:23:57 +0100835Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
836
837=head1 OPTIONS
838
839=over 2
840
Akron4e603a52020-07-27 14:23:49 +0200841=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +0100842
Akron4e603a52020-07-27 14:23:49 +0200843The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +0100844
845=item B<--help|-h>
846
847Print help information.
848
849=item B<--version|-v>
850
851Print version information.
852
Akron4e603a52020-07-27 14:23:49 +0200853=item B<--tokenizer-call|-tc>
854
855Call an external tokenizer process, that will tokenize
856a single line from STDIN and outputs one token per line.
857
Marc Kupietz1e882fb2020-09-09 00:05:46 +0200858=item B<--tokenizer-korap|-tk>
859
860Use the standard KorAP/DeReKo tokenizer.
861
Akron6d7b8e42020-09-29 07:37:41 +0200862=item B<--tokenizer-internal|-ti>
Akron4e603a52020-07-27 14:23:49 +0200863
864Tokenize the data using two embedded tokenizers,
865that will take an I<Aggressive> and a I<conservative>
866approach.
867
Akron3378dfd2020-08-01 15:01:36 +0200868=item B<--log|-l>
869
870Loglevel for I<Log::Any>. Defaults to C<notice>.
871
Akrond949e182020-02-14 12:23:57 +0100872=back
873
Akronb3649472020-09-29 08:24:46 +0200874=head1 ENVIRONMENT VARIABLES
875
876=over 2
877
878=item B<KORAPXMLTEI_DEBUG>
879
880Activate minimal debugging.
881Defaults to C<false>.
882
883=item B<KORAPXMLTEI_INLINE>
884
885Process inline annotations, if present.
886Defaults to C<false>.
887
888=back
889
Akrond949e182020-02-14 12:23:57 +0100890=head1 COPYRIGHT AND LICENSE
891
892Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
893
894Author: Peter Harders
895
Akronaabd0952020-09-29 07:35:08 +0200896Contributors: Nils Diewald, Marc Kupietz, Carsten Schnober
Akrond949e182020-02-14 12:23:57 +0100897
898L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
899Corpus Analysis Platform at the
900L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
901member of the
902L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
903
904This program is free software published under the
905L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
906
907=cut