blob: bfc142a4f0c2fe44f0ab93d9779c2cf1f93fbc96 [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
5use Pod::Usage;
6use Getopt::Long qw(GetOptions :config no_auto_abbrev);
7
8use File::Basename qw(dirname);
Peter Hardersd892a582020-02-12 15:45:22 +01009
10use open qw(:std :utf8); # assume utf-8 encoding
Peter Harders1c5ce152020-07-22 18:02:50 +020011use Encode qw(encode decode);
Peter Hardersd892a582020-02-12 15:45:22 +010012
Peter Hardersd892a582020-02-12 15:45:22 +010013use XML::CompactTree::XS;
14use XML::LibXML::Reader;
Peter Hardersd892a582020-02-12 15:45:22 +010015
Akron4f67cd42020-07-02 12:27:58 +020016use FindBin;
17BEGIN {
18 unshift @INC, "$FindBin::Bin/../lib";
19};
20
Akron0465e9e2020-07-27 15:55:21 +020021use KorAP::XML::TEI qw!remove_xml_comments escape_xml!;
Akron8b511f92020-07-09 17:28:08 +020022use KorAP::XML::TEI::Tokenizer::External;
Akrond9627472020-07-09 16:53:09 +020023use KorAP::XML::TEI::Tokenizer::Conservative;
24use KorAP::XML::TEI::Tokenizer::Aggressive;
Akron09e0b2c2020-07-28 15:57:01 +020025use KorAP::XML::TEI::Tokenizer::Collector;
Akron85717512020-07-08 11:19:19 +020026use KorAP::XML::TEI::Zipper;
Akronf57ed812020-07-27 10:37:52 +020027use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010028
Peter Harders1c5ce152020-07-22 18:02:50 +020029
Akrond949e182020-02-14 12:23:57 +010030our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020031
Akrond949e182020-02-14 12:23:57 +010032our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
33
Peter Hardersd892a582020-02-12 15:45:22 +010034
Peter Harders6f526a32020-06-29 21:44:41 +020035# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010036GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020037 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
38 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020039 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Peter Hardersf9c51242020-07-21 02:37:44 +020040 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron8b511f92020-07-09 17:28:08 +020041 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010042 pod2usage(
43 -verbose => 99,
44 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
45 -msg => $VERSION_MSG,
46 -output => '-'
47 )
48 },
49 'version|v' => sub {
50 pod2usage(
51 -verbose => 0,
52 -msg => $VERSION_MSG,
53 -output => '-'
54 )
55 }
Peter Hardersd892a582020-02-12 15:45:22 +010056);
57
Peter Harders6f526a32020-06-29 21:44:41 +020058#
59# ~~~ parameter (mandatory) ~~~
60#
Peter Harders6f526a32020-06-29 21:44:41 +020061my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
62 # optional
63my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
64 # optional
65my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
66 # mandatory
67my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
Akron09e0b2c2020-07-28 15:57:01 +020068
Peter Harders6f526a32020-06-29 21:44:41 +020069#
70# ~~~ constants ~~~
71#
Peter Hardersd892a582020-02-12 15:45:22 +010072
Peter Harders41c35622020-07-12 01:16:22 +020073## extern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020074my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0;
Akron8b511f92020-07-09 17:28:08 +020075 # TODO:
76 # Read tokenizer call from configuration file.
77 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
78 my $ext_tok;
79 if ($tokenizer_call) {
80 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
81 };
Peter Harders41c35622020-07-12 01:16:22 +020082 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020083##
84
Akron8b511f92020-07-09 17:28:08 +020085## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020086my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +020087 my $_tok_file_con = "tokens_conservative.xml";
88 my $_tok_file_agg = "tokens_aggressive.xml";
89 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
90 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +020091##
92
93my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +020094
Peter Harders6f526a32020-06-29 21:44:41 +020095my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
96my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
97 # (see also manpage of XML::CompactTree::XS)
98
99my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
100my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
101my $_structure_dir = "struct"; # name of directory containing the $_structure_file
102my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
103 # (= their names and byte offsets in $_data)
104## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
105my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
106my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
107my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
108 # - evtl. with additional inline annotations
109my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
110
111## TODO: optional
112# handling inline annotations (inside $_TOKENS_TAG)
Akrone68ec0c2020-07-28 18:06:19 +0200113my $_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 +0200114
115# TODO:
116# These parameters are now defunct and moved to Token.pm
Peter Harders6f526a32020-06-29 21:44:41 +0200117my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
118my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
119 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
120 # - which means, that the POS information can be followed by an optional blank with additional
121 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
122my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
123my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
124my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
125##
126
127
128#
129# ~~~ variables ~~~
130#
131
Akron09e0b2c2020-07-28 15:57:01 +0200132# Initialize Token-Collector
133my $tokens = KorAP::XML::TEI::Tokenizer::Collector->new;
134
135
Akron85717512020-07-08 11:19:19 +0200136# Initialize zipper
137my $zipper = KorAP::XML::TEI::Zipper->new;
Peter Harders6f526a32020-06-29 21:44:41 +0200138my $input_fh; # input file handle (default: stdin)
139
140my $buf_in; # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
141my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
142
143my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200144
145my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
146
Akronf57ed812020-07-27 10:37:52 +0200147my ( $data_fl );
Peter Harders6f526a32020-06-29 21:44:41 +0200148
Akronf57ed812020-07-27 10:37:52 +0200149my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200150
Peter Harders6f526a32020-06-29 21:44:41 +0200151
152my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
153 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
154
Akron09e0b2c2020-07-28 15:57:01 +0200155my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures'
Peter Harders6f526a32020-06-29 21:44:41 +0200156
157my ( $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
163 $n, # tag name of actual processed element $e
Peter Harders6f526a32020-06-29 21:44:41 +0200164 $dl, # actual length of string $data
165 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
166 # represents the actual processed element from @structures
Peter Harders6f526a32020-06-29 21:44:41 +0200167 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
168 $add_one, # ...
169 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200170 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
171 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200172 # (means: 'from-index - 1' is a key in %ws).
173 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
174
175my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
176
177my ( $i, $c ); # index variables used in loops
178
Peter Harders6f526a32020-06-29 21:44:41 +0200179
180#
181# ~~~ main ~~~
182#
183
184# ~ initializations ~
185
186($_XCT_LN)?($_IDX=5):($_IDX=4);
187
Akronf57ed812020-07-27 10:37:52 +0200188$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200189
Peter Harders6f526a32020-06-29 21:44:41 +0200190$fval = $fval2 = 0;
191
192$_root_dir .= '/'; # base dir must always end with a slash
193$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
194
Akronf57ed812020-07-27 10:37:52 +0200195$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
196$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
197$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
Peter Hardersd892a582020-02-12 15:45:22 +0100198
199$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
200$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
201$data_prfx1 .= "<raw_text docid=\"";
202$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200203## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100204$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200205##
Peter Hardersd892a582020-02-12 15:45:22 +0100206$data_prfx2 .= " <text>";
207$data_sfx = "</text>\n</raw_text>";
208
Peter Hardersd892a582020-02-12 15:45:22 +0100209
Peter Harders6f526a32020-06-29 21:44:41 +0200210# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200211main();
Peter Hardersd892a582020-02-12 15:45:22 +0100212
Peter Hardersd892a582020-02-12 15:45:22 +0100213
Peter Harders6f526a32020-06-29 21:44:41 +0200214#
215# ~~~ subs ~~~
216#
Peter Hardersd892a582020-02-12 15:45:22 +0100217
Peter Hardersd892a582020-02-12 15:45:22 +0100218
Peter Harders41c35622020-07-12 01:16:22 +0200219sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100220
Peter Harders6f526a32020-06-29 21:44:41 +0200221 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100222
Peter Harders41c35622020-07-12 01:16:22 +0200223 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200224
225 $input_fh = *STDIN; # input file handle (default: stdin)
226
Akron85717512020-07-08 11:19:19 +0200227 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200228
Akronf57ed812020-07-27 10:37:52 +0200229 $buf_in = $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200230
231
232 if ( $input_fname ne '' ){
233
234 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
235
236 }
237
238
Peter Harders41c35622020-07-12 01:16:22 +0200239 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200240 # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
Peter Harders1c5ce152020-07-22 18:02:50 +0200241 # see in perluniintro: You can switch encodings on an already opened stream by using "binmode()
242 # see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data.
Peter Harders90157342020-07-01 21:05:14 +0200243 binmode $input_fh;
244
245
Peter Harders6f526a32020-06-29 21:44:41 +0200246 # ~ loop (reading input document) ~
247
248 while ( <$input_fh> ){
249
Peter Harders6f526a32020-06-29 21:44:41 +0200250 # TODO: yet not tested fo big amounts of data
251 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron95bc98a2020-07-11 12:00:12 +0200252 remove_xml_comments( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200253
254 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
255
256
257 # ~ end of text body ~
258
259
Akron8b511f92020-07-09 17:28:08 +0200260 # 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 +0200261
262 $pfx = $1; $sfx = $2;
263
Akrone19aa3e2020-07-27 11:41:27 +0200264 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200265 ." contains additional information ... => Aborting\n\tline=$_"
266 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
267
268 if ( $dir ne "" ){
269
Peter Harders6f526a32020-06-29 21:44:41 +0200270 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200271
Peter Harders41c35622020-07-12 01:16:22 +0200272 # ~ whitespace handling ~
273 #
274 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
275 # (see function 'retr_info()').
276 #
277 # Definition of significant and insignificant whitespace
278 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
279 #
280 # Significant whitespace is part of the document content and should be preserved.
281 # Insignificant whitespace is used when editing XML documents for readability.
282 # These whitespaces are typically not intended for inclusion in the delivery of the document.
283 #
Peter Harders6f526a32020-06-29 21:44:41 +0200284 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
285 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
286 } else {
287 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
288 }
289
290 @structures = (); @oti = ();
291
292 if ( $_TOKENS_PROC ){
Akron09e0b2c2020-07-28 15:57:01 +0200293 $tokens->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200294 }
295
Akron1c4f2202020-07-30 09:28:22 +0200296 $dl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200297
298 # ~ whitespace related issue ~
299 $add_one = 0;
300 %ws = ();
301
302
303 # ~ recursion ~
Akron1c4f2202020-07-30 09:28:22 +0200304 retr_info(1, \$tree_data->[2] ); # parse input data
Peter Harders6f526a32020-06-29 21:44:41 +0200305
306
307 # ~ write data.xml ~
308
Peter Harders41c35622020-07-12 01:16:22 +0200309 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
310 # (...elsif ( $data_fl )....)
Peter Harders6f526a32020-06-29 21:44:41 +0200311 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
Peter Harders41c35622020-07-12 01:16:22 +0200312 #
Peter Harders6f526a32020-06-29 21:44:41 +0200313
Peter Harders6f526a32020-06-29 21:44:41 +0200314
Akronedee6e52020-07-27 14:15:11 +0200315 # ~ tokenization ~
316
Akron8b511f92020-07-09 17:28:08 +0200317 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200318
Akron09e0b2c2020-07-28 15:57:01 +0200319 # Tokenize and output
Akronedee6e52020-07-27 14:15:11 +0200320 $ext_tok->tokenize($data)->to_zip(
321 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
322 $text_id_esc
323 );
Akron09e0b2c2020-07-28 15:57:01 +0200324 };
Peter Harders42e18a62020-07-21 02:43:26 +0200325
326 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200327
Akronedee6e52020-07-27 14:15:11 +0200328 # Tokenize and output
329 $cons_tok->tokenize($data)->to_zip(
330 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
331 $text_id_esc
332 );
333
334 $aggr_tok->tokenize($data)->to_zip(
335 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
336 $text_id_esc
337 );
338
339 $aggr_tok->reset;
340 $cons_tok->reset;
Akron09e0b2c2020-07-28 15:57:01 +0200341 };
Akron8b511f92020-07-09 17:28:08 +0200342
Akron0465e9e2020-07-27 15:55:21 +0200343 # Encode and escape data
344 $data = escape_xml(encode( "UTF-8", $data ));
345 # note: the index still refers to the 'single character'-versions,
346 # which are counted as 1 (search for '&amp;' in data.xml and see
347 # corresponding indices in $_tokens_file)
348
Peter Harders6f526a32020-06-29 21:44:41 +0200349 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
350
Akron85717512020-07-08 11:19:19 +0200351 $zipper->new_stream("$_root_dir$dir/$_data_file")
352 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200353
354 # ~ write structures ~
355
356 write_structures() if @structures;
357
358
359 # ~ write tokens ~
360
Akron09e0b2c2020-07-28 15:57:01 +0200361 if ($_TOKENS_PROC && !$tokens->empty) {
362 $tokens->to_zip(
363 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/${_tokens_file}"),
364 $text_id_esc,
365 $_INLINE_ANNOT
366 );
367 };
Peter Harders6f526a32020-06-29 21:44:41 +0200368
Peter Hardersb1227172020-07-21 02:12:10 +0200369 #print STDERR "$0: write_tokenization(): DONE\n";
370
Peter Harders6f526a32020-06-29 21:44:41 +0200371 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
372
373 } else { # $dir eq ""
374
375 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
Akronf57ed812020-07-27 10:37:52 +0200376 # print STDERR "WARNING ($0): main(): text header=$header_txt\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200377 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100378 }
379
Peter Harders6f526a32020-06-29 21:44:41 +0200380 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100381
Peter Hardersd892a582020-02-12 15:45:22 +0100382
Peter Harders6f526a32020-06-29 21:44:41 +0200383 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100384
Peter Hardersd892a582020-02-12 15:45:22 +0100385
Peter Harders6f526a32020-06-29 21:44:41 +0200386 #print STDERR "inside text body (\$data_fl set)\n";
387
388 # ~ whitespace handling ~
389
Peter Harders41c35622020-07-12 01:16:22 +0200390 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
391 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100392 #
Peter Harders41c35622020-07-12 01:16:22 +0200393 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
394 # example further down and notes on 'Input restrictions' in the manpage).
395 #
396 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
397 #
398 # 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
399 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
400 #
401 # Examples (how primary text with linebreaks would be converted by below code):
402 #
403 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
404 # '...<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 +0100405
Peter Harders41c35622020-07-12 01:16:22 +0200406 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
407
408 ### NOTE: this is only relevant, if a text consists of more than one line
409 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
410 ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text)
Peter Harders6f526a32020-06-29 21:44:41 +0200411 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100412
Peter Harders41c35622020-07-12 01:16:22 +0200413 # NOTE: not stringent ('...' stands for text):
414 #
415 # beg1............................end1 => no blank before 'beg1'
416 # beg2....<pb/>...................end2 => no blank before 'beg2'
417 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
418 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
419 #
420 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
421 # ^
422 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100423
Peter Harders41c35622020-07-12 01:16:22 +0200424 $tl++; # counter for text lines
425
426 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100427 }
Peter Harders41c35622020-07-12 01:16:22 +0200428 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100429
Peter Harders6f526a32020-06-29 21:44:41 +0200430 # add line to buffer
431 $buf_in .= $_;
432
Peter Harders6f526a32020-06-29 21:44:41 +0200433 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
434
Peter Harders6f526a32020-06-29 21:44:41 +0200435 # ~ start of text body ~
436
Peter Harders6f526a32020-06-29 21:44:41 +0200437 #print STDERR "inside text body\n";
438
439 $pfx = $1; $sfx = $2;
440
441 $data_fl = 1;
442
Akrone19aa3e2020-07-27 11:41:27 +0200443 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200444 ." contains additional information ... => Aborting\n\tline=$_"
445 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
446
Akronf57ed812020-07-27 10:37:52 +0200447 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200448
Akronf57ed812020-07-27 10:37:52 +0200449 # ~ start of header ~
450 $pfx = $1;
451 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200452
Akrone19aa3e2020-07-27 11:41:27 +0200453 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200454 ." is not in expected format ... => Aborting\n\tline=$_"
455 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100456
Akronf57ed812020-07-27 10:37:52 +0200457 # Parse header
458 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
459
460 # Header was parseable
461 if ($header) {
462
463 # Write header to zip
464 my $file = $_root_dir . $header->dir . '/' . $_header_file;
465
466 print STDERR "DEBUG ($0): Writing file $file\n" if $_DEBUG;
467
468 $header->to_zip($zipper->new_stream($file));
469
470 # Header is for text level
471 if ($header->type eq 'text') {
472
473 # Remember dir and sigles
474 $dir = $header->dir;
475 $text_id = $header->id;
476 $text_id_esc = $header->id_esc;
477
478 # log output for seeing progression
Peter Harders1c5ce152020-07-22 18:02:50 +0200479 print STDERR "$0: main(): text_id=".decode("UTF-8", $text_id )."\n";
Akronf57ed812020-07-27 10:37:52 +0200480
481 $tl = 0; # reset (needed for ~ whitespace handling ~)
482 };
483 }
484 }
Peter Harders6f526a32020-06-29 21:44:41 +0200485 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100486
Akron85717512020-07-08 11:19:19 +0200487 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200488
Akron09e0b2c2020-07-28 15:57:01 +0200489 $ext_tok->close if $_GEN_TOK_EXT;
Peter Hardersd892a582020-02-12 15:45:22 +0100490
Peter Harders41c35622020-07-12 01:16:22 +0200491} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100492
Peter Hardersd892a582020-02-12 15:45:22 +0100493
Peter Harders41c35622020-07-12 01:16:22 +0200494sub retr_info { # called from main()
Akron1c4f2202020-07-30 09:28:22 +0200495 # recursion level
496 # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
497 my $rl = shift;
Peter Hardersd892a582020-02-12 15:45:22 +0100498
Peter Harders41c35622020-07-12 01:16:22 +0200499 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200500 #
Peter Harders41c35622020-07-12 01:16:22 +0200501 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200502 #
Peter Harders41c35622020-07-12 01:16:22 +0200503 # Print out name of 'node2' for the above example:
504 #
505 # 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"'
506 #
507 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200508 #
509 # [ 0: XML_READER_TYPE_DOCUMENT,
510 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200511 # 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 +0200512 # 1: 'node'
513 # 2: ?
514 # 3: HASH (attributes)
515 # 4: 1 (line number)
516 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
517 # 1: 'node1'
518 # 2: ?
519 # 3: undefined (no attributes)
520 # 4: 1 (line number)
521 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
522 # 1: 'some '
523 # ]
524 # 1: [ 0: XML_READER_TYPE_ELEMENT
525 # 1: 'n'
526 # 2: ?
527 # 3: undefined (no attributes)
528 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200529 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200530 # ]
531 # 2: [ 0: XML_READER_TYPE_TEXT
532 # 1: ' text'
533 # ]
534 # ]
535 # ]
536 # 1: [ 0: XML_READER_TYPE_ELEMENT
537 # 1: 'node2'
538 # 2: ?
539 # 3: undefined (not attributes)
540 # 4: 1 (line number)
541 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
542 # 1: 'more-text'
543 # ]
544 # ]
545 # ]
546 # ]
547 # ]
548 # ]
549 # ]
550 #
551 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
552 #
553 # ref($data->[2]) == ARRAY (with 1 element for 'node')
554 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
555 #
556 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
557 # $data->[2]->[0]->[1] == 'node'
558 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
559 # $data->[2]->[0]->[4] == 1 (line number)
560 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200561 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200562 #
563 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
564 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
565 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
566 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
567 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
568 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
569 #
570 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
571 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
572 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
573 #
574 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
575 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
576 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
577 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
578 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200579 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200580 #
581 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
582 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
583 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
584 #
585 #
586 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
587 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
588 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100589
Peter Harders41c35622020-07-12 01:16:22 +0200590
Peter Harders6f526a32020-06-29 21:44:41 +0200591 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Hardersd892a582020-02-12 15:45:22 +0100593
Peter Harders41c35622020-07-12 01:16:22 +0200594 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 +0100595
Peter Hardersd892a582020-02-12 15:45:22 +0100596
Peter Harders6f526a32020-06-29 21:44:41 +0200597 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200598 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200599 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Hardersd892a582020-02-12 15:45:22 +0100601
Peter Harders6f526a32020-06-29 21:44:41 +0200602 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
603 # update @oti (open tags indizes) with @structures highest index (= $#structures); e.g.: @a=(1,2,3) => $#a = 2
Peter Hardersd892a582020-02-12 15:45:22 +0100604
Peter Harders6f526a32020-06-29 21:44:41 +0200605 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100606
Peter Harders6f526a32020-06-29 21:44:41 +0200607 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100608
Peter Hardersd892a582020-02-12 15:45:22 +0100609
Peter Harders6f526a32020-06-29 21:44:41 +0200610 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100611
Peter Harders6f526a32020-06-29 21:44:41 +0200612 my @array;
613 push @array, $n;
614 push @structures, \@array;
615 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100616
Peter Hardersd892a582020-02-12 15:45:22 +0100617
Peter Harders6f526a32020-06-29 21:44:41 +0200618 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100619
Akron09e0b2c2020-07-28 15:57:01 +0200620 # Wether to push entry also into tokens
Akron0eacef72020-07-30 11:51:28 +0200621 my $inside_tokens_tag = 1 if $_TOKENS_PROC && $n eq $_TOKENS_TAG;
Peter Hardersd892a582020-02-12 15:45:22 +0100622
Akron09e0b2c2020-07-28 15:57:01 +0200623 my $current_token;
624
625 # Add element to token list
Akron0eacef72020-07-30 11:51:28 +0200626 if ($inside_tokens_tag) {
Akron09e0b2c2020-07-28 15:57:01 +0200627 $current_token = $tokens->add_token($n); # TODO: adding $n is of no use (redundant)
Peter Harders6f526a32020-06-29 21:44:41 +0200628 }
Peter Hardersd892a582020-02-12 15:45:22 +0100629
Peter Hardersd892a582020-02-12 15:45:22 +0100630
Peter Harders6f526a32020-06-29 21:44:41 +0200631 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100632
Peter Harders6f526a32020-06-29 21:44:41 +0200633 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100634
Peter Harders6f526a32020-06-29 21:44:41 +0200635 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
636 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
637 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100638
Peter Harders6f526a32020-06-29 21:44:41 +0200639 # '$c' references the 'key' and '$c+1' the 'value'
640 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100641
Akron0eacef72020-07-30 11:51:28 +0200642 if ($inside_tokens_tag) {
Peter Hardersd892a582020-02-12 15:45:22 +0100643
Akron09e0b2c2020-07-28 15:57:01 +0200644 # Add attributes to current token
645 $current_token->add_attribute(
646 @{$e->[3]}[$c, $c + 1]
647 );
Peter Harders6f526a32020-06-29 21:44:41 +0200648 }
Peter Harders6f526a32020-06-29 21:44:41 +0200649 }
650 }
651
652
653 # ~ index 'from' ~
654
655 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
656
Peter Harders41c35622020-07-12 01:16:22 +0200657 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200658
Akron0eacef72020-07-30 11:51:28 +0200659 if ($inside_tokens_tag) {
Peter Harders6f526a32020-06-29 21:44:41 +0200660
Akron09e0b2c2020-07-28 15:57:01 +0200661 # Set from value to tokens
662 $current_token->set_from($dl + $add_one);
663 };
Peter Harders6f526a32020-06-29 21:44:41 +0200664
665
666 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200667 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200668 #~~~~
669
670
671 # ~~ RECURSION ~~
672
Peter Harders41c35622020-07-12 01:16:22 +0200673 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 +0200674
Akron1c4f2202020-07-30 09:28:22 +0200675 retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200676 }
677
678
679 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200680 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200681 #~~~~~
682
683
684 # ~ handle structures ~
685
686 {
687 my $ix = pop @oti; # index of just closed tag
688
689 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
690
691 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
692
693 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
694
Peter Harders41c35622020-07-12 01:16:22 +0200695 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200696
Peter Harders41c35622020-07-12 01:16:22 +0200697 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200698 }
699
700 # in case this fails, check input
701 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
702 ." than to-value ($dl) => please check. aborting ...\n"
703 if ( $fval - 1 ) > $dl;
704
Peter Harders41c35622020-07-12 01:16:22 +0200705 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200706 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
707 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $dl;
Peter Harders41c35622020-07-12 01:16:22 +0200708 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200709 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
710
711 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
712
713 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
714 }
715
716
717 # ~ handle tokens ~
718
719
Akron0eacef72020-07-30 11:51:28 +0200720 if ($inside_tokens_tag) {
Peter Harders6f526a32020-06-29 21:44:41 +0200721
Akron09e0b2c2020-07-28 15:57:01 +0200722 # Check last added token
723 my $last_token = $tokens->last_token;
Peter Harders6f526a32020-06-29 21:44:41 +0200724
Akron09e0b2c2020-07-28 15:57:01 +0200725 # Get from-value from last added token
726 my $fval2 = $last_token->from;
Peter Harders6f526a32020-06-29 21:44:41 +0200727
728 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
729
Peter Harders41c35622020-07-12 01:16:22 +0200730 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200731
Akron09e0b2c2020-07-28 15:57:01 +0200732 # recorrect from-value
733 # (see below: Notes on ~ whitespace related issue ~)
734 $last_token->set_from($fval2 - 1);
Peter Harders6f526a32020-06-29 21:44:41 +0200735 }
736
737 # in case this fails, check input
Akron09e0b2c2020-07-28 15:57:01 +0200738 die "ERROR ($0, retr_info()): text_id='$text_id', processing of tokens: from-value ($fval2) is 2 or more greater"
Peter Harders6f526a32020-06-29 21:44:41 +0200739 ." than to-value ($dl) => please check. aborting ...\n"
740 if ( $fval2 - 1 ) > $dl;
741
Akron09e0b2c2020-07-28 15:57:01 +0200742 # TODO:
743 # find example for which this case applies
744 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
745 #
746 # TODO:
747 # check, if it's better to remove this line and change above check to 'if ( $fval2 - 1) >= $dl;
Peter Harders41c35622020-07-12 01:16:22 +0200748 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200749
Akron09e0b2c2020-07-28 15:57:01 +0200750 # Correct from-value (same as ... if $fval-1 == $dl)
751 $last_token->set_from($dl) if $fval2 == $dl + 1;
752 $last_token->set_to($dl); # Here from == to?
753 $last_token->set_level($rl);
Peter Harders6f526a32020-06-29 21:44:41 +0200754 }
755
756 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100757 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200758 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
759 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100760
761
Peter Harders41c35622020-07-12 01:16:22 +0200762 #~~~~
763 # until here: tag-node (closing)
764 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100765
766
Peter Harders41c35622020-07-12 01:16:22 +0200767 #~~~~~
768 # from here: text- and whitespace-nodes
769 #~~~~~
770
771 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
772 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200773 #
Peter Harders41c35622020-07-12 01:16:22 +0200774 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
775 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
776 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200777 #
Peter Harders41c35622020-07-12 01:16:22 +0200778 # 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 +0100779
Peter Harders6f526a32020-06-29 21:44:41 +0200780 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100781
Peter Harders41c35622020-07-12 01:16:22 +0200782 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200783 #
Peter Harders41c35622020-07-12 01:16:22 +0200784 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200785 #
786 # 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 +0200787 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200788 #
Peter Harders41c35622020-07-12 01:16:22 +0200789 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
790 # 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 +0200791 #
Peter Harders41c35622020-07-12 01:16:22 +0200792 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
793 # 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 +0200794 #
Peter Harders41c35622020-07-12 01:16:22 +0200795 # 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.
796 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
797 # 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
798 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200799 #
Peter Harders41c35622020-07-12 01:16:22 +0200800 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
801 # additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $dl).
Peter Harders6f526a32020-06-29 21:44:41 +0200802 #
Peter Harders41c35622020-07-12 01:16:22 +0200803 # [1]
804 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
805 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
806 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200807 #
Peter Harders41c35622020-07-12 01:16:22 +0200808 # [2]
809 # 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
810 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200811 #
Peter Harders41c35622020-07-12 01:16:22 +0200812 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
813 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200814 #
Peter Harders41c35622020-07-12 01:16:22 +0200815 # 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-
816 # 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 +0200817
818 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
819
Peter Harders41c35622020-07-12 01:16:22 +0200820 # ~ whitespace-node ~
821
822 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200823
824 $add_one = 0;
825
Peter Harders41c35622020-07-12 01:16:22 +0200826 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
827 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200828
829 }else{
830
831 # ~ text-node ~
832
833 $add_one = 1;
834 }
835
836
837 # ~ update $data and $dl ~
838
839 $data .= $e->[1];
840
841 $dl += length( $e->[1] ); # update length of $data
842
843
Peter Harders41c35622020-07-12 01:16:22 +0200844 #~~~~~
845 # until here: text- and whitespace-nodes
846 #~~~~~
847
848
849 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200850 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
851
852
853 }else{ # not yet handled type
854
855 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
856 }
857
858 } # end: foreach iteration
859
860} # end: sub retr_info
861
862
Peter Harders41c35622020-07-12 01:16:22 +0200863sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200864
865 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100866
867 #print STDERR "$0: write_structures(): ...\n";
868
Peter Harders6f526a32020-06-29 21:44:41 +0200869 if ( $dir eq "" ){
870
871 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100872 return;
873 }
874
Peter Harders6f526a32020-06-29 21:44:41 +0200875 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
876 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
Peter Harders1c5ce152020-07-22 18:02:50 +0200877 .decode( "UTF-8", $text_id_esc )."\" xmlns=\"http://ids-mannheim.de/ns/KorAP\" version=\"KorAP-0.4\">\n <spanList>\n"; # convert binary string to text string
Peter Hardersd892a582020-02-12 15:45:22 +0100878
879 $c = 0;
880
Peter Harders6f526a32020-06-29 21:44:41 +0200881 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100882
Peter Harders6f526a32020-06-29 21:44:41 +0200883 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
884 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100885
Peter Harders6f526a32020-06-29 21:44:41 +0200886 # correct last from-value ( if the 'second to last' from-value refers to an s-tag, then the last from-value is one to big - see retr_info )
887
888 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
889
890 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100891 }
Peter Hardersd892a582020-02-12 15:45:22 +0100892
Peter Harders6f526a32020-06-29 21:44:41 +0200893 # this consistency check is already done in 'retr_info()'
894 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
895 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
896 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
897 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
898 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100899
Peter Harders6f526a32020-06-29 21:44:41 +0200900 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
901 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100902
Peter Harders6f526a32020-06-29 21:44:41 +0200903 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100904
Peter Harders6f526a32020-06-29 21:44:41 +0200905 # l (level): insert information about depth of element in XML-tree (top element = level 1)
906 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
907 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
908 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
909
910 if ( $idx > 2 ) # attributes
911 {
912 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
913
914 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
915
Akron0465e9e2020-07-27 15:55:21 +0200916 # see explanation in func. 'write_tokens'
917 ${$ref}[ $att_idx+1 ] = escape_xml(${$ref}[ $att_idx+1 ]);
Peter Harders6f526a32020-06-29 21:44:41 +0200918
919 # attribute (at index $att_idx) with value (at index $att_idx+1)
920 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
921 }
922
923 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100924 }
925
Peter Harders6f526a32020-06-29 21:44:41 +0200926 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100927
Peter Harders6f526a32020-06-29 21:44:41 +0200928 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100929
930 $c++;
931
Peter Harders6f526a32020-06-29 21:44:41 +0200932 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100933
934 $output .= " </spanList>\n</layer>";
935
Peter Harders1c5ce152020-07-22 18:02:50 +0200936 $output = encode( "UTF-8", $output ); # convert text string to binary string
Peter Hardersd892a582020-02-12 15:45:22 +0100937
Akron85717512020-07-08 11:19:19 +0200938 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
939 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100940
941 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200942
Peter Hardersd892a582020-02-12 15:45:22 +0100943} # end: sub write_structures
944
945
Akrond949e182020-02-14 12:23:57 +0100946__END__
947
948=pod
949
950=encoding utf8
951
952=head1 NAME
953
954tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
955
956=head1 SYNOPSIS
957
958 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
959
960=head1 DESCRIPTION
961
Akronee434b12020-07-08 12:53:01 +0200962C<tei2korapxml> is a script to convert TEI P5 and
963L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
964based documents to the
965L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
966If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +0100967read from C<STDIN>. If no specific output is defined, data is written
968to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +0200969
Akrond949e182020-02-14 12:23:57 +0100970This program is usually called from inside another script.
971
Akronee434b12020-07-08 12:53:01 +0200972=head1 FORMATS
973
974=head2 Input restrictions
975
976=over 2
977
978=item
979
980utf8 encoded
981
982=item
983
984TEI P5 formatted input with certain restrictions:
985
986=over 4
987
988=item
989
990B<mandatory>: text-header with integrated textsigle, text-body
991
992=item
993
994B<optional>: corp-header with integrated corpsigle,
995doc-header with integrated docsigle
996
997=back
998
999=item
1000
1001all tokens inside the primary text (inside $data) may not be
1002newline seperated, because newlines are removed
1003(see code section C<~ inside text body ~>) and a conversion of newlines
1004into blanks between 2 tokens could lead to additional blanks,
1005where there should be none (e.g.: punctuation characters like C<,> or
1006C<.> should not be seperated from their predecessor token).
1007(see also code section C<~ whitespace handling ~>).
1008
1009=back
1010
1011=head2 Notes on the output
1012
1013=over 2
1014
1015=item
1016
1017zip file output (default on C<stdout>) with utf8 encoded entries
1018(which together form the KorAP-XML format)
1019
1020=back
1021
Akrond949e182020-02-14 12:23:57 +01001022=head1 INSTALLATION
1023
1024C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1025these bindings are available, the preferred way to install the script is
1026to use L<cpanm|App::cpanminus>.
1027
1028 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1029
1030In case everything went well, the C<tei2korapxml> tool will
1031be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001032
Akrond949e182020-02-14 12:23:57 +01001033Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1034
1035=head1 OPTIONS
1036
1037=over 2
1038
Akron4e603a52020-07-27 14:23:49 +02001039=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +01001040
Akron4e603a52020-07-27 14:23:49 +02001041The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +01001042
1043=item B<--help|-h>
1044
1045Print help information.
1046
1047=item B<--version|-v>
1048
1049Print version information.
1050
Akron4e603a52020-07-27 14:23:49 +02001051=item B<--tokenizer-call|-tc>
1052
1053Call an external tokenizer process, that will tokenize
1054a single line from STDIN and outputs one token per line.
1055
1056=item B<--use-intern-tokenization|-ti>
1057
1058Tokenize the data using two embedded tokenizers,
1059that will take an I<Aggressive> and a I<conservative>
1060approach.
1061
Akrond949e182020-02-14 12:23:57 +01001062=back
1063
1064=head1 COPYRIGHT AND LICENSE
1065
1066Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1067
1068Author: Peter Harders
1069
1070Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1071
1072L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1073Corpus Analysis Platform at the
1074L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1075member of the
1076L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1077
1078This program is free software published under the
1079L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1080
1081=cut