blob: 9ed2ae3d3999b31c8296e64eb547bd93c6d531dd [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
Peter Hardersf9c51242020-07-21 02:37:44 +020037 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron8b511f92020-07-09 17:28:08 +020038 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010039 pod2usage(
40 -verbose => 99,
41 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
42 -msg => $VERSION_MSG,
43 -output => '-'
44 )
45 },
46 'version|v' => sub {
47 pod2usage(
48 -verbose => 0,
49 -msg => $VERSION_MSG,
50 -output => '-'
51 )
52 }
Peter Hardersd892a582020-02-12 15:45:22 +010053);
54
Peter Harders6f526a32020-06-29 21:44:41 +020055#
56# ~~~ parameter (mandatory) ~~~
57#
Peter Hardersd892a582020-02-12 15:45:22 +010058
Peter Harders6f526a32020-06-29 21:44:41 +020059 # optional
60my $_CORP_SIGLE = "korpusSigle"; # opening and closing tags (without attributes) have to be in one line
61 # (e.g.: <korpusSigle>GOE</korpusSigle>)
62 # optional
63my $_DOC_SIGLE = "dokumentSigle"; # analog
64 # mandatory
65my $_TEXT_SIGLE = "textSigle"; # analog
66 # mandatory
67my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
68 # optional
69my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
70 # optional
71my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
72 # mandatory
73my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
74
75#
76# ~~~ constants ~~~
77#
Peter Hardersd892a582020-02-12 15:45:22 +010078
Peter Harders41c35622020-07-12 01:16:22 +020079## extern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020080my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0;
Akron8b511f92020-07-09 17:28:08 +020081 # TODO:
82 # Read tokenizer call from configuration file.
83 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
84 my $ext_tok;
85 if ($tokenizer_call) {
86 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
87 };
Peter Harders41c35622020-07-12 01:16:22 +020088 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020089##
90
Akron8b511f92020-07-09 17:28:08 +020091## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020092my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +020093 my $_tok_file_con = "tokens_conservative.xml";
94 my $_tok_file_agg = "tokens_aggressive.xml";
95 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
96 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
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
Peter Harders6f526a32020-06-29 21:44:41 +0200353
Akron8b511f92020-07-09 17:28:08 +0200354 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200355
356 $ext_tok->tokenize($data);
357
Peter Harders42e18a62020-07-21 02:43:26 +0200358 }
359
360 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200361
362 $cons_tok->tokenize($data);
363 $aggr_tok->tokenize($data);
Peter Harders6f526a32020-06-29 21:44:41 +0200364 }
Akron8b511f92020-07-09 17:28:08 +0200365
Peter Hardersb1227172020-07-21 02:12:10 +0200366 $data = encode_utf8( $data );
367
Peter Harders6f526a32020-06-29 21:44:41 +0200368 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
369
Peter Harders6f526a32020-06-29 21:44:41 +0200370
371 $data =~ s/(&|<|>)/$ent{$1}/g;
372
Akron85717512020-07-08 11:19:19 +0200373 $zipper->new_stream("$_root_dir$dir/$_data_file")
374 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200375
376 # ~ write structures ~
377
378 write_structures() if @structures;
379
380
381 # ~ write tokens ~
382
383 write_tokens() if $_TOKENS_PROC && @tokens;
384
385
Akron8b511f92020-07-09 17:28:08 +0200386 # ~ tokenization ~
Peter Harders6f526a32020-06-29 21:44:41 +0200387
Peter Hardersb1227172020-07-21 02:12:10 +0200388 if ( $_GEN_TOK_EXT ) {
Peter Harders6f526a32020-06-29 21:44:41 +0200389
Peter Hardersb1227172020-07-21 02:12:10 +0200390 $ext_tok->to_zip(
391 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
392 $text_id_esc
393 )
Peter Harders6f526a32020-06-29 21:44:41 +0200394
Peter Harders42e18a62020-07-21 02:43:26 +0200395 }
396
397 if ( $_GEN_TOK_INT ){
Akron997e9402020-07-11 12:06:13 +0200398
Peter Hardersb1227172020-07-21 02:12:10 +0200399 # Output token streams to zip streams
400 $cons_tok->to_zip(
401 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
402 $text_id_esc
403 );
404 $aggr_tok->to_zip(
405 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
406 $text_id_esc
407 );
408 $aggr_tok->reset;
409 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200410 }
411
Peter Hardersb1227172020-07-21 02:12:10 +0200412 #print STDERR "$0: write_tokenization(): DONE\n";
413
Peter Harders6f526a32020-06-29 21:44:41 +0200414 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
415
416 } else { # $dir eq ""
417
418 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
419 print STDERR "WARNING ($0): main(): text header=$header_txt\n";
420 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100421 }
422
Peter Harders6f526a32020-06-29 21:44:41 +0200423 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100424
Peter Hardersd892a582020-02-12 15:45:22 +0100425
Peter Harders6f526a32020-06-29 21:44:41 +0200426 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100427
Peter Hardersd892a582020-02-12 15:45:22 +0100428
Peter Harders6f526a32020-06-29 21:44:41 +0200429 #print STDERR "inside text body (\$data_fl set)\n";
430
431 # ~ whitespace handling ~
432
Peter Harders41c35622020-07-12 01:16:22 +0200433 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
434 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100435 #
Peter Harders41c35622020-07-12 01:16:22 +0200436 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
437 # example further down and notes on 'Input restrictions' in the manpage).
438 #
439 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
440 #
441 # 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
442 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
443 #
444 # Examples (how primary text with linebreaks would be converted by below code):
445 #
446 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
447 # '...<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 +0100448
Peter Harders41c35622020-07-12 01:16:22 +0200449 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
450
451 ### NOTE: this is only relevant, if a text consists of more than one line
452 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
453 ### 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 +0200454 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100455
Peter Harders41c35622020-07-12 01:16:22 +0200456 # NOTE: not stringent ('...' stands for text):
457 #
458 # beg1............................end1 => no blank before 'beg1'
459 # beg2....<pb/>...................end2 => no blank before 'beg2'
460 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
461 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
462 #
463 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
464 # ^
465 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100466
Peter Harders41c35622020-07-12 01:16:22 +0200467 $tl++; # counter for text lines
468
469 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100470 }
Peter Harders41c35622020-07-12 01:16:22 +0200471 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100472
Peter Harders6f526a32020-06-29 21:44:41 +0200473 # add line to buffer
474 $buf_in .= $_;
475
476 } elsif ( $header_fl_txt && m#^(.*</${_TEXT_HEADER_END}>)(.*)$# ){
477
478
479 # ~ end of text header ~
480
481
482 #print STDERR "end of text header\n";
483
484 # write it to header.xml
485
486 $sfx = $2;
487
488 $header_txt .= $1; $header_fl_txt = 0;
489
490
491 die "ERROR ($0): main(): input line number $lc: line with closing text-header tag '${_TEXT_HEADER_END}'"
492 ." contains additional information ... => Aborting\n\tline=$_"
493 if $sfx !~ /^\s*$/;
494
495 if ( $dir eq "" ){
496
497 print STDERR "WARNING ($0): main(): input line number $lc: empty textSigle in text header => nothing to do ...\ntext header=$header_txt\n";
498
499 } else {
500
501 print STDERR "DEBUG ($0): Writing file $_root_dir$dir/$_header_file\n" if $_DEBUG;
502
Peter Harders6f526a32020-06-29 21:44:41 +0200503 $header_txt = encode_utf8( $header_txt );
504
Akron85717512020-07-08 11:19:19 +0200505 $zipper->new_stream("$_root_dir$dir/$_header_file")
506 ->print("$header_prfx$header_txt");
Peter Harders6f526a32020-06-29 21:44:41 +0200507
508 $header_txt = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100509 }
Peter Hardersd892a582020-02-12 15:45:22 +0100510
Peter Harders6f526a32020-06-29 21:44:41 +0200511 } elsif ( $header_fl_txt ){
Peter Hardersd892a582020-02-12 15:45:22 +0100512
Peter Harders6f526a32020-06-29 21:44:41 +0200513 # ~ inside text header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100514
Peter Harders6f526a32020-06-29 21:44:41 +0200515
516 #print STDERR "inside text header\n";
517
518 if( m#^(.*)<${_TEXT_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
519
520 $pfx = $1; $sfx = $3;
521
522 $dir = $2; $text_id = $dir;
523
524 $text_id =~ tr/\//_/; $dir =~ s/("|&|<|>)/$ent{$1}/g;
525
526 $text_id = encode_utf8( $text_id );
527
528 die "ERROR ($0): main(): input line number $lc: line with text-sigle tag '$_TEXT_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
529 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_TEXT_SIGLE}>\s*$# || $dir =~ /^\s*$/;
530
531 # log output for seeing progression
532 print STDERR "$0: main(): text_id=".decode_utf8( $text_id )."\n";
533
534 $text_id_esc = $text_id;
535
536 s#(<${_TEXT_SIGLE}(?: [^>]*)?>)[^<]+(</${_TEXT_SIGLE}>)#$1$dir$2# # to be consistent with escaping, escape also textSigle in text-header
537 if $text_id_esc =~ s/("|&|<|>)/$ent{$1}/g;
538
539 $dir =~ tr/\./\//;
540 }
541
542 $header_txt .= $_;
543
544 } elsif ( $header_fl_doc && m#^(.*</${_DOC_HEADER_END}>)(.*)$# ){
545
546
547 # ~ end of document header ~
548
Peter Harders6f526a32020-06-29 21:44:41 +0200549 #print STDERR "end of doc header\n";
550
551 # write it to header.xml
552
553 $sfx = $2;
554
555 $header_doc .= $1; $header_fl_doc = 0;
556
557 die "ERROR ($0): main(): input line number $lc: line with closing document-header tag '${_DOC_HEADER_END}'"
558 ." contains additional information ... => Aborting\n\tline=$_"
559 if $sfx !~ /^\s*$/;
560
561 if( $dir_doc eq "" ){
562
563 print STDERR "WARNING ($0): main(): input line number $lc: empty document sigle in document header"
564 ." => nothing to do ...\ndocument header=$header_doc\n";
565
566 } else {
567
568 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_doc/$_header_file\n" if $_DEBUG;
569
Peter Harders6f526a32020-06-29 21:44:41 +0200570 $header_doc = encode_utf8( $header_doc );
571
Akron85717512020-07-08 11:19:19 +0200572 $zipper->new_stream("$_root_dir$dir_doc/$_header_file")
573 ->print("$header_prfx$header_doc");
Peter Harders6f526a32020-06-29 21:44:41 +0200574
575 $header_doc = $dir_doc = "";
576 }
577
578 } elsif ( $header_fl_doc ){
579
580
581 # ~ inside document header ~
582
583
584 #print STDERR "inside doc header\n";
585
586 if ( m#^(.*)<${_DOC_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
587
588 $pfx = $1; $sfx = $3;
589
590 $dir_doc = $2;
591
592 die "ERROR ($0): main(): input line number $lc: line with document-sigle tag '$_DOC_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
593 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_DOC_SIGLE}>\s*$# || $dir_doc =~ /^\s*$/;
594
595 s#(<${_DOC_SIGLE}(?: [^>]*)?>)[^<]+(</${_DOC_SIGLE}>)#$1$dir_doc$2# # to be consistent with escaping, escape also textSigle in Document-Header
596 if $dir_doc =~ s/("|&|<|>)/$ent{$1}/g;
597 }
598
599 $header_doc .= $_;
600
601 } elsif ( m#^(.*)(<${_TEXT_HEADER_BEG}.*)$# ){
602
603 # ~ start of text header ~
604
605
606 #print STDERR "begin of text header\n";
607
608 $header_txt = $_; $header_fl_txt = 1; $pfx = $1;
609
Peter Harders41c35622020-07-12 01:16:22 +0200610 $tl = 0; # reset (needed for ~ whitespace handling ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200611
612 die "ERROR ($0): main(): input line number $lc: line with opening text-header tag '${_TEXT_HEADER_BEG}'"
613 ." is not in expected format ... => Aborting\n\tline=$_"
614 if $pfx !~ /^\s*$/;
615
616 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
617
618
619 # ~ start of text body ~
620
621
622 #print STDERR "inside text body\n";
623
624 $pfx = $1; $sfx = $2;
625
626 $data_fl = 1;
627
628 die "ERROR ($0): main(): input line number $lc: line with opening text-body tag '${_TEXT_BODY}'"
629 ." contains additional information ... => Aborting\n\tline=$_"
630 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
631
632 } elsif ( m#^(.*)(<${_DOC_HEADER_BEG}.*)$# ){
633
634
635 # ~ start of document header ~
636
637
638 #print STDERR "begin of doc header\n";
639
640 $header_doc = "$2\n"; $header_fl_doc = 1; $pfx = $1;
641
642 die "ERROR ($0): main(): input line number $lc: line with opening document-header tag '${_DOC_HEADER_BEG}'"
643 ."is not in expected format ... => Aborting\n\tline=$_"
644 if $pfx !~ /^\s*$/;
645
646 } elsif ( $header_fl_crp && m#^(.*</${_CORP_HEADER_END}>)(.*)$# ){
647
648
649 # ~ end of corpus header ~
650
651
652 #print STDERR "end of corp header\n";
653
654 $sfx = $2;
655
656 $header_crp .= $1; $header_fl_crp = 0;
657
658 die "ERROR ($0): main(): input line number $lc: line with closing corpus-header tag '${_CORP_HEADER_END}'"
659 ." contains additional information ... => Aborting\n\tline=$_"
660 if $sfx !~ /^\s*$/;
661
662 if ( $dir_crp eq "" ){
663
664 print STDERR "WARNING ($0): main(): input line number $lc: empty corpus sigle in corpus header => nothing to do ...\ncorpus header=$header_crp\n";
665
666 } else {
667
668 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_crp/$_header_file\n" if $_DEBUG;
669
Peter Harders6f526a32020-06-29 21:44:41 +0200670 $header_crp = encode_utf8( $header_crp );
671
Akron85717512020-07-08 11:19:19 +0200672 $zipper->new_stream("$_root_dir$dir_crp/$_header_file")
673 ->print("$header_prfx$header_crp");
Peter Harders6f526a32020-06-29 21:44:41 +0200674
675 $header_crp = $dir_crp = "";
676 }
677
678 } elsif ( $header_fl_crp ){
679
680
681 # ~ inside corpus header ~
682
683
684 #print STDERR "inside corp header\n";
685
686 if ( m#^(.*)<${_CORP_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
687
688 $pfx = $1; $sfx = $3;
689
690 $dir_crp = $2;
691
692 die "ERROR ($0): main(): input line number $lc: line with korpusSigle-tag is not in expected format ... => Aborting\n\tline=$_"
693 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_CORP_SIGLE}>\s*$# || $dir_crp =~ /^\s*$/;
694
695 if ( $dir_crp =~ s/("|&|<|>)/$ent{$1}/g ){
696
697 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 +0100698 }
699 }
700
Peter Harders6f526a32020-06-29 21:44:41 +0200701 $header_crp .= $_;
Peter Hardersd892a582020-02-12 15:45:22 +0100702
Peter Harders6f526a32020-06-29 21:44:41 +0200703 } elsif ( m#^(.*)(<${_CORP_HEADER_BEG}.*)$# ){
Peter Hardersd892a582020-02-12 15:45:22 +0100704
Peter Hardersd892a582020-02-12 15:45:22 +0100705
Peter Harders6f526a32020-06-29 21:44:41 +0200706 # ~ start of corpus header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100707
Peter Harders6f526a32020-06-29 21:44:41 +0200708
709 #print STDERR "begin of corp header\n";
710
711 $header_crp = $2; $header_fl_crp = 1; $pfx = $1;
712
713 die "ERROR ($0): main(): input line number $lc: line with opening corpus-header tag '${_CORP_HEADER_BEG}'"
714 ." is not in expected format ... => Aborting\n\tline=$_"
715 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100716 }
717
Peter Harders6f526a32020-06-29 21:44:41 +0200718 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100719
Akron85717512020-07-08 11:19:19 +0200720 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200721
Akron8b511f92020-07-09 17:28:08 +0200722 if( $_GEN_TOK_EXT ){
723 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100724 }
Peter Hardersd892a582020-02-12 15:45:22 +0100725
Peter Harders41c35622020-07-12 01:16:22 +0200726} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100727
Peter Hardersd892a582020-02-12 15:45:22 +0100728
Peter Harders41c35622020-07-12 01:16:22 +0200729sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100730
Peter Harders41c35622020-07-12 01:16:22 +0200731 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200732 #
Peter Harders41c35622020-07-12 01:16:22 +0200733 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200734 #
Peter Harders41c35622020-07-12 01:16:22 +0200735 # Print out name of 'node2' for the above example:
736 #
737 # 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"'
738 #
739 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200740 #
741 # [ 0: XML_READER_TYPE_DOCUMENT,
742 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200743 # 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 +0200744 # 1: 'node'
745 # 2: ?
746 # 3: HASH (attributes)
747 # 4: 1 (line number)
748 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
749 # 1: 'node1'
750 # 2: ?
751 # 3: undefined (no attributes)
752 # 4: 1 (line number)
753 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
754 # 1: 'some '
755 # ]
756 # 1: [ 0: XML_READER_TYPE_ELEMENT
757 # 1: 'n'
758 # 2: ?
759 # 3: undefined (no attributes)
760 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200761 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200762 # ]
763 # 2: [ 0: XML_READER_TYPE_TEXT
764 # 1: ' text'
765 # ]
766 # ]
767 # ]
768 # 1: [ 0: XML_READER_TYPE_ELEMENT
769 # 1: 'node2'
770 # 2: ?
771 # 3: undefined (not attributes)
772 # 4: 1 (line number)
773 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
774 # 1: 'more-text'
775 # ]
776 # ]
777 # ]
778 # ]
779 # ]
780 # ]
781 # ]
782 #
783 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
784 #
785 # ref($data->[2]) == ARRAY (with 1 element for 'node')
786 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
787 #
788 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
789 # $data->[2]->[0]->[1] == 'node'
790 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
791 # $data->[2]->[0]->[4] == 1 (line number)
792 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200793 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200794 #
795 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
796 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
797 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
798 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
799 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
800 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
801 #
802 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
803 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
804 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
805 #
806 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
807 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
808 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
809 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
810 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200811 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200812 #
813 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
814 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
815 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
816 #
817 #
818 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
819 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
820 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100821
Peter Harders41c35622020-07-12 01:16:22 +0200822
Peter Harders6f526a32020-06-29 21:44:41 +0200823 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100824
Peter Hardersd892a582020-02-12 15:45:22 +0100825
Peter Harders6f526a32020-06-29 21:44:41 +0200826 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100827
Peter Hardersd892a582020-02-12 15:45:22 +0100828
Peter Harders41c35622020-07-12 01:16:22 +0200829 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 +0100830
Peter Hardersd892a582020-02-12 15:45:22 +0100831
Peter Harders6f526a32020-06-29 21:44:41 +0200832 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200833 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200834 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100835
Peter Hardersd892a582020-02-12 15:45:22 +0100836
Peter Harders6f526a32020-06-29 21:44:41 +0200837 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
838 # 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 +0100839
Peter Harders6f526a32020-06-29 21:44:41 +0200840 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100841
Peter Harders6f526a32020-06-29 21:44:41 +0200842 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100843
Peter Hardersd892a582020-02-12 15:45:22 +0100844
Peter Harders6f526a32020-06-29 21:44:41 +0200845 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100846
Peter Harders6f526a32020-06-29 21:44:41 +0200847 my @array;
848 push @array, $n;
849 push @structures, \@array;
850 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100851
Peter Hardersd892a582020-02-12 15:45:22 +0100852
Peter Harders6f526a32020-06-29 21:44:41 +0200853 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100854
Peter Harders6f526a32020-06-29 21:44:41 +0200855 $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 +0100856
Peter Harders6f526a32020-06-29 21:44:41 +0200857 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100858
Peter Harders6f526a32020-06-29 21:44:41 +0200859 my @array2;
860 push @array2, $n;
861 push @tokens, \@array2;
862 push @oti2, $#tokens;
863 }
Peter Hardersd892a582020-02-12 15:45:22 +0100864
Peter Hardersd892a582020-02-12 15:45:22 +0100865
Peter Harders6f526a32020-06-29 21:44:41 +0200866 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100867
Peter Harders6f526a32020-06-29 21:44:41 +0200868 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100869
Peter Harders6f526a32020-06-29 21:44:41 +0200870 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
871 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
872 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100873
Peter Harders6f526a32020-06-29 21:44:41 +0200874 # '$c' references the 'key' and '$c+1' the 'value'
875 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100876
Peter Harders6f526a32020-06-29 21:44:41 +0200877 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100878
Peter Harders6f526a32020-06-29 21:44:41 +0200879 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
880 }
881
882 }
883 }
884
885
886 # ~ index 'from' ~
887
888 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
889
Peter Harders41c35622020-07-12 01:16:22 +0200890 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200891
892 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
893
894 push @{$tokens[$#tokens]}, ( $dl + $add_one );
895 }
896
897
898 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200899 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200900 #~~~~
901
902
903 # ~~ RECURSION ~~
904
Peter Harders41c35622020-07-12 01:16:22 +0200905 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 +0200906
Peter Harders41c35622020-07-12 01:16:22 +0200907 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200908
909 $rl--; # return from recursion
910 }
911
912
913 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200914 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200915 #~~~~~
916
917
918 # ~ handle structures ~
919
920 {
921 my $ix = pop @oti; # index of just closed tag
922
923 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
924
925 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
926
927 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
928
Peter Harders41c35622020-07-12 01:16:22 +0200929 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200930
Peter Harders41c35622020-07-12 01:16:22 +0200931 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200932 }
933
934 # in case this fails, check input
935 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
936 ." than to-value ($dl) => please check. aborting ...\n"
937 if ( $fval - 1 ) > $dl;
938
Peter Harders41c35622020-07-12 01:16:22 +0200939 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200940 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
941 # 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 +0200942 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200943 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
944
945 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
946
947 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
948 }
949
950
951 # ~ handle tokens ~
952
953
954 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
955
956 my $ix = pop @oti2;
957
958 my $aix = $#{$tokens[$ix]};
959
960 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
961
962 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
963
Peter Harders41c35622020-07-12 01:16:22 +0200964 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200965
Peter Harders41c35622020-07-12 01:16:22 +0200966 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200967 }
968
969 # in case this fails, check input
970 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
971 ." than to-value ($dl) => please check. aborting ...\n"
972 if ( $fval2 - 1 ) > $dl;
973
Peter Harders41c35622020-07-12 01:16:22 +0200974 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200975 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
976 # 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 +0200977 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200978 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
979
980 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
981
982 $inside_tokens_tag = -1; # reset
983 }
984
985 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100986 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200987 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
988 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100989
990
Peter Harders41c35622020-07-12 01:16:22 +0200991 #~~~~
992 # until here: tag-node (closing)
993 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100994
995
Peter Harders41c35622020-07-12 01:16:22 +0200996 #~~~~~
997 # from here: text- and whitespace-nodes
998 #~~~~~
999
1000 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
1001 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +02001002 #
Peter Harders41c35622020-07-12 01:16:22 +02001003 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
1004 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
1005 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +02001006 #
Peter Harders41c35622020-07-12 01:16:22 +02001007 # 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 +01001008
Peter Harders6f526a32020-06-29 21:44:41 +02001009 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +01001010
Peter Harders41c35622020-07-12 01:16:22 +02001011 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +02001012 #
Peter Harders41c35622020-07-12 01:16:22 +02001013 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +02001014 #
1015 # 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 +02001016 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +02001017 #
Peter Harders41c35622020-07-12 01:16:22 +02001018 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
1019 # 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 +02001020 #
Peter Harders41c35622020-07-12 01:16:22 +02001021 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
1022 # 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 +02001023 #
Peter Harders41c35622020-07-12 01:16:22 +02001024 # 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.
1025 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
1026 # 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
1027 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +02001028 #
Peter Harders41c35622020-07-12 01:16:22 +02001029 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
1030 # 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 +02001031 #
Peter Harders41c35622020-07-12 01:16:22 +02001032 # [1]
1033 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
1034 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
1035 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +02001036 #
Peter Harders41c35622020-07-12 01:16:22 +02001037 # [2]
1038 # 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
1039 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +02001040 #
Peter Harders41c35622020-07-12 01:16:22 +02001041 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
1042 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +02001043 #
Peter Harders41c35622020-07-12 01:16:22 +02001044 # 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-
1045 # 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 +02001046
1047 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
1048
Peter Harders41c35622020-07-12 01:16:22 +02001049 # ~ whitespace-node ~
1050
1051 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +02001052
1053 $add_one = 0;
1054
Peter Harders41c35622020-07-12 01:16:22 +02001055 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
1056 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +02001057
1058 }else{
1059
1060 # ~ text-node ~
1061
1062 $add_one = 1;
1063 }
1064
1065
1066 # ~ update $data and $dl ~
1067
1068 $data .= $e->[1];
1069
1070 $dl += length( $e->[1] ); # update length of $data
1071
1072
Peter Harders41c35622020-07-12 01:16:22 +02001073 #~~~~~
1074 # until here: text- and whitespace-nodes
1075 #~~~~~
1076
1077
1078 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +02001079 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
1080
1081
1082 }else{ # not yet handled type
1083
1084 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
1085 }
1086
1087 } # end: foreach iteration
1088
1089} # end: sub retr_info
1090
1091
Peter Harders41c35622020-07-12 01:16:22 +02001092sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +02001093
1094 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +01001095
1096 #print STDERR "$0: write_structures(): ...\n";
1097
Peter Harders6f526a32020-06-29 21:44:41 +02001098 if ( $dir eq "" ){
1099
1100 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001101 return;
1102 }
1103
Peter Harders6f526a32020-06-29 21:44:41 +02001104 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1105 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1106 .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 +01001107
1108 $c = 0;
1109
Peter Harders6f526a32020-06-29 21:44:41 +02001110 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +01001111
Peter Harders6f526a32020-06-29 21:44:41 +02001112 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
1113 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +01001114
Peter Harders6f526a32020-06-29 21:44:41 +02001115 # 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 )
1116
1117 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1118
1119 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +01001120 }
Peter Hardersd892a582020-02-12 15:45:22 +01001121
Peter Harders6f526a32020-06-29 21:44:41 +02001122 # this consistency check is already done in 'retr_info()'
1123 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
1124 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1125 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
1126 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1127 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +01001128
Peter Harders6f526a32020-06-29 21:44:41 +02001129 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
1130 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +01001131
Peter Harders6f526a32020-06-29 21:44:41 +02001132 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +01001133
Peter Harders6f526a32020-06-29 21:44:41 +02001134 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1135 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1136 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1137 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
1138
1139 if ( $idx > 2 ) # attributes
1140 {
1141 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
1142
1143 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
1144
1145 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
1146
1147 # attribute (at index $att_idx) with value (at index $att_idx+1)
1148 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
1149 }
1150
1151 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001152 }
1153
Peter Harders6f526a32020-06-29 21:44:41 +02001154 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001155
Peter Harders6f526a32020-06-29 21:44:41 +02001156 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +01001157
1158 $c++;
1159
Peter Harders6f526a32020-06-29 21:44:41 +02001160 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001161
1162 $output .= " </spanList>\n</layer>";
1163
Peter Harders6f526a32020-06-29 21:44:41 +02001164 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001165
Akron85717512020-07-08 11:19:19 +02001166 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
1167 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001168
1169 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001170
Peter Hardersd892a582020-02-12 15:45:22 +01001171} # end: sub write_structures
1172
1173
Peter Harders41c35622020-07-12 01:16:22 +02001174sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +02001175
1176 # ~ write @tokens ~
1177
1178 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001179
1180 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +02001181
1182 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001183 return;
1184 }
1185
Peter Harders6f526a32020-06-29 21:44:41 +02001186 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1187 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1188 .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 +01001189
1190 $c = 0;
1191
Peter Harders6f526a32020-06-29 21:44:41 +02001192 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +01001193
Peter Harders6f526a32020-06-29 21:44:41 +02001194 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
1195 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +01001196
Peter Harders6f526a32020-06-29 21:44:41 +02001197 # 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())
1198 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1199
1200 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +01001201 }
Peter Hardersd892a582020-02-12 15:45:22 +01001202
Peter Harders6f526a32020-06-29 21:44:41 +02001203 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1204 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1205 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1206 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001207
Peter Harders6f526a32020-06-29 21:44:41 +02001208 if ( $idx > 2 ){ # attributes
1209
Peter Hardersd892a582020-02-12 15:45:22 +01001210 $output .= " <fs>\n";
1211
Peter Harders6f526a32020-06-29 21:44:41 +02001212 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +01001213
Peter Harders6f526a32020-06-29 21:44:41 +02001214 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
1215 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +01001216
Peter Harders6f526a32020-06-29 21:44:41 +02001217 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001218
Peter Harders6f526a32020-06-29 21:44:41 +02001219 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
1220
1221 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
1222 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
1223
1224 if ( "$_INLINE_POS_WR" ){
1225
1226 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001227 $output .= "$1" if defined $1;
1228 $output .= "</f>\n";
1229 }
Peter Harders6f526a32020-06-29 21:44:41 +02001230
1231 if ( "$_INLINE_MSD_WR" ){
1232
1233 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001234 $output .= "$2" if defined $2;
1235 $output .= "</f>\n";
1236 }
1237
Peter Harders6f526a32020-06-29 21:44:41 +02001238 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001239
Peter Harders6f526a32020-06-29 21:44:41 +02001240 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001241
Peter Harders6f526a32020-06-29 21:44:41 +02001242 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001243
Peter Harders6f526a32020-06-29 21:44:41 +02001244 $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 +01001245 }
1246
Peter Harders6f526a32020-06-29 21:44:41 +02001247 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001248
1249 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001250
1251 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001252
1253 $output .= " </f>\n </fs>\n </span>\n";
1254
1255 $c++;
1256
Peter Harders6f526a32020-06-29 21:44:41 +02001257 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001258
1259 $output .= " </spanList>\n</layer>";
1260
Peter Harders6f526a32020-06-29 21:44:41 +02001261 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001262
Akron85717512020-07-08 11:19:19 +02001263 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1264 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001265
Peter Harders6f526a32020-06-29 21:44:41 +02001266 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001267
Peter Harders6f526a32020-06-29 21:44:41 +02001268} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001269
Peter Hardersd892a582020-02-12 15:45:22 +01001270
Akrond949e182020-02-14 12:23:57 +01001271__END__
1272
1273=pod
1274
1275=encoding utf8
1276
1277=head1 NAME
1278
1279tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1280
1281=head1 SYNOPSIS
1282
1283 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1284
1285=head1 DESCRIPTION
1286
Akronee434b12020-07-08 12:53:01 +02001287C<tei2korapxml> is a script to convert TEI P5 and
1288L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1289based documents to the
1290L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1291If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001292read from C<STDIN>. If no specific output is defined, data is written
1293to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001294
Akrond949e182020-02-14 12:23:57 +01001295This program is usually called from inside another script.
1296
Akronee434b12020-07-08 12:53:01 +02001297=head1 FORMATS
1298
1299=head2 Input restrictions
1300
1301=over 2
1302
1303=item
1304
1305utf8 encoded
1306
1307=item
1308
1309TEI P5 formatted input with certain restrictions:
1310
1311=over 4
1312
1313=item
1314
1315B<mandatory>: text-header with integrated textsigle, text-body
1316
1317=item
1318
1319B<optional>: corp-header with integrated corpsigle,
1320doc-header with integrated docsigle
1321
1322=back
1323
1324=item
1325
1326all tokens inside the primary text (inside $data) may not be
1327newline seperated, because newlines are removed
1328(see code section C<~ inside text body ~>) and a conversion of newlines
1329into blanks between 2 tokens could lead to additional blanks,
1330where there should be none (e.g.: punctuation characters like C<,> or
1331C<.> should not be seperated from their predecessor token).
1332(see also code section C<~ whitespace handling ~>).
1333
1334=back
1335
1336=head2 Notes on the output
1337
1338=over 2
1339
1340=item
1341
1342zip file output (default on C<stdout>) with utf8 encoded entries
1343(which together form the KorAP-XML format)
1344
1345=back
1346
Akrond949e182020-02-14 12:23:57 +01001347=head1 INSTALLATION
1348
1349C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1350these bindings are available, the preferred way to install the script is
1351to use L<cpanm|App::cpanminus>.
1352
1353 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1354
1355In case everything went well, the C<tei2korapxml> tool will
1356be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001357
Akrond949e182020-02-14 12:23:57 +01001358Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1359
1360=head1 OPTIONS
1361
1362=over 2
1363
1364=item B<--base|-b>
1365
1366The base directory for output. Defaults to C<.>.
1367
1368=item B<--help|-h>
1369
1370Print help information.
1371
1372=item B<--version|-v>
1373
1374Print version information.
1375
1376=back
1377
1378=head1 COPYRIGHT AND LICENSE
1379
1380Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1381
1382Author: Peter Harders
1383
1384Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1385
1386L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1387Corpus Analysis Platform at the
1388L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1389member of the
1390L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1391
1392This program is free software published under the
1393L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1394
1395=cut