blob: dde0146c7f84edd35cfa39b6dbaa712c6cca28b8 [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
11use Encode qw(encode_utf8 decode_utf8);
12
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
Akron95bc98a2020-07-11 12:00:12 +020021use KorAP::XML::TEI qw'remove_xml_comments';
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;
Akron85717512020-07-08 11:19:19 +020025use KorAP::XML::TEI::Zipper;
Peter Hardersd892a582020-02-12 15:45:22 +010026
Akrond949e182020-02-14 12:23:57 +010027our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020028
Akrond949e182020-02-14 12:23:57 +010029our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
30
Peter Hardersd892a582020-02-12 15:45:22 +010031
Peter Harders6f526a32020-06-29 21:44:41 +020032# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010033GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020034 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
35 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020036 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
37 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010038 pod2usage(
39 -verbose => 99,
40 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
41 -msg => $VERSION_MSG,
42 -output => '-'
43 )
44 },
45 'version|v' => sub {
46 pod2usage(
47 -verbose => 0,
48 -msg => $VERSION_MSG,
49 -output => '-'
50 )
51 }
Peter Hardersd892a582020-02-12 15:45:22 +010052);
53
Peter Harders6f526a32020-06-29 21:44:41 +020054#
55# ~~~ parameter (mandatory) ~~~
56#
Peter Hardersd892a582020-02-12 15:45:22 +010057
Peter Harders6f526a32020-06-29 21:44:41 +020058 # optional
59my $_CORP_SIGLE = "korpusSigle"; # opening and closing tags (without attributes) have to be in one line
60 # (e.g.: <korpusSigle>GOE</korpusSigle>)
61 # optional
62my $_DOC_SIGLE = "dokumentSigle"; # analog
63 # mandatory
64my $_TEXT_SIGLE = "textSigle"; # analog
65 # mandatory
66my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
67 # optional
68my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
69 # optional
70my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
71 # mandatory
72my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
73
74#
75# ~~~ constants ~~~
76#
Peter Hardersd892a582020-02-12 15:45:22 +010077
Peter Harders41c35622020-07-12 01:16:22 +020078## extern tokenization
Akron8b511f92020-07-09 17:28:08 +020079my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0; # (used for IDS internal tokenization)
Akron8b511f92020-07-09 17:28:08 +020080 # TODO:
81 # Read tokenizer call from configuration file.
82 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
83 my $ext_tok;
84 if ($tokenizer_call) {
85 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
86 };
Peter Harders41c35622020-07-12 01:16:22 +020087 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020088##
89
Akron8b511f92020-07-09 17:28:08 +020090## intern tokenization
Peter Harders41c35622020-07-12 01:16:22 +020091my $_GEN_TOK_INT = 1; # simple tokenization, recommended for testing (for use of an external tokenizer see $_GEN_TOK_EXT)
92 my $_tok_file_con = "tokens_conservative.xml";
93 my $_tok_file_agg = "tokens_aggressive.xml";
94 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
95 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Akrond9627472020-07-09 16:53:09 +020096 my ( $txt, $offset );
Peter Harders41c35622020-07-12 01:16:22 +020097##
98
99my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +0200100
Peter Harders6f526a32020-06-29 21:44:41 +0200101my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
102my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
103 # (see also manpage of XML::CompactTree::XS)
104
105my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
106my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
107my $_structure_dir = "struct"; # name of directory containing the $_structure_file
108my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
109 # (= their names and byte offsets in $_data)
110## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
111my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
112my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
113my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
114 # - evtl. with additional inline annotations
115my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
116
117## TODO: optional
118# handling inline annotations (inside $_TOKENS_TAG)
119my $_INLINE_ANNOT = 0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
120my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
121my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
122 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
123 # - which means, that the POS information can be followed by an optional blank with additional
124 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
125my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
126my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
127my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
128##
129
130
131#
132# ~~~ variables ~~~
133#
134
Akron85717512020-07-08 11:19:19 +0200135# Initialize zipper
136my $zipper = KorAP::XML::TEI::Zipper->new;
Peter Harders6f526a32020-06-29 21:44:41 +0200137my $input_fh; # input file handle (default: stdin)
138
139my $buf_in; # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
140my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
141
142my $dir; # text directory (below $_root_dir)
143my $dir_crp; # corpus directory (below $_root_dir)
144my $dir_doc; # document directory (below $_root_dir)
145
146my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
147
148my %ent = ('"', '&quot;', '&','&amp;', # convert '&', '<' and '>' into their corresponding sgml-entities
149 '<','&lt;','>','&gt;');
150 # note: the index still refers to the 'single character'-versions, which are counted as 1
151 # (search for '&amp;' in data.xml and see corresponding indices in $_tokens_file)
152
153my $header_txt; # raw text header (written to '$_root_dir$dir/$_header_file')
154my $header_doc; # raw document header (written to '$_root_dir$dir_doc/$_header_file')
155my $header_crp; # raw corpus header (written to '$_root_dir$dir_crp/$_header_file')
156
157my ( $header_fl_crp, $header_fl_doc, # flags for tracking where we are in the input document
158 $header_fl_txt, $data_fl );
159
160my ( $header_prfx, $data_prfx1, # $header_prfx is written to $_header_file, $data_* are written to $_data_file
161 $data_prfx2, $data_sfx );
162
163my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
164 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
165
166my @tokens; # list of arrays, where each array represents a $_TOKENS_TAG from the input document
167 # - the input of this array is written in func. 'write_tokens' into the file '$_tokens_file'
168
169my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures' and 'write_tokens'
170
171my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
172 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
173
174# these are only used inside recursive function 'retr_info'
175my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
176 $e, # element from $tree_data
177 $n, # tag name of actual processed element $e
178 $rl, # recursion level
179 $dl, # actual length of string $data
180 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
181 # represents the actual processed element from @structures
182 @oti2, # analogously to @oti, but with reference to array @tokens
183 $inside_tokens_tag, # flag is set, when inside $_TOKENS_TAG
184 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
185 $add_one, # ...
186 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200187 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
188 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200189 # (means: 'from-index - 1' is a key in %ws).
190 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
191
192my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
193
194my ( $i, $c ); # index variables used in loops
195
Peter Harders6f526a32020-06-29 21:44:41 +0200196my ( $_CORP_HEADER_END, $_DOC_HEADER_END, $_TEXT_HEADER_END );
197
198
199#
200# ~~~ main ~~~
201#
202
203# ~ initializations ~
204
205($_XCT_LN)?($_IDX=5):($_IDX=4);
206
207$header_prfx = $data_prfx1 = $data_prfx2 = $data_sfx = "";
208
209$header_fl_txt = $header_fl_doc = $header_fl_crp = 0;
210
211$inside_tokens_tag = -1;
212
213$fval = $fval2 = 0;
214
215$_root_dir .= '/'; # base dir must always end with a slash
216$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
217
218$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_CORP_HEADER_END = $1;
219$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_DOC_HEADER_END = $1;
220$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_TEXT_HEADER_END = $1;
221
222## TODO: remove this, because it's IDS-specific
Peter Hardersd892a582020-02-12 15:45:22 +0100223$header_prfx = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
224$header_prfx .= "<?xml-model href=\"header.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n";
225$header_prfx .= "<!DOCTYPE idsCorpus PUBLIC \"-//IDS//DTD IDS-XCES 1.0//EN\" \"http://corpora.ids-mannheim.de/idsxces1/DTD/ids.xcesdoc.dtd\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200226##
Peter Hardersd892a582020-02-12 15:45:22 +0100227
228$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
229$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
230$data_prfx1 .= "<raw_text docid=\"";
231$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200232## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100233$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200234##
Peter Hardersd892a582020-02-12 15:45:22 +0100235$data_prfx2 .= " <text>";
236$data_sfx = "</text>\n</raw_text>";
237
Peter Hardersd892a582020-02-12 15:45:22 +0100238
Peter Harders6f526a32020-06-29 21:44:41 +0200239# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200240main();
Peter Hardersd892a582020-02-12 15:45:22 +0100241
Peter Hardersd892a582020-02-12 15:45:22 +0100242
Peter Harders6f526a32020-06-29 21:44:41 +0200243#
244# ~~~ subs ~~~
245#
Peter Hardersd892a582020-02-12 15:45:22 +0100246
Peter Hardersd892a582020-02-12 15:45:22 +0100247
Peter Harders41c35622020-07-12 01:16:22 +0200248sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100249
Peter Harders6f526a32020-06-29 21:44:41 +0200250 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100251
Akron95bc98a2020-07-11 12:00:12 +0200252 # TODO:
253 # Replace all calls of $lc with $. or $input_fh->input_line_number,
254 # because otherwise remove_html_comments will
255 # move the lines forward without incrementing.
Peter Harders41c35622020-07-12 01:16:22 +0200256 my $lc = 0; # line counter (only for error handling and debugging)
Peter Harders6f526a32020-06-29 21:44:41 +0200257
Peter Harders41c35622020-07-12 01:16:22 +0200258 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200259
260 $input_fh = *STDIN; # input file handle (default: stdin)
261
Akron85717512020-07-08 11:19:19 +0200262 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200263
264 $buf_in = $data = $dir = $dir_doc = $dir_crp = "";
265 $header_txt = $header_doc = $header_crp = "";
266
267
268 if ( $input_fname ne '' ){
269
270 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
271
272 }
273
274
Peter Harders41c35622020-07-12 01:16:22 +0200275 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200276 # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
277 binmode $input_fh;
278
279
Peter Harders6f526a32020-06-29 21:44:41 +0200280 # ~ loop (reading input document) ~
281
282 while ( <$input_fh> ){
283
284 $lc++; # line counter
285
286 # TODO: yet not tested fo big amounts of data
287 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron95bc98a2020-07-11 12:00:12 +0200288 remove_xml_comments( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200289
290 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
291
292
293 # ~ end of text body ~
294
295
Akron8b511f92020-07-09 17:28:08 +0200296 # 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 +0200297
298 $pfx = $1; $sfx = $2;
299
300 die "ERROR ($0): main(): input line number $lc: line with closing text-body tag '${_TEXT_BODY}'"
301 ." contains additional information ... => Aborting\n\tline=$_"
302 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
303
304 if ( $dir ne "" ){
305
Peter Harders6f526a32020-06-29 21:44:41 +0200306 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200307
Peter Harders41c35622020-07-12 01:16:22 +0200308 # ~ whitespace handling ~
309 #
310 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
311 # (see function 'retr_info()').
312 #
313 # Definition of significant and insignificant whitespace
314 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
315 #
316 # Significant whitespace is part of the document content and should be preserved.
317 # Insignificant whitespace is used when editing XML documents for readability.
318 # These whitespaces are typically not intended for inclusion in the delivery of the document.
319 #
Peter Harders6f526a32020-06-29 21:44:41 +0200320 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
321 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
322 } else {
323 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
324 }
325
326 @structures = (); @oti = ();
327
328 if ( $_TOKENS_PROC ){
329 @tokens = (); @oti2 = ()
330 }
331
332 $dl = $rl = 0;
333
334 # ~ whitespace related issue ~
335 $add_one = 0;
336 %ws = ();
337
338
339 # ~ recursion ~
340
341 retr_info( \$tree_data->[2] ); # parse input data
342
343 $rl--;
344
345
346 # ~ write data.xml ~
347
Peter Harders41c35622020-07-12 01:16:22 +0200348 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
349 # (...elsif ( $data_fl )....)
Peter Harders6f526a32020-06-29 21:44:41 +0200350 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
Peter Harders41c35622020-07-12 01:16:22 +0200351 #
Peter Harders6f526a32020-06-29 21:44:41 +0200352
353 $data = encode_utf8( $data );
354
Akron8b511f92020-07-09 17:28:08 +0200355 if ( $_GEN_TOK_EXT ){
356 # TODO: $offset is only necessary for $cons_tok and $aggr_tok and as long as they're part of 'retr_info'
357 $ext_tok->tokenize($data, $offset);
Peter Harders6f526a32020-06-29 21:44:41 +0200358 }
Akron8b511f92020-07-09 17:28:08 +0200359
Peter Harders6f526a32020-06-29 21:44:41 +0200360 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
361
Peter Harders6f526a32020-06-29 21:44:41 +0200362
363 $data =~ s/(&|<|>)/$ent{$1}/g;
364
Akron85717512020-07-08 11:19:19 +0200365 $zipper->new_stream("$_root_dir$dir/$_data_file")
366 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200367
368 # ~ write structures ~
369
370 write_structures() if @structures;
371
372
373 # ~ write tokens ~
374
375 write_tokens() if $_TOKENS_PROC && @tokens;
376
377
Akron8b511f92020-07-09 17:28:08 +0200378 # ~ tokenization ~
Peter Harders6f526a32020-06-29 21:44:41 +0200379
Akron8b511f92020-07-09 17:28:08 +0200380 if ( $_GEN_TOK_EXT || $_GEN_TOK_INT ){
Peter Harders6f526a32020-06-29 21:44:41 +0200381
Akron997e9402020-07-11 12:06:13 +0200382 if ( $_GEN_TOK_EXT ) {
Peter Harders6f526a32020-06-29 21:44:41 +0200383
Akron997e9402020-07-11 12:06:13 +0200384 $ext_tok->to_zip(
385 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
386 $text_id_esc
387 );
388
389 } elsif ( $_GEN_TOK_INT ){
390
391 # Output token streams to zip streams
392 $cons_tok->to_zip(
393 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
394 $text_id_esc
395 );
396 $aggr_tok->to_zip(
397 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
398 $text_id_esc
399 );
Akrond9627472020-07-09 16:53:09 +0200400 $offset = 0;
401 $aggr_tok->reset;
402 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200403 }
Akron997e9402020-07-11 12:06:13 +0200404
405 #print STDERR "$0: write_tokenization(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200406 }
407
408 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
409
410 } else { # $dir eq ""
411
412 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
413 print STDERR "WARNING ($0): main(): text header=$header_txt\n";
414 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100415 }
416
Peter Harders6f526a32020-06-29 21:44:41 +0200417 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100418
Peter Hardersd892a582020-02-12 15:45:22 +0100419
Peter Harders6f526a32020-06-29 21:44:41 +0200420 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100421
Peter Hardersd892a582020-02-12 15:45:22 +0100422
Peter Harders6f526a32020-06-29 21:44:41 +0200423 #print STDERR "inside text body (\$data_fl set)\n";
424
425 # ~ whitespace handling ~
426
Peter Harders41c35622020-07-12 01:16:22 +0200427 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
428 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100429 #
Peter Harders41c35622020-07-12 01:16:22 +0200430 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
431 # example further down and notes on 'Input restrictions' in the manpage).
432 #
433 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
434 #
435 # 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
436 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
437 #
438 # Examples (how primary text with linebreaks would be converted by below code):
439 #
440 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
441 # '...<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 +0100442
Peter Harders41c35622020-07-12 01:16:22 +0200443 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
444
445 ### NOTE: this is only relevant, if a text consists of more than one line
446 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
447 ### 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 +0200448 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100449
Peter Harders41c35622020-07-12 01:16:22 +0200450 # NOTE: not stringent ('...' stands for text):
451 #
452 # beg1............................end1 => no blank before 'beg1'
453 # beg2....<pb/>...................end2 => no blank before 'beg2'
454 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
455 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
456 #
457 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
458 # ^
459 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100460
Peter Harders41c35622020-07-12 01:16:22 +0200461 $tl++; # counter for text lines
462
463 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100464 }
Peter Harders41c35622020-07-12 01:16:22 +0200465 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100466
Peter Harders6f526a32020-06-29 21:44:41 +0200467 # add line to buffer
468 $buf_in .= $_;
469
470 } elsif ( $header_fl_txt && m#^(.*</${_TEXT_HEADER_END}>)(.*)$# ){
471
472
473 # ~ end of text header ~
474
475
476 #print STDERR "end of text header\n";
477
478 # write it to header.xml
479
480 $sfx = $2;
481
482 $header_txt .= $1; $header_fl_txt = 0;
483
484
485 die "ERROR ($0): main(): input line number $lc: line with closing text-header tag '${_TEXT_HEADER_END}'"
486 ." contains additional information ... => Aborting\n\tline=$_"
487 if $sfx !~ /^\s*$/;
488
489 if ( $dir eq "" ){
490
491 print STDERR "WARNING ($0): main(): input line number $lc: empty textSigle in text header => nothing to do ...\ntext header=$header_txt\n";
492
493 } else {
494
495 print STDERR "DEBUG ($0): Writing file $_root_dir$dir/$_header_file\n" if $_DEBUG;
496
Peter Harders6f526a32020-06-29 21:44:41 +0200497 $header_txt = encode_utf8( $header_txt );
498
Akron85717512020-07-08 11:19:19 +0200499 $zipper->new_stream("$_root_dir$dir/$_header_file")
500 ->print("$header_prfx$header_txt");
Peter Harders6f526a32020-06-29 21:44:41 +0200501
502 $header_txt = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100503 }
Peter Hardersd892a582020-02-12 15:45:22 +0100504
Peter Harders6f526a32020-06-29 21:44:41 +0200505 } elsif ( $header_fl_txt ){
Peter Hardersd892a582020-02-12 15:45:22 +0100506
Peter Harders6f526a32020-06-29 21:44:41 +0200507 # ~ inside text header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100508
Peter Harders6f526a32020-06-29 21:44:41 +0200509
510 #print STDERR "inside text header\n";
511
512 if( m#^(.*)<${_TEXT_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
513
514 $pfx = $1; $sfx = $3;
515
516 $dir = $2; $text_id = $dir;
517
518 $text_id =~ tr/\//_/; $dir =~ s/("|&|<|>)/$ent{$1}/g;
519
520 $text_id = encode_utf8( $text_id );
521
522 die "ERROR ($0): main(): input line number $lc: line with text-sigle tag '$_TEXT_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
523 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_TEXT_SIGLE}>\s*$# || $dir =~ /^\s*$/;
524
525 # log output for seeing progression
526 print STDERR "$0: main(): text_id=".decode_utf8( $text_id )."\n";
527
528 $text_id_esc = $text_id;
529
530 s#(<${_TEXT_SIGLE}(?: [^>]*)?>)[^<]+(</${_TEXT_SIGLE}>)#$1$dir$2# # to be consistent with escaping, escape also textSigle in text-header
531 if $text_id_esc =~ s/("|&|<|>)/$ent{$1}/g;
532
533 $dir =~ tr/\./\//;
534 }
535
536 $header_txt .= $_;
537
538 } elsif ( $header_fl_doc && m#^(.*</${_DOC_HEADER_END}>)(.*)$# ){
539
540
541 # ~ end of document header ~
542
Peter Harders6f526a32020-06-29 21:44:41 +0200543 #print STDERR "end of doc header\n";
544
545 # write it to header.xml
546
547 $sfx = $2;
548
549 $header_doc .= $1; $header_fl_doc = 0;
550
551 die "ERROR ($0): main(): input line number $lc: line with closing document-header tag '${_DOC_HEADER_END}'"
552 ." contains additional information ... => Aborting\n\tline=$_"
553 if $sfx !~ /^\s*$/;
554
555 if( $dir_doc eq "" ){
556
557 print STDERR "WARNING ($0): main(): input line number $lc: empty document sigle in document header"
558 ." => nothing to do ...\ndocument header=$header_doc\n";
559
560 } else {
561
562 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_doc/$_header_file\n" if $_DEBUG;
563
Peter Harders6f526a32020-06-29 21:44:41 +0200564 $header_doc = encode_utf8( $header_doc );
565
Akron85717512020-07-08 11:19:19 +0200566 $zipper->new_stream("$_root_dir$dir_doc/$_header_file")
567 ->print("$header_prfx$header_doc");
Peter Harders6f526a32020-06-29 21:44:41 +0200568
569 $header_doc = $dir_doc = "";
570 }
571
572 } elsif ( $header_fl_doc ){
573
574
575 # ~ inside document header ~
576
577
578 #print STDERR "inside doc header\n";
579
580 if ( m#^(.*)<${_DOC_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
581
582 $pfx = $1; $sfx = $3;
583
584 $dir_doc = $2;
585
586 die "ERROR ($0): main(): input line number $lc: line with document-sigle tag '$_DOC_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
587 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_DOC_SIGLE}>\s*$# || $dir_doc =~ /^\s*$/;
588
589 s#(<${_DOC_SIGLE}(?: [^>]*)?>)[^<]+(</${_DOC_SIGLE}>)#$1$dir_doc$2# # to be consistent with escaping, escape also textSigle in Document-Header
590 if $dir_doc =~ s/("|&|<|>)/$ent{$1}/g;
591 }
592
593 $header_doc .= $_;
594
595 } elsif ( m#^(.*)(<${_TEXT_HEADER_BEG}.*)$# ){
596
597 # ~ start of text header ~
598
599
600 #print STDERR "begin of text header\n";
601
602 $header_txt = $_; $header_fl_txt = 1; $pfx = $1;
603
Peter Harders41c35622020-07-12 01:16:22 +0200604 $tl = 0; # reset (needed for ~ whitespace handling ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200605
606 die "ERROR ($0): main(): input line number $lc: line with opening text-header tag '${_TEXT_HEADER_BEG}'"
607 ." is not in expected format ... => Aborting\n\tline=$_"
608 if $pfx !~ /^\s*$/;
609
610 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
611
612
613 # ~ start of text body ~
614
615
616 #print STDERR "inside text body\n";
617
618 $pfx = $1; $sfx = $2;
619
620 $data_fl = 1;
621
622 die "ERROR ($0): main(): input line number $lc: line with opening text-body tag '${_TEXT_BODY}'"
623 ." contains additional information ... => Aborting\n\tline=$_"
624 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
625
626 } elsif ( m#^(.*)(<${_DOC_HEADER_BEG}.*)$# ){
627
628
629 # ~ start of document header ~
630
631
632 #print STDERR "begin of doc header\n";
633
634 $header_doc = "$2\n"; $header_fl_doc = 1; $pfx = $1;
635
636 die "ERROR ($0): main(): input line number $lc: line with opening document-header tag '${_DOC_HEADER_BEG}'"
637 ."is not in expected format ... => Aborting\n\tline=$_"
638 if $pfx !~ /^\s*$/;
639
640 } elsif ( $header_fl_crp && m#^(.*</${_CORP_HEADER_END}>)(.*)$# ){
641
642
643 # ~ end of corpus header ~
644
645
646 #print STDERR "end of corp header\n";
647
648 $sfx = $2;
649
650 $header_crp .= $1; $header_fl_crp = 0;
651
652 die "ERROR ($0): main(): input line number $lc: line with closing corpus-header tag '${_CORP_HEADER_END}'"
653 ." contains additional information ... => Aborting\n\tline=$_"
654 if $sfx !~ /^\s*$/;
655
656 if ( $dir_crp eq "" ){
657
658 print STDERR "WARNING ($0): main(): input line number $lc: empty corpus sigle in corpus header => nothing to do ...\ncorpus header=$header_crp\n";
659
660 } else {
661
662 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_crp/$_header_file\n" if $_DEBUG;
663
Peter Harders6f526a32020-06-29 21:44:41 +0200664 $header_crp = encode_utf8( $header_crp );
665
Akron85717512020-07-08 11:19:19 +0200666 $zipper->new_stream("$_root_dir$dir_crp/$_header_file")
667 ->print("$header_prfx$header_crp");
Peter Harders6f526a32020-06-29 21:44:41 +0200668
669 $header_crp = $dir_crp = "";
670 }
671
672 } elsif ( $header_fl_crp ){
673
674
675 # ~ inside corpus header ~
676
677
678 #print STDERR "inside corp header\n";
679
680 if ( m#^(.*)<${_CORP_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
681
682 $pfx = $1; $sfx = $3;
683
684 $dir_crp = $2;
685
686 die "ERROR ($0): main(): input line number $lc: line with korpusSigle-tag is not in expected format ... => Aborting\n\tline=$_"
687 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_CORP_SIGLE}>\s*$# || $dir_crp =~ /^\s*$/;
688
689 if ( $dir_crp =~ s/("|&|<|>)/$ent{$1}/g ){
690
691 s#(<${_CORP_SIGLE}(?: [^>]*)?>)[^<]+(</${_CORP_SIGLE}>)#$1$dir_crp$2# # to be consistent with escaping, escape also textSigle in Corpus-Header
Peter Hardersd892a582020-02-12 15:45:22 +0100692 }
693 }
694
Peter Harders6f526a32020-06-29 21:44:41 +0200695 $header_crp .= $_;
Peter Hardersd892a582020-02-12 15:45:22 +0100696
Peter Harders6f526a32020-06-29 21:44:41 +0200697 } elsif ( m#^(.*)(<${_CORP_HEADER_BEG}.*)$# ){
Peter Hardersd892a582020-02-12 15:45:22 +0100698
Peter Hardersd892a582020-02-12 15:45:22 +0100699
Peter Harders6f526a32020-06-29 21:44:41 +0200700 # ~ start of corpus header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100701
Peter Harders6f526a32020-06-29 21:44:41 +0200702
703 #print STDERR "begin of corp header\n";
704
705 $header_crp = $2; $header_fl_crp = 1; $pfx = $1;
706
707 die "ERROR ($0): main(): input line number $lc: line with opening corpus-header tag '${_CORP_HEADER_BEG}'"
708 ." is not in expected format ... => Aborting\n\tline=$_"
709 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100710 }
711
Peter Harders6f526a32020-06-29 21:44:41 +0200712 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100713
Akron85717512020-07-08 11:19:19 +0200714 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200715
Akron8b511f92020-07-09 17:28:08 +0200716 if( $_GEN_TOK_EXT ){
717 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100718 }
Peter Hardersd892a582020-02-12 15:45:22 +0100719
Peter Harders41c35622020-07-12 01:16:22 +0200720} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100721
Peter Hardersd892a582020-02-12 15:45:22 +0100722
Peter Harders41c35622020-07-12 01:16:22 +0200723sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100724
Peter Harders41c35622020-07-12 01:16:22 +0200725 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200726 #
Peter Harders41c35622020-07-12 01:16:22 +0200727 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200728 #
Peter Harders41c35622020-07-12 01:16:22 +0200729 # Print out name of 'node2' for the above example:
730 #
731 # 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"'
732 #
733 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200734 #
735 # [ 0: XML_READER_TYPE_DOCUMENT,
736 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200737 # 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 +0200738 # 1: 'node'
739 # 2: ?
740 # 3: HASH (attributes)
741 # 4: 1 (line number)
742 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
743 # 1: 'node1'
744 # 2: ?
745 # 3: undefined (no attributes)
746 # 4: 1 (line number)
747 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
748 # 1: 'some '
749 # ]
750 # 1: [ 0: XML_READER_TYPE_ELEMENT
751 # 1: 'n'
752 # 2: ?
753 # 3: undefined (no attributes)
754 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200755 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200756 # ]
757 # 2: [ 0: XML_READER_TYPE_TEXT
758 # 1: ' text'
759 # ]
760 # ]
761 # ]
762 # 1: [ 0: XML_READER_TYPE_ELEMENT
763 # 1: 'node2'
764 # 2: ?
765 # 3: undefined (not attributes)
766 # 4: 1 (line number)
767 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
768 # 1: 'more-text'
769 # ]
770 # ]
771 # ]
772 # ]
773 # ]
774 # ]
775 # ]
776 #
777 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
778 #
779 # ref($data->[2]) == ARRAY (with 1 element for 'node')
780 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
781 #
782 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
783 # $data->[2]->[0]->[1] == 'node'
784 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
785 # $data->[2]->[0]->[4] == 1 (line number)
786 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200787 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200788 #
789 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
790 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
791 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
792 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
793 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
794 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
795 #
796 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
797 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
798 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
799 #
800 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
801 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
802 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
803 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
804 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200805 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200806 #
807 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
808 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
809 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
810 #
811 #
812 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
813 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
814 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100815
Peter Harders41c35622020-07-12 01:16:22 +0200816
Peter Harders6f526a32020-06-29 21:44:41 +0200817 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100818
Peter Hardersd892a582020-02-12 15:45:22 +0100819
Peter Harders6f526a32020-06-29 21:44:41 +0200820 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100821
Peter Hardersd892a582020-02-12 15:45:22 +0100822
Peter Harders41c35622020-07-12 01:16:22 +0200823 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 +0100824
Peter Hardersd892a582020-02-12 15:45:22 +0100825
Peter Harders6f526a32020-06-29 21:44:41 +0200826 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200827 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200828 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100829
Peter Hardersd892a582020-02-12 15:45:22 +0100830
Peter Harders6f526a32020-06-29 21:44:41 +0200831 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
832 # 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 +0100833
Peter Harders6f526a32020-06-29 21:44:41 +0200834 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100835
Peter Harders6f526a32020-06-29 21:44:41 +0200836 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100837
Peter Hardersd892a582020-02-12 15:45:22 +0100838
Peter Harders6f526a32020-06-29 21:44:41 +0200839 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100840
Peter Harders6f526a32020-06-29 21:44:41 +0200841 my @array;
842 push @array, $n;
843 push @structures, \@array;
844 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100845
Peter Hardersd892a582020-02-12 15:45:22 +0100846
Peter Harders6f526a32020-06-29 21:44:41 +0200847 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100848
Peter Harders6f526a32020-06-29 21:44:41 +0200849 $inside_tokens_tag = $rl if $_TOKENS_PROC && $n eq $_TOKENS_TAG; # wether to push entry also into @tokens array
Peter Hardersd892a582020-02-12 15:45:22 +0100850
Peter Harders6f526a32020-06-29 21:44:41 +0200851 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100852
Peter Harders6f526a32020-06-29 21:44:41 +0200853 my @array2;
854 push @array2, $n;
855 push @tokens, \@array2;
856 push @oti2, $#tokens;
857 }
Peter Hardersd892a582020-02-12 15:45:22 +0100858
Peter Hardersd892a582020-02-12 15:45:22 +0100859
Peter Harders6f526a32020-06-29 21:44:41 +0200860 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100861
Peter Harders6f526a32020-06-29 21:44:41 +0200862 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100863
Peter Harders6f526a32020-06-29 21:44:41 +0200864 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
865 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
866 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100867
Peter Harders6f526a32020-06-29 21:44:41 +0200868 # '$c' references the 'key' and '$c+1' the 'value'
869 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100870
Peter Harders6f526a32020-06-29 21:44:41 +0200871 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100872
Peter Harders6f526a32020-06-29 21:44:41 +0200873 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
874 }
875
876 }
877 }
878
879
880 # ~ index 'from' ~
881
882 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
883
Peter Harders41c35622020-07-12 01:16:22 +0200884 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200885
886 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
887
888 push @{$tokens[$#tokens]}, ( $dl + $add_one );
889 }
890
891
892 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200893 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200894 #~~~~
895
896
897 # ~~ RECURSION ~~
898
Peter Harders41c35622020-07-12 01:16:22 +0200899 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 +0200900
Peter Harders41c35622020-07-12 01:16:22 +0200901 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200902
903 $rl--; # return from recursion
904 }
905
906
907 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200908 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200909 #~~~~~
910
911
912 # ~ handle structures ~
913
914 {
915 my $ix = pop @oti; # index of just closed tag
916
917 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
918
919 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
920
921 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
922
Peter Harders41c35622020-07-12 01:16:22 +0200923 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200924
Peter Harders41c35622020-07-12 01:16:22 +0200925 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200926 }
927
928 # in case this fails, check input
929 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
930 ." than to-value ($dl) => please check. aborting ...\n"
931 if ( $fval - 1 ) > $dl;
932
Peter Harders41c35622020-07-12 01:16:22 +0200933 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200934 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
935 # 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 +0200936 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200937 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
938
939 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
940
941 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
942 }
943
944
945 # ~ handle tokens ~
946
947
948 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
949
950 my $ix = pop @oti2;
951
952 my $aix = $#{$tokens[$ix]};
953
954 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
955
956 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
957
Peter Harders41c35622020-07-12 01:16:22 +0200958 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200959
Peter Harders41c35622020-07-12 01:16:22 +0200960 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200961 }
962
963 # in case this fails, check input
964 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
965 ." than to-value ($dl) => please check. aborting ...\n"
966 if ( $fval2 - 1 ) > $dl;
967
Peter Harders41c35622020-07-12 01:16:22 +0200968 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200969 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
970 # TODO: 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 +0200971 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200972 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
973
974 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
975
976 $inside_tokens_tag = -1; # reset
977 }
978
979 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100980 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200981 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
982 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100983
984
Peter Harders41c35622020-07-12 01:16:22 +0200985 #~~~~
986 # until here: tag-node (closing)
987 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100988
989
Peter Harders41c35622020-07-12 01:16:22 +0200990 #~~~~~
991 # from here: text- and whitespace-nodes
992 #~~~~~
993
994 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
995 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200996 #
Peter Harders41c35622020-07-12 01:16:22 +0200997 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
998 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
999 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +02001000 #
Peter Harders41c35622020-07-12 01:16:22 +02001001 # 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 +01001002
Peter Harders6f526a32020-06-29 21:44:41 +02001003 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +01001004
Peter Harders41c35622020-07-12 01:16:22 +02001005 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +02001006 #
Peter Harders41c35622020-07-12 01:16:22 +02001007 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +02001008 #
1009 # 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 +02001010 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +02001011 #
Peter Harders41c35622020-07-12 01:16:22 +02001012 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
1013 # 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 +02001014 #
Peter Harders41c35622020-07-12 01:16:22 +02001015 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
1016 # 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 +02001017 #
Peter Harders41c35622020-07-12 01:16:22 +02001018 # 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.
1019 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
1020 # 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
1021 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +02001022 #
Peter Harders41c35622020-07-12 01:16:22 +02001023 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
1024 # 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 +02001025 #
Peter Harders41c35622020-07-12 01:16:22 +02001026 # [1]
1027 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
1028 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
1029 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +02001030 #
Peter Harders41c35622020-07-12 01:16:22 +02001031 # [2]
1032 # 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
1033 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +02001034 #
Peter Harders41c35622020-07-12 01:16:22 +02001035 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
1036 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +02001037 #
Peter Harders41c35622020-07-12 01:16:22 +02001038 # 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-
1039 # 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 +02001040
1041 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
1042
Peter Harders41c35622020-07-12 01:16:22 +02001043 # ~ whitespace-node ~
1044
1045 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +02001046
1047 $add_one = 0;
1048
Peter Harders41c35622020-07-12 01:16:22 +02001049 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
1050 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +02001051
1052 }else{
1053
1054 # ~ text-node ~
1055
1056 $add_one = 1;
1057 }
1058
1059
1060 # ~ update $data and $dl ~
1061
1062 $data .= $e->[1];
1063
1064 $dl += length( $e->[1] ); # update length of $data
1065
1066
Akron8b511f92020-07-09 17:28:08 +02001067 if ( $_GEN_TOK_INT ){
Peter Harders6f526a32020-06-29 21:44:41 +02001068
Peter Harders41c35622020-07-12 01:16:22 +02001069 #~~~~~
1070 # from here: intern tokenization
1071 #~~~~~
Peter Harders6f526a32020-06-29 21:44:41 +02001072
Akroneac374d2020-07-07 09:00:44 +02001073
Peter Harders41c35622020-07-12 01:16:22 +02001074 $txt = $e->[1];
1075
Peter Harders6f526a32020-06-29 21:44:41 +02001076 if ( substr( $txt, 0, 1 ) ne ' ' || substr( $txt, 1, 1) ne ' ' ){ # $txt has at least 2 chars, if it's not empty or equal to ' '
1077
Akron8b511f92020-07-09 17:28:08 +02001078 # TODO: implement outside retr_info() (like $ext_tok) on whole $data, instead on every text-node (more efficient and $offset not needed anymore)
Akrond9627472020-07-09 16:53:09 +02001079 $cons_tok->tokenize($txt, $offset);
1080 $aggr_tok->tokenize($txt, $offset);
Peter Harders6f526a32020-06-29 21:44:41 +02001081
1082 $offset = $dl;
1083
Peter Harders41c35622020-07-12 01:16:22 +02001084 }
Peter Harders6f526a32020-06-29 21:44:41 +02001085
1086
Peter Harders41c35622020-07-12 01:16:22 +02001087 #~~~~~
1088 # until here: intern tokenization
1089 #~~~~~
1090
1091 }
1092
1093
1094 #~~~~~
1095 # until here: text- and whitespace-nodes
1096 #~~~~~
1097
1098
1099 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +02001100 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
1101
1102
1103 }else{ # not yet handled type
1104
1105 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
1106 }
1107
1108 } # end: foreach iteration
1109
1110} # end: sub retr_info
1111
1112
Peter Harders41c35622020-07-12 01:16:22 +02001113sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +02001114
1115 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +01001116
1117 #print STDERR "$0: write_structures(): ...\n";
1118
Peter Harders6f526a32020-06-29 21:44:41 +02001119 if ( $dir eq "" ){
1120
1121 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001122 return;
1123 }
1124
Peter Harders6f526a32020-06-29 21:44:41 +02001125 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1126 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1127 .decode_utf8($text_id_esc)."\" xmlns=\"http://ids-mannheim.de/ns/KorAP\" version=\"KorAP-0.4\">\n <spanList>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001128
1129 $c = 0;
1130
Peter Harders6f526a32020-06-29 21:44:41 +02001131 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +01001132
Peter Harders6f526a32020-06-29 21:44:41 +02001133 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
1134 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +01001135
Peter Harders6f526a32020-06-29 21:44:41 +02001136 # 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 )
1137
1138 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1139
1140 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +01001141 }
Peter Hardersd892a582020-02-12 15:45:22 +01001142
Peter Harders6f526a32020-06-29 21:44:41 +02001143 # this consistency check is already done in 'retr_info()'
1144 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
1145 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1146 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
1147 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1148 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +01001149
Peter Harders6f526a32020-06-29 21:44:41 +02001150 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
1151 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +01001152
Peter Harders6f526a32020-06-29 21:44:41 +02001153 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +01001154
Peter Harders6f526a32020-06-29 21:44:41 +02001155 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1156 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1157 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1158 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
1159
1160 if ( $idx > 2 ) # attributes
1161 {
1162 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
1163
1164 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
1165
1166 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
1167
1168 # attribute (at index $att_idx) with value (at index $att_idx+1)
1169 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
1170 }
1171
1172 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001173 }
1174
Peter Harders6f526a32020-06-29 21:44:41 +02001175 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001176
Peter Harders6f526a32020-06-29 21:44:41 +02001177 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +01001178
1179 $c++;
1180
Peter Harders6f526a32020-06-29 21:44:41 +02001181 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001182
1183 $output .= " </spanList>\n</layer>";
1184
Peter Harders6f526a32020-06-29 21:44:41 +02001185 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001186
Akron85717512020-07-08 11:19:19 +02001187 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
1188 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001189
1190 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001191
Peter Hardersd892a582020-02-12 15:45:22 +01001192} # end: sub write_structures
1193
1194
Peter Harders41c35622020-07-12 01:16:22 +02001195sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +02001196
1197 # ~ write @tokens ~
1198
1199 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001200
1201 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +02001202
1203 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001204 return;
1205 }
1206
Peter Harders6f526a32020-06-29 21:44:41 +02001207 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1208 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1209 .decode_utf8($text_id_esc)."\" xmlns=\"http://ids-mannheim.de/ns/KorAP\" version=\"KorAP-0.4\">\n <spanList>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001210
1211 $c = 0;
1212
Peter Harders6f526a32020-06-29 21:44:41 +02001213 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +01001214
Peter Harders6f526a32020-06-29 21:44:41 +02001215 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
1216 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +01001217
Peter Harders6f526a32020-06-29 21:44:41 +02001218 # 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())
1219 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1220
1221 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +01001222 }
Peter Hardersd892a582020-02-12 15:45:22 +01001223
Peter Harders6f526a32020-06-29 21:44:41 +02001224 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1225 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1226 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1227 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001228
Peter Harders6f526a32020-06-29 21:44:41 +02001229 if ( $idx > 2 ){ # attributes
1230
Peter Hardersd892a582020-02-12 15:45:22 +01001231 $output .= " <fs>\n";
1232
Peter Harders6f526a32020-06-29 21:44:41 +02001233 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +01001234
Peter Harders6f526a32020-06-29 21:44:41 +02001235 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
1236 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +01001237
Peter Harders6f526a32020-06-29 21:44:41 +02001238 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001239
Peter Harders6f526a32020-06-29 21:44:41 +02001240 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
1241
1242 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
1243 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
1244
1245 if ( "$_INLINE_POS_WR" ){
1246
1247 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001248 $output .= "$1" if defined $1;
1249 $output .= "</f>\n";
1250 }
Peter Harders6f526a32020-06-29 21:44:41 +02001251
1252 if ( "$_INLINE_MSD_WR" ){
1253
1254 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001255 $output .= "$2" if defined $2;
1256 $output .= "</f>\n";
1257 }
1258
Peter Harders6f526a32020-06-29 21:44:41 +02001259 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001260
Peter Harders6f526a32020-06-29 21:44:41 +02001261 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001262
Peter Harders6f526a32020-06-29 21:44:41 +02001263 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001264
Peter Harders6f526a32020-06-29 21:44:41 +02001265 $output .= " <f name=\"${$ref}[$att_idx]\">${$ref}[ $att_idx+1 ]</f>\n"; # attribute (at index $att_idx) with value (at index $att_idx+1)
Peter Hardersd892a582020-02-12 15:45:22 +01001266 }
1267
Peter Harders6f526a32020-06-29 21:44:41 +02001268 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001269
1270 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001271
1272 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001273
1274 $output .= " </f>\n </fs>\n </span>\n";
1275
1276 $c++;
1277
Peter Harders6f526a32020-06-29 21:44:41 +02001278 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001279
1280 $output .= " </spanList>\n</layer>";
1281
Peter Harders6f526a32020-06-29 21:44:41 +02001282 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001283
Akron85717512020-07-08 11:19:19 +02001284 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1285 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001286
Peter Harders6f526a32020-06-29 21:44:41 +02001287 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001288
Peter Harders6f526a32020-06-29 21:44:41 +02001289} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001290
Peter Hardersd892a582020-02-12 15:45:22 +01001291
Akrond949e182020-02-14 12:23:57 +01001292__END__
1293
1294=pod
1295
1296=encoding utf8
1297
1298=head1 NAME
1299
1300tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1301
1302=head1 SYNOPSIS
1303
1304 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1305
1306=head1 DESCRIPTION
1307
Akronee434b12020-07-08 12:53:01 +02001308C<tei2korapxml> is a script to convert TEI P5 and
1309L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1310based documents to the
1311L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1312If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001313read from C<STDIN>. If no specific output is defined, data is written
1314to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001315
Akrond949e182020-02-14 12:23:57 +01001316This program is usually called from inside another script.
1317
Akronee434b12020-07-08 12:53:01 +02001318=head1 FORMATS
1319
1320=head2 Input restrictions
1321
1322=over 2
1323
1324=item
1325
1326utf8 encoded
1327
1328=item
1329
1330TEI P5 formatted input with certain restrictions:
1331
1332=over 4
1333
1334=item
1335
1336B<mandatory>: text-header with integrated textsigle, text-body
1337
1338=item
1339
1340B<optional>: corp-header with integrated corpsigle,
1341doc-header with integrated docsigle
1342
1343=back
1344
1345=item
1346
1347all tokens inside the primary text (inside $data) may not be
1348newline seperated, because newlines are removed
1349(see code section C<~ inside text body ~>) and a conversion of newlines
1350into blanks between 2 tokens could lead to additional blanks,
1351where there should be none (e.g.: punctuation characters like C<,> or
1352C<.> should not be seperated from their predecessor token).
1353(see also code section C<~ whitespace handling ~>).
1354
1355=back
1356
1357=head2 Notes on the output
1358
1359=over 2
1360
1361=item
1362
1363zip file output (default on C<stdout>) with utf8 encoded entries
1364(which together form the KorAP-XML format)
1365
1366=back
1367
Akrond949e182020-02-14 12:23:57 +01001368=head1 INSTALLATION
1369
1370C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1371these bindings are available, the preferred way to install the script is
1372to use L<cpanm|App::cpanminus>.
1373
1374 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1375
1376In case everything went well, the C<tei2korapxml> tool will
1377be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001378
Akrond949e182020-02-14 12:23:57 +01001379Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1380
1381=head1 OPTIONS
1382
1383=over 2
1384
1385=item B<--base|-b>
1386
1387The base directory for output. Defaults to C<.>.
1388
1389=item B<--help|-h>
1390
1391Print help information.
1392
1393=item B<--version|-v>
1394
1395Print version information.
1396
1397=back
1398
1399=head1 COPYRIGHT AND LICENSE
1400
1401Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1402
1403Author: Peter Harders
1404
1405Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1406
1407L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1408Corpus Analysis Platform at the
1409L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1410member of the
1411L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1412
1413This program is free software published under the
1414L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1415
1416=cut