blob: 07d3a7d70daf830ee1fcc9ef8c6d9dcd6fde4504 [file] [log] [blame]
Akron9cb13942020-02-14 07:39:54 +01001#!/usr/bin/env perl
Peter Hardersd892a582020-02-12 15:45:22 +01002use strict;
3use warnings;
Peter Harders6f526a32020-06-29 21:44:41 +02004
Akron3378dfd2020-08-01 15:01:36 +02005use Log::Any '$log';
6use Log::Any::Adapter;
Peter Harders6f526a32020-06-29 21:44:41 +02007use Pod::Usage;
8use Getopt::Long qw(GetOptions :config no_auto_abbrev);
9
10use File::Basename qw(dirname);
Peter Hardersd892a582020-02-12 15:45:22 +010011
12use open qw(:std :utf8); # assume utf-8 encoding
Peter Harders1c5ce152020-07-22 18:02:50 +020013use Encode qw(encode decode);
Peter Hardersd892a582020-02-12 15:45:22 +010014
Peter Hardersd892a582020-02-12 15:45:22 +010015use XML::CompactTree::XS;
16use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010017
Akron4f67cd42020-07-02 12:27:58 +020018use FindBin;
19BEGIN {
20 unshift @INC, "$FindBin::Bin/../lib";
21};
22
Akrona10ad592020-08-03 11:20:23 +020023use KorAP::XML::TEI qw!remove_xml_comments!;
Akron8b511f92020-07-09 17:28:08 +020024use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020025use KorAP::XML::TEI::Tokenizer::Conservative;
26use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron7501ca02020-08-01 21:05:25 +020027use KorAP::XML::TEI::Annotations::Collector;
Akrona10ad592020-08-03 11:20:23 +020028use KorAP::XML::TEI::Data;
Akron85717512020-07-08 11:19:19 +020029use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020030use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010031
Marc Kupietz1e882fb2020-09-09 00:05:46 +020032eval {
33 require KorAP::XML::TEI::Tokenizer::KorAP;
34 1;
35};
Peter Harders1c5ce152020-07-22 18:02:50 +020036
Akrond949e182020-02-14 12:23:57 +010037our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020038
Akrond949e182020-02-14 12:23:57 +010039our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
40
Peter Hardersd892a582020-02-12 15:45:22 +010041
Peter Harders6f526a32020-06-29 21:44:41 +020042# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010043GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020044 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
45 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020046 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Marc Kupietz1e882fb2020-09-09 00:05:46 +020047 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer
Akron6d7b8e42020-09-29 07:37:41 +020048 'tokenizer-internal|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron3378dfd2020-08-01 15:01:36 +020049 'log|l=s' => \(my $log_level = 'notice'),
Akron8b511f92020-07-09 17:28:08 +020050 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010051 pod2usage(
52 -verbose => 99,
53 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
54 -msg => $VERSION_MSG,
55 -output => '-'
56 )
57 },
58 'version|v' => sub {
59 pod2usage(
60 -verbose => 0,
61 -msg => $VERSION_MSG,
62 -output => '-'
63 )
64 }
Peter Hardersd892a582020-02-12 15:45:22 +010065);
66
Akron3378dfd2020-08-01 15:01:36 +020067Log::Any::Adapter->set('Stderr', log_level => $log_level);
68
Peter Harders6f526a32020-06-29 21:44:41 +020069#
70# ~~~ parameter (mandatory) ~~~
71#
Peter Harders6f526a32020-06-29 21:44:41 +020072my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
Akron0c41ab32020-09-29 07:33:33 +020073# optional
Peter Harders6f526a32020-06-29 21:44:41 +020074my $_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 +020075# optional
Peter Harders6f526a32020-06-29 21:44:41 +020076my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
Akron0c41ab32020-09-29 07:33:33 +020077# mandatory
Peter Harders6f526a32020-06-29 21:44:41 +020078my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020079
Peter Harders6f526a32020-06-29 21:44:41 +020080#
81# ~~~ constants ~~~
82#
Peter Hardersd892a582020-02-12 15:45:22 +010083
Akron0c41ab32020-09-29 07:33:33 +020084
Peter Harders41c35622020-07-12 01:16:22 +020085## extern tokenization
Marc Kupietz1e882fb2020-09-09 00:05:46 +020086my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0;
87
Akron0c41ab32020-09-29 07:33:33 +020088my $ext_tok;
89if ($tokenizer_call) {
90 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
91}
Marc Kupietz1e882fb2020-09-09 00:05:46 +020092
Akron0c41ab32020-09-29 07:33:33 +020093elsif ($tokenizer_korap) {
94 $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new;
95};
96my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020097##
98
Akron0c41ab32020-09-29 07:33:33 +020099
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)
Akron0c41ab32020-09-29 07:33:33 +0200102my $_tok_file_con = "tokens_conservative.xml";
103my $_tok_file_agg = "tokens_aggressive.xml";
104my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
105my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +0200106##
107
Akron0c41ab32020-09-29 07:33:33 +0200108
Peter Harders41c35622020-07-12 01:16:22 +0200109my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +0200110
Peter Harders6f526a32020-06-29 21:44:41 +0200111my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
112my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
113 # (see also manpage of XML::CompactTree::XS)
114
115my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
116my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
117my $_structure_dir = "struct"; # name of directory containing the $_structure_file
118my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
119 # (= their names and byte offsets in $_data)
120## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
121my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
122my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
123my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
124 # - evtl. with additional inline annotations
125my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
126
127## TODO: optional
128# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200129my $_INLINE_ANNOT = $ENV{KORAPXMLTEI_INLINE}?1:0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
Akron09e0b2c2020-07-28 15:57:01 +0200130
131# TODO:
132# These parameters are now defunct and moved to Token.pm
Peter Harders6f526a32020-06-29 21:44:41 +0200133my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
134my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
135 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
136 # - which means, that the POS information can be followed by an optional blank with additional
137 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
138my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
139my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
140my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
141##
142
143
144#
145# ~~~ variables ~~~
146#
147
Akron7501ca02020-08-01 21:05:25 +0200148# Initialize Token- and Structure-Collector
149my $tokens = KorAP::XML::TEI::Annotations::Collector->new;
150my $structures = KorAP::XML::TEI::Annotations::Collector->new;
Akron09e0b2c2020-07-28 15:57:01 +0200151
152
Akrona10ad592020-08-03 11:20:23 +0200153# Initialize Data-Collector
154my $data = KorAP::XML::TEI::Data->new;
155
156
Akron85717512020-07-08 11:19:19 +0200157# Initialize zipper
Akron3bdc0a32020-08-03 12:12:56 +0200158my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir);
Peter Harders6f526a32020-06-29 21:44:41 +0200159my $input_fh; # input file handle (default: stdin)
160
Peter Harders6f526a32020-06-29 21:44:41 +0200161my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200162
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'
170my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
171 $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
189($_XCT_LN)?($_IDX=5):($_IDX=4);
190
Akron7501ca02020-08-01 21:05:25 +0200191$fval = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200192
Akronec2cef22020-07-31 10:00:15 +0200193# Normalize regex for header parsing
194for ($_CORP_HEADER_BEG,
195 $_DOC_HEADER_BEG,
196 $_TEXT_HEADER_BEG) {
197 s!^([^\s]+)(.*)$!$1\[\^>\]*$2!;
198};
Peter Hardersd892a582020-02-12 15:45:22 +0100199
Peter Hardersd892a582020-02-12 15:45:22 +0100200
Peter Harders6f526a32020-06-29 21:44:41 +0200201# ~ read input and write output (text by text) ~
Peter Hardersd892a582020-02-12 15:45:22 +0100202
Akron347be812020-09-29 07:52:52 +0200203my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100204
Akron347be812020-09-29 07:52:52 +0200205my $tl = 0; # text line (needed for whitespace handling)
Peter Hardersd892a582020-02-12 15:45:22 +0100206
Akron347be812020-09-29 07:52:52 +0200207$input_fh = *STDIN; # input file handle (default: stdin)
Peter Hardersd892a582020-02-12 15:45:22 +0100208
Akron347be812020-09-29 07:52:52 +0200209# Maybe not necessary
210$data->reset;
Peter Hardersd892a582020-02-12 15:45:22 +0100211
Akron347be812020-09-29 07:52:52 +0200212$dir = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100213
Akron347be812020-09-29 07:52:52 +0200214if ( $input_fname ne '' ){
215 unless (open($input_fh, '<', $input_fname)) {
216 die $log->fatal("File '$input_fname' could not be opened.");
217 };
218}
Peter Harders6f526a32020-06-29 21:44:41 +0200219
Akron347be812020-09-29 07:52:52 +0200220# prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
221# removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
222# see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
223# see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data.
224binmode $input_fh;
Peter Harders6f526a32020-06-29 21:44:41 +0200225
Akron347be812020-09-29 07:52:52 +0200226my $pos;
227my $l = length('</' . $_TEXT_BODY) + 1;
Peter Harders6f526a32020-06-29 21:44:41 +0200228
Akron347be812020-09-29 07:52:52 +0200229# ~ loop (reading input document) ~
Peter Harders6f526a32020-06-29 21:44:41 +0200230
Akron347be812020-09-29 07:52:52 +0200231MAIN: while ( <$input_fh> ){
232
233 $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->)
234
235 if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
236
237 # ~ start of text body ~
238
239 $pfx = $1;
240 $sfx = $2;
241
242 if ($pfx !~ /^\s*$/ || $sfx !~ /^\s*$/) {
243 die $log->fatal("input line number $.: " .
244 "line with opening text-body tag '${_TEXT_BODY}' " .
245 "contains additional information ... => Aborting (line=$_)");
Akron0bb7e722020-09-29 07:48:33 +0200246 };
Peter Harders6f526a32020-06-29 21:44:41 +0200247
Akron347be812020-09-29 07:52:52 +0200248 # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
249 my $buf_in = '';
Peter Harders90157342020-07-01 21:05:14 +0200250
Akron347be812020-09-29 07:52:52 +0200251 # Iterate over all lines in the text body
252 while (<$input_fh>) {
Peter Harders90157342020-07-01 21:05:14 +0200253
Akron347be812020-09-29 07:52:52 +0200254 $_ = remove_xml_comments( $input_fh, $_ );
Peter Harders6f526a32020-06-29 21:44:41 +0200255
Akron347be812020-09-29 07:52:52 +0200256 # ~ end of text body ~
257 if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) {
Peter Harders6f526a32020-06-29 21:44:41 +0200258
Akron347be812020-09-29 07:52:52 +0200259 # 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 +0200260
Akron347be812020-09-29 07:52:52 +0200261 if ((substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/) {
262 die $log->fatal("input line number $.: " .
263 "line with closing text-body tag '${_TEXT_BODY}'".
264 " contains additional information ... => Aborting (line=$_)");
265 };
Peter Harders6f526a32020-06-29 21:44:41 +0200266
Akron347be812020-09-29 07:52:52 +0200267 if ($dir ne "") {
Peter Harders6f526a32020-06-29 21:44:41 +0200268
Akron347be812020-09-29 07:52:52 +0200269 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200270
Akron347be812020-09-29 07:52:52 +0200271 # ~ whitespace handling ~
272 #
273 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
274 # (see function 'retr_info()').
275 #
276 # Definition of significant and insignificant whitespace
277 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
278 #
279 # Significant whitespace is part of the document content and should be preserved.
280 # Insignificant whitespace is used when editing XML documents for readability.
281 # These whitespaces are typically not intended for inclusion in the delivery of the document.
282 #
Peter Harders6f526a32020-06-29 21:44:41 +0200283
Akron347be812020-09-29 07:52:52 +0200284 my $param = XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY;
Peter Harders6f526a32020-06-29 21:44:41 +0200285
Akron347be812020-09-29 07:52:52 +0200286 # _XCT_LINE_NUMBERS is only for debugging
287 $param |= XCT_LINE_NUMBERS if $_XCT_LN;
288 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, $param);
Akron598d1a72020-08-02 17:33:31 +0200289
Akron347be812020-09-29 07:52:52 +0200290 $structures->reset;
Akron598d1a72020-08-02 17:33:31 +0200291
Akron347be812020-09-29 07:52:52 +0200292 $tokens->reset if $_TOKENS_PROC;
Akron598d1a72020-08-02 17:33:31 +0200293
Akron347be812020-09-29 07:52:52 +0200294 # ~ whitespace related issue ~
295 $add_one = 0;
296 %ws = ();
Akron598d1a72020-08-02 17:33:31 +0200297
Akron347be812020-09-29 07:52:52 +0200298 # ~ recursion ~
299 retr_info(1, \$tree_data->[2] ); # parse input data
Akron598d1a72020-08-02 17:33:31 +0200300
Akron347be812020-09-29 07:52:52 +0200301 if ($_DEBUG) {
302 $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file");
Akron0bb7e722020-09-29 07:48:33 +0200303 };
Akron598d1a72020-08-02 17:33:31 +0200304
Akron347be812020-09-29 07:52:52 +0200305 # ~ write data.xml ~
306 $data->to_zip(
307 $zipper->new_stream("$dir/${_data_file}"),
308 $text_id_esc
309 );
Akron598d1a72020-08-02 17:33:31 +0200310
Akron347be812020-09-29 07:52:52 +0200311 # ~ tokenization ~
312 if ($_GEN_TOK_EXT) {
Akron598d1a72020-08-02 17:33:31 +0200313
Akron347be812020-09-29 07:52:52 +0200314 # Tokenize and output
315 $ext_tok->tokenize($data->data)->to_zip(
316 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"),
317 $text_id_esc
318 );
319 };
Akrona10ad592020-08-03 11:20:23 +0200320
Akron347be812020-09-29 07:52:52 +0200321 if ($_GEN_TOK_INT) {
Akrona10ad592020-08-03 11:20:23 +0200322
Akron347be812020-09-29 07:52:52 +0200323 # Tokenize and output
324 $cons_tok->tokenize($data->data)->to_zip(
325 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"),
Akrona10ad592020-08-03 11:20:23 +0200326 $text_id_esc
327 );
Marc Kupietz74ed7f32020-09-09 18:22:07 +0200328
Akron347be812020-09-29 07:52:52 +0200329 $aggr_tok->tokenize($data->data)->to_zip(
330 $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"),
331 $text_id_esc
332 );
Akron598d1a72020-08-02 17:33:31 +0200333
Akron347be812020-09-29 07:52:52 +0200334 $aggr_tok->reset;
335 $cons_tok->reset;
336 };
Akron598d1a72020-08-02 17:33:31 +0200337
Akron347be812020-09-29 07:52:52 +0200338 # ~ write structures ~
339 if (!$structures->empty) {
340 $structures->to_zip(
341 $zipper->new_stream("$dir/$_structure_dir/$_structure_file"),
342 $text_id_esc,
343 2 # = structure serialization
344 );
345 };
Akron598d1a72020-08-02 17:33:31 +0200346
Akron347be812020-09-29 07:52:52 +0200347 # ~ write tokens ~
348 if ($_TOKENS_PROC && !$tokens->empty) {
349 $tokens->to_zip(
350 $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"),
351 $text_id_esc,
352 $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline
353 );
354 };
Akron598d1a72020-08-02 17:33:31 +0200355
Akron347be812020-09-29 07:52:52 +0200356 $dir = ""; # reinit.
Akron598d1a72020-08-02 17:33:31 +0200357
Akron347be812020-09-29 07:52:52 +0200358 # Maybe not necessary
359 $data->reset;
Akron598d1a72020-08-02 17:33:31 +0200360
Akron347be812020-09-29 07:52:52 +0200361 } else { # $dir eq ""
Akron598d1a72020-08-02 17:33:31 +0200362
Akron347be812020-09-29 07:52:52 +0200363 $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data");
Akron598d1a72020-08-02 17:33:31 +0200364 }
Akron598d1a72020-08-02 17:33:31 +0200365
Akron347be812020-09-29 07:52:52 +0200366 next MAIN;
Akron598d1a72020-08-02 17:33:31 +0200367 };
368
Akron347be812020-09-29 07:52:52 +0200369 # ~ inside text body ~
Peter Harders6f526a32020-06-29 21:44:41 +0200370
Akron347be812020-09-29 07:52:52 +0200371 # ~ whitespace handling ~
Peter Harders6f526a32020-06-29 21:44:41 +0200372
Akron347be812020-09-29 07:52:52 +0200373 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
374 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
375 #
376 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
377 # example further down and notes on 'Input restrictions' in the manpage).
378 #
379 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
380 #
381 # 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
382 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
383 #
384 # Examples (how primary text with linebreaks would be converted by below code):
385 #
386 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
387 # '...<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 +0100388
Akron347be812020-09-29 07:52:52 +0200389 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
Akronf57ed812020-07-27 10:37:52 +0200390
Akron347be812020-09-29 07:52:52 +0200391 ### NOTE: this is only relevant, if a text consists of more than one line
392 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
393 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
394 if (m/<[^>]+>[^<]/) { # line contains at least one tag with at least one character contents
Akronf57ed812020-07-27 10:37:52 +0200395
Akron347be812020-09-29 07:52:52 +0200396 # NOTE: not stringent ('...' stands for text):
397 #
398 # beg1............................end1 => no blank before 'beg1'
399 # beg2....<pb/>...................end2 => no blank before 'beg2'
400 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
401 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
402 #
403 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
404 # ^
405 # |_blank between 'end3' and 'beg4'
Akronf57ed812020-07-27 10:37:52 +0200406
Akron347be812020-09-29 07:52:52 +0200407 $tl++; # counter for text lines
Akronf57ed812020-07-27 10:37:52 +0200408
Akron347be812020-09-29 07:52:52 +0200409 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
410 }
411 ###
Akronf57ed812020-07-27 10:37:52 +0200412
Akron347be812020-09-29 07:52:52 +0200413 # add line to buffer
414 $buf_in .= $_;
415 };
Akronf57ed812020-07-27 10:37:52 +0200416
Akron347be812020-09-29 07:52:52 +0200417 } elsif (m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$#) {
Akronf57ed812020-07-27 10:37:52 +0200418
Akron347be812020-09-29 07:52:52 +0200419 # ~ start of header ~
420 $pfx = $1;
421 my $content = "$2\n";
Akronf57ed812020-07-27 10:37:52 +0200422
Akron347be812020-09-29 07:52:52 +0200423 if ($pfx !~ /^\s*$/) {
424 die $log->fatal("input line number $.: " .
425 "line with opening header tag" .
426 " is not in expected format ... => Aborting (line=$_)");
427 };
428
429 # Parse header
430 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
431
432 # Header was parseable
433 if ($header) {
434
435 # Write header to zip
436 my $file = $header->dir . '/' . $_header_file;
437
438 $log->debug("Writing file $file") if $_DEBUG;
439
440 $header->to_zip($zipper->new_stream($file));
441
442 # Header is for text level
443 if ($header->type eq 'text') {
444
445 # Remember dir and sigles
446 $dir = $header->dir;
447 $text_id = $header->id;
448 $text_id_esc = $header->id_esc;
449
450 # log output for seeing progression
451 $log->notice("$0: main(): text_id=".decode('UTF-8', $text_id));
452
453 $tl = 0; # reset (needed for ~ whitespace handling ~)
Akronf57ed812020-07-27 10:37:52 +0200454 }
455 }
Akron347be812020-09-29 07:52:52 +0200456 }
457} #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100458
Akron347be812020-09-29 07:52:52 +0200459$zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200460
Akron347be812020-09-29 07:52:52 +0200461$ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100462
Akron347be812020-09-29 07:52:52 +0200463exit(0);
Peter Hardersd892a582020-02-12 15:45:22 +0100464
Peter Hardersd892a582020-02-12 15:45:22 +0100465
Peter Harders41c35622020-07-12 01:16:22 +0200466sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200467 # recursion level
468 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
469 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100470
Peter Harders41c35622020-07-12 01:16:22 +0200471 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200472 #
Peter Harders41c35622020-07-12 01:16:22 +0200473 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200474 #
Peter Harders41c35622020-07-12 01:16:22 +0200475 # Print out name of 'node2' for the above example:
476 #
477 # 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"'
478 #
479 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200480 #
481 # [ 0: XML_READER_TYPE_DOCUMENT,
482 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200483 # 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 +0200484 # 1: 'node'
485 # 2: ?
486 # 3: HASH (attributes)
487 # 4: 1 (line number)
488 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
489 # 1: 'node1'
490 # 2: ?
491 # 3: undefined (no attributes)
492 # 4: 1 (line number)
493 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
494 # 1: 'some '
495 # ]
496 # 1: [ 0: XML_READER_TYPE_ELEMENT
497 # 1: 'n'
498 # 2: ?
499 # 3: undefined (no attributes)
500 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200501 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200502 # ]
503 # 2: [ 0: XML_READER_TYPE_TEXT
504 # 1: ' text'
505 # ]
506 # ]
507 # ]
508 # 1: [ 0: XML_READER_TYPE_ELEMENT
509 # 1: 'node2'
510 # 2: ?
511 # 3: undefined (not attributes)
512 # 4: 1 (line number)
513 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
514 # 1: 'more-text'
515 # ]
516 # ]
517 # ]
518 # ]
519 # ]
520 # ]
521 # ]
522 #
523 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
524 #
525 # ref($data->[2]) == ARRAY (with 1 element for 'node')
526 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
527 #
528 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
529 # $data->[2]->[0]->[1] == 'node'
530 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
531 # $data->[2]->[0]->[4] == 1 (line number)
532 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200533 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200534 #
535 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
536 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
537 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
538 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
539 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
540 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
541 #
542 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
543 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
544 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
545 #
546 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
547 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
548 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
549 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
550 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200551 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200552 #
553 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
554 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
555 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
Akron0c41ab32020-09-29 07:33:33 +0200556 #
Peter Harders6f526a32020-06-29 21:44:41 +0200557 #
558 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
559 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
560 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100561
Akron0c41ab32020-09-29 07:33:33 +0200562 foreach $e (@{${$_[0]}}) { # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Harders41c35622020-07-12 01:16:22 +0200563
Akron0c41ab32020-09-29 07:33:33 +0200564 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 +0100565
Peter Harders6f526a32020-06-29 21:44:41 +0200566 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200567 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200568 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100569
Peter Harders6f526a32020-06-29 21:44:41 +0200570 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100571
Akron7501ca02020-08-01 21:05:25 +0200572 # $e->[1] represents the tag name
573 my $anno = $structures->add_new_annotation($e->[1]);
Peter Hardersd892a582020-02-12 15:45:22 +0100574
Peter Harders6f526a32020-06-29 21:44:41 +0200575 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100576
Akron7501ca02020-08-01 21:05:25 +0200577 # Add element also to token list
578 if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) {
579 $tokens->add_annotation($anno);
580 };
Peter Hardersd892a582020-02-12 15:45:22 +0100581
Peter Harders6f526a32020-06-29 21:44:41 +0200582 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100583
Akron0c41ab32020-09-29 07:33:33 +0200584 if (defined $e->[3]) { # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100585
Akron0c41ab32020-09-29 07:33:33 +0200586 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 +0200587 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
588 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100589
Peter Harders6f526a32020-06-29 21:44:41 +0200590 # '$c' references the 'key' and '$c+1' the 'value'
Akron7501ca02020-08-01 21:05:25 +0200591 $anno->add_attribute(
592 @{$e->[3]}[$c, $c + 1]
593 );
Peter Harders6f526a32020-06-29 21:44:41 +0200594 }
595 }
596
597
598 # ~ index 'from' ~
599
600 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
Akrona10ad592020-08-03 11:20:23 +0200601 $anno->set_from($data->position + $add_one);
Peter Harders6f526a32020-06-29 21:44:41 +0200602
603 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200604 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200605 #~~~~
606
607
608 # ~~ RECURSION ~~
609
Akron0c41ab32020-09-29 07:33:33 +0200610 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 +0200611
Akron1c4f2202020-07-30 09:28:22 +0200612 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200613 }
614
615
616 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200617 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200618 #~~~~~
619
Akrona10ad592020-08-03 11:20:23 +0200620 my $pos = $data->position;
Peter Harders6f526a32020-06-29 21:44:41 +0200621
Akron7501ca02020-08-01 21:05:25 +0200622 # ~ handle structures and tokens ~
Peter Harders6f526a32020-06-29 21:44:41 +0200623
624 {
Akron7501ca02020-08-01 21:05:25 +0200625 $fval = $anno->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200626
Akron0c41ab32020-09-29 07:33:33 +0200627 if ($fval > 0 && not exists $ws{$fval - 1}) { # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200628
Peter Harders41c35622020-07-12 01:16:22 +0200629 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200630
Akron7501ca02020-08-01 21:05:25 +0200631 $anno->set_from($fval - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200632 }
633
634 # in case this fails, check input
Akron0bb7e722020-09-29 07:48:33 +0200635 if (($fval - 1) > $pos) {
636 die $log->fatal("text_id='$text_id', " .
637 "processing of structures: " .
638 "from-value ($fval) is 2 or more greater " .
639 "than to-value ($pos) => please check. Aborting");
640 };
Peter Harders6f526a32020-06-29 21:44:41 +0200641
Peter Harders41c35622020-07-12 01:16:22 +0200642 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200643 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
Akron0c41ab32020-09-29 07:33:33 +0200644 #
Akrona10ad592020-08-03 11:20:23 +0200645 # 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 +0200646 # do testing with bigger corpus excerpt (wikipedia?)
Akrona10ad592020-08-03 11:20:23 +0200647 $anno->set_from($pos) if $fval == $pos + 1;
648 $anno->set_to($pos);
Akron7501ca02020-08-01 21:05:25 +0200649 $anno->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200650
Akrona10ad592020-08-03 11:20:23 +0200651 # 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 +0200652 }
653
Peter Harders6f526a32020-06-29 21:44:41 +0200654 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100655 # clean up
Akron0c41ab32020-09-29 07:33:33 +0200656 delete $ws{$fval - 1} if $fval > 0 && exists $ws{$fval - 1};
Peter Hardersd892a582020-02-12 15:45:22 +0100657
658
Peter Harders41c35622020-07-12 01:16:22 +0200659 #~~~~
660 # until here: tag-node (closing)
661 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100662
663
Akron0c41ab32020-09-29 07:33:33 +0200664 #~~~~~
665 # from here: text- and whitespace-nodes
666 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200667
Akron0c41ab32020-09-29 07:33:33 +0200668 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
669 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
670 #
671 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
672 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
673 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
674 #
675 # 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 +0100676
Akron0c41ab32020-09-29 07:33:33 +0200677 } elsif ($e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE){
Peter Hardersd892a582020-02-12 15:45:22 +0100678
Peter Harders41c35622020-07-12 01:16:22 +0200679 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200680 #
Peter Harders41c35622020-07-12 01:16:22 +0200681 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200682 #
683 # 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 +0200684 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Akron0c41ab32020-09-29 07:33:33 +0200685 #
Peter Harders41c35622020-07-12 01:16:22 +0200686 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
687 # 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 +0200688 #
Peter Harders41c35622020-07-12 01:16:22 +0200689 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
690 # 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 +0200691 #
Peter Harders41c35622020-07-12 01:16:22 +0200692 # 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.
693 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
694 # 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
695 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200696 #
Peter Harders41c35622020-07-12 01:16:22 +0200697 # 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 +0200698 # 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 +0200699 #
Peter Harders41c35622020-07-12 01:16:22 +0200700 # [1]
701 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
702 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
703 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200704 #
Peter Harders41c35622020-07-12 01:16:22 +0200705 # [2]
706 # 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
707 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200708 #
Peter Harders41c35622020-07-12 01:16:22 +0200709 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
710 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200711 #
Peter Harders41c35622020-07-12 01:16:22 +0200712 # 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-
713 # 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 +0200714
Akron0c41ab32020-09-29 07:33:33 +0200715 if ($e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE) {
Peter Harders6f526a32020-06-29 21:44:41 +0200716
Peter Harders41c35622020-07-12 01:16:22 +0200717 # ~ whitespace-node ~
718
719 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200720
721 $add_one = 0;
722
Akrona10ad592020-08-03 11:20:23 +0200723 # state, that this from-index belongs to a whitespace-node
724 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
725 $ws{$data->position}++;
Peter Harders6f526a32020-06-29 21:44:41 +0200726
Akron0c41ab32020-09-29 07:33:33 +0200727 } else {
Peter Harders6f526a32020-06-29 21:44:41 +0200728
729 # ~ text-node ~
730
731 $add_one = 1;
Akron0c41ab32020-09-29 07:33:33 +0200732 };
Peter Harders6f526a32020-06-29 21:44:41 +0200733
734
Akrona10ad592020-08-03 11:20:23 +0200735 # ~ update $data ~
Peter Harders6f526a32020-06-29 21:44:41 +0200736
Akrona10ad592020-08-03 11:20:23 +0200737 $data->append($e->[1]);
Peter Harders6f526a32020-06-29 21:44:41 +0200738
Peter Harders41c35622020-07-12 01:16:22 +0200739 #~~~~~
740 # until here: text- and whitespace-nodes
741 #~~~~~
742
743
Akron0c41ab32020-09-29 07:33:33 +0200744 # elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
745 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
Peter Harders6f526a32020-06-29 21:44:41 +0200746
747
Akron0c41ab32020-09-29 07:33:33 +0200748 } else { # not yet handled type
Peter Harders6f526a32020-06-29 21:44:41 +0200749
Akron0bb7e722020-09-29 07:48:33 +0200750 die $log->fatal('Not yet handled type ($e->[0]=' . $e->[0] . ') ... => Aborting');
Peter Harders6f526a32020-06-29 21:44:41 +0200751 }
752
753 } # end: foreach iteration
754
755} # end: sub retr_info
756
Akrond949e182020-02-14 12:23:57 +0100757__END__
758
759=pod
760
761=encoding utf8
762
763=head1 NAME
764
765tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
766
767=head1 SYNOPSIS
768
769 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
770
771=head1 DESCRIPTION
772
Akronee434b12020-07-08 12:53:01 +0200773C<tei2korapxml> is a script to convert TEI P5 and
774L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
775based documents to the
776L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
777If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100778read from C<STDIN>. If no specific output is defined, data is written
779to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200780
Akrond949e182020-02-14 12:23:57 +0100781This program is usually called from inside another script.
782
Akronee434b12020-07-08 12:53:01 +0200783=head1 FORMATS
784
785=head2 Input restrictions
786
787=over 2
788
789=item
790
791utf8 encoded
792
793=item
794
795TEI P5 formatted input with certain restrictions:
796
797=over 4
798
799=item
800
801B<mandatory>: text-header with integrated textsigle, text-body
802
803=item
804
805B<optional>: corp-header with integrated corpsigle,
806doc-header with integrated docsigle
807
808=back
809
810=item
811
Akron0c41ab32020-09-29 07:33:33 +0200812All tokens inside the primary text may not be
Akronee434b12020-07-08 12:53:01 +0200813newline seperated, because newlines are removed
Akron0c41ab32020-09-29 07:33:33 +0200814(see L<KorAP::XML::TEI::Data>) and a conversion of newlines
Akronee434b12020-07-08 12:53:01 +0200815into blanks between 2 tokens could lead to additional blanks,
816where there should be none (e.g.: punctuation characters like C<,> or
817C<.> should not be seperated from their predecessor token).
818(see also code section C<~ whitespace handling ~>).
819
820=back
821
822=head2 Notes on the output
823
824=over 2
825
826=item
827
828zip file output (default on C<stdout>) with utf8 encoded entries
829(which together form the KorAP-XML format)
830
831=back
832
Akrond949e182020-02-14 12:23:57 +0100833=head1 INSTALLATION
834
835C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
836these bindings are available, the preferred way to install the script is
837to use L<cpanm|App::cpanminus>.
838
839 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
840
841In case everything went well, the C<tei2korapxml> tool will
842be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +0200843
Akrond949e182020-02-14 12:23:57 +0100844Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
845
846=head1 OPTIONS
847
848=over 2
849
Akron4e603a52020-07-27 14:23:49 +0200850=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +0100851
Akron4e603a52020-07-27 14:23:49 +0200852The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +0100853
854=item B<--help|-h>
855
856Print help information.
857
858=item B<--version|-v>
859
860Print version information.
861
Akron4e603a52020-07-27 14:23:49 +0200862=item B<--tokenizer-call|-tc>
863
864Call an external tokenizer process, that will tokenize
865a single line from STDIN and outputs one token per line.
866
Marc Kupietz1e882fb2020-09-09 00:05:46 +0200867=item B<--tokenizer-korap|-tk>
868
869Use the standard KorAP/DeReKo tokenizer.
870
Akron6d7b8e42020-09-29 07:37:41 +0200871=item B<--tokenizer-internal|-ti>
Akron4e603a52020-07-27 14:23:49 +0200872
873Tokenize the data using two embedded tokenizers,
874that will take an I<Aggressive> and a I<conservative>
875approach.
876
Akron3378dfd2020-08-01 15:01:36 +0200877=item B<--log|-l>
878
879Loglevel for I<Log::Any>. Defaults to C<notice>.
880
Akrond949e182020-02-14 12:23:57 +0100881=back
882
883=head1 COPYRIGHT AND LICENSE
884
885Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
886
887Author: Peter Harders
888
Akronaabd0952020-09-29 07:35:08 +0200889Contributors: Nils Diewald, Marc Kupietz, Carsten Schnober
Akrond949e182020-02-14 12:23:57 +0100890
891L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
892Corpus Analysis Platform at the
893L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
894member of the
895L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
896
897This program is free software published under the
898L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
899
900=cut