blob: 671c26e50e994d0a477062322c5d74367c47a9aa [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
21use KorAP::XML::TEI;
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
Akron8b511f92020-07-09 17:28:08 +020078my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0; # (used for IDS internal tokenization)
79
80 # 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 };
87 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020088##
89
Akron8b511f92020-07-09 17:28:08 +020090## intern tokenization
91my $_GEN_TOK_INT = 1; # this simple tokenization can be used for testing (base tokenization is normally done by external tools)
Peter Harders6f526a32020-06-29 21:44:41 +020092 my $_tok_file_con = "tokens_conservative.xml";
93 my $_tok_file_agg = "tokens_aggressive.xml";
Akrond9627472020-07-09 16:53:09 +020094 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
95 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
96 my ( $txt, $offset );
Akron8b511f92020-07-09 17:28:08 +020097my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +020098
Peter Harders6f526a32020-06-29 21:44:41 +020099my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
100my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
101 # (see also manpage of XML::CompactTree::XS)
102
103my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
104my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
105my $_structure_dir = "struct"; # name of directory containing the $_structure_file
106my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
107 # (= their names and byte offsets in $_data)
108## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
109my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
110my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
111my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
112 # - evtl. with additional inline annotations
113my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
114
115## TODO: optional
116# handling inline annotations (inside $_TOKENS_TAG)
117my $_INLINE_ANNOT = 0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
118my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
119my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
120 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
121 # - which means, that the POS information can be followed by an optional blank with additional
122 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
123my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
124my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
125my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
126##
127
128
129#
130# ~~~ variables ~~~
131#
132
Akron85717512020-07-08 11:19:19 +0200133# Initialize zipper
134my $zipper = KorAP::XML::TEI::Zipper->new;
Peter Harders6f526a32020-06-29 21:44:41 +0200135my $input_fh; # input file handle (default: stdin)
136
137my $buf_in; # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
138my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
139
140my $dir; # text directory (below $_root_dir)
141my $dir_crp; # corpus directory (below $_root_dir)
142my $dir_doc; # document directory (below $_root_dir)
143
144my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
145
146my %ent = ('"', '&quot;', '&','&amp;', # convert '&', '<' and '>' into their corresponding sgml-entities
147 '<','&lt;','>','&gt;');
148 # note: the index still refers to the 'single character'-versions, which are counted as 1
149 # (search for '&amp;' in data.xml and see corresponding indices in $_tokens_file)
150
151my $header_txt; # raw text header (written to '$_root_dir$dir/$_header_file')
152my $header_doc; # raw document header (written to '$_root_dir$dir_doc/$_header_file')
153my $header_crp; # raw corpus header (written to '$_root_dir$dir_crp/$_header_file')
154
155my ( $header_fl_crp, $header_fl_doc, # flags for tracking where we are in the input document
156 $header_fl_txt, $data_fl );
157
158my ( $header_prfx, $data_prfx1, # $header_prfx is written to $_header_file, $data_* are written to $_data_file
159 $data_prfx2, $data_sfx );
160
161my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
162 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
163
164my @tokens; # list of arrays, where each array represents a $_TOKENS_TAG from the input document
165 # - the input of this array is written in func. 'write_tokens' into the file '$_tokens_file'
166
167my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures' and 'write_tokens'
168
169my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
170 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
171
172# these are only used inside recursive function 'retr_info'
173my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
174 $e, # element from $tree_data
175 $n, # tag name of actual processed element $e
176 $rl, # recursion level
177 $dl, # actual length of string $data
178 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
179 # represents the actual processed element from @structures
180 @oti2, # analogously to @oti, but with reference to array @tokens
181 $inside_tokens_tag, # flag is set, when inside $_TOKENS_TAG
182 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
183 $add_one, # ...
184 $fval, $fval2, # ...
185 %ws); # hash for indices of whitespace nodes (needed to recorrect from-values)
186 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace node
187 # (means: 'from-index - 1' is a key in %ws).
188 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
189
190my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
191
192my ( $i, $c ); # index variables used in loops
193
Peter Harders6f526a32020-06-29 21:44:41 +0200194my ( $_CORP_HEADER_END, $_DOC_HEADER_END, $_TEXT_HEADER_END );
195
196
197#
198# ~~~ main ~~~
199#
200
201# ~ initializations ~
202
203($_XCT_LN)?($_IDX=5):($_IDX=4);
204
205$header_prfx = $data_prfx1 = $data_prfx2 = $data_sfx = "";
206
207$header_fl_txt = $header_fl_doc = $header_fl_crp = 0;
208
209$inside_tokens_tag = -1;
210
211$fval = $fval2 = 0;
212
213$_root_dir .= '/'; # base dir must always end with a slash
214$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
215
216$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_CORP_HEADER_END = $1;
217$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_DOC_HEADER_END = $1;
218$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#; $_TEXT_HEADER_END = $1;
219
220## TODO: remove this, because it's IDS-specific
Peter Hardersd892a582020-02-12 15:45:22 +0100221$header_prfx = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
222$header_prfx .= "<?xml-model href=\"header.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n";
223$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 +0200224##
Peter Hardersd892a582020-02-12 15:45:22 +0100225
226$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
227$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
228$data_prfx1 .= "<raw_text docid=\"";
229$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200230## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100231$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200232##
Peter Hardersd892a582020-02-12 15:45:22 +0100233$data_prfx2 .= " <text>";
234$data_sfx = "</text>\n</raw_text>";
235
Peter Hardersd892a582020-02-12 15:45:22 +0100236
Peter Harders6f526a32020-06-29 21:44:41 +0200237# ~ read input and write output (text by text) ~
Peter Harders90157342020-07-01 21:05:14 +0200238process();
Peter Hardersd892a582020-02-12 15:45:22 +0100239
Peter Hardersd892a582020-02-12 15:45:22 +0100240
Peter Harders6f526a32020-06-29 21:44:41 +0200241#
242# ~~~ subs ~~~
243#
Peter Hardersd892a582020-02-12 15:45:22 +0100244
Peter Hardersd892a582020-02-12 15:45:22 +0100245
Peter Harders90157342020-07-01 21:05:14 +0200246sub process {
Peter Hardersd892a582020-02-12 15:45:22 +0100247
Peter Harders6f526a32020-06-29 21:44:41 +0200248 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100249
Peter Harders6f526a32020-06-29 21:44:41 +0200250 my $lc = 0; # line counter
251
252 my $tc = 0; # text counter
253
254 $input_fh = *STDIN; # input file handle (default: stdin)
255
Akron85717512020-07-08 11:19:19 +0200256 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200257
258 $buf_in = $data = $dir = $dir_doc = $dir_crp = "";
259 $header_txt = $header_doc = $header_crp = "";
260
261
262 if ( $input_fname ne '' ){
263
264 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
265
266 }
267
268
Peter Harders90157342020-07-01 21:05:14 +0200269 # prevents segfaulting of 'XML::LibXML::Reader' inside 'process()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
270 # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
271 binmode $input_fh;
272
273
Peter Harders6f526a32020-06-29 21:44:41 +0200274 # ~ loop (reading input document) ~
275
276 while ( <$input_fh> ){
277
278 $lc++; # line counter
279
280 # TODO: yet not tested fo big amounts of data
281 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron4f67cd42020-07-02 12:27:58 +0200282 KorAP::XML::TEI::delHTMLcom ( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200283
284 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
285
286
287 # ~ end of text body ~
288
289
Akron8b511f92020-07-09 17:28:08 +0200290 # 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 +0200291
292 $pfx = $1; $sfx = $2;
293
294 die "ERROR ($0): main(): input line number $lc: line with closing text-body tag '${_TEXT_BODY}'"
295 ." contains additional information ... => Aborting\n\tline=$_"
296 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
297
298 if ( $dir ne "" ){
299
Peter Harders6f526a32020-06-29 21:44:41 +0200300 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200301
302 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
303 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
304 } else {
305 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
306 }
307
308 @structures = (); @oti = ();
309
310 if ( $_TOKENS_PROC ){
311 @tokens = (); @oti2 = ()
312 }
313
314 $dl = $rl = 0;
315
316 # ~ whitespace related issue ~
317 $add_one = 0;
318 %ws = ();
319
320
321 # ~ recursion ~
322
323 retr_info( \$tree_data->[2] ); # parse input data
324
325 $rl--;
326
327
328 # ~ write data.xml ~
329
330 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
331
332 $data = encode_utf8( $data );
333
Akron8b511f92020-07-09 17:28:08 +0200334 if ( $_GEN_TOK_EXT ){
335 # TODO: $offset is only necessary for $cons_tok and $aggr_tok and as long as they're part of 'retr_info'
336 $ext_tok->tokenize($data, $offset);
Peter Harders6f526a32020-06-29 21:44:41 +0200337 }
Akron8b511f92020-07-09 17:28:08 +0200338
Peter Harders6f526a32020-06-29 21:44:41 +0200339 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
340
Peter Harders6f526a32020-06-29 21:44:41 +0200341
342 $data =~ s/(&|<|>)/$ent{$1}/g;
343
Akron85717512020-07-08 11:19:19 +0200344 $zipper->new_stream("$_root_dir$dir/$_data_file")
345 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200346
347 # ~ write structures ~
348
349 write_structures() if @structures;
350
351
352 # ~ write tokens ~
353
354 write_tokens() if $_TOKENS_PROC && @tokens;
355
356
Akron8b511f92020-07-09 17:28:08 +0200357 # ~ tokenization ~
Peter Harders6f526a32020-06-29 21:44:41 +0200358
Akron8b511f92020-07-09 17:28:08 +0200359 if ( $_GEN_TOK_EXT || $_GEN_TOK_INT ){
Peter Harders6f526a32020-06-29 21:44:41 +0200360
361 select_tokenization();
362
Akron8b511f92020-07-09 17:28:08 +0200363 if ( $_GEN_TOK_INT ){
Akrond9627472020-07-09 16:53:09 +0200364 $offset = 0;
365 $aggr_tok->reset;
366 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200367 }
368 }
369
370 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
371
372 } else { # $dir eq ""
373
374 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
375 print STDERR "WARNING ($0): main(): text header=$header_txt\n";
376 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100377 }
378
Peter Harders6f526a32020-06-29 21:44:41 +0200379 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100380
Peter Hardersd892a582020-02-12 15:45:22 +0100381
Peter Harders6f526a32020-06-29 21:44:41 +0200382 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100383
Peter Hardersd892a582020-02-12 15:45:22 +0100384
Peter Harders6f526a32020-06-29 21:44:41 +0200385 #print STDERR "inside text body (\$data_fl set)\n";
386
387 # ~ whitespace handling ~
388
389 # remove consecutive whitespace at beginning and end (mostly one newline)
390 # to let 'XML::CompactTree::XS' recognize these blanks as 'text-nodes', the option 'XCT_IGNORE_WS' may not be used (see above).
391 s/^\s+//; s/\s+$//;
392
393 # There's nothing wrong with inserting an additional blank at the start of the 2nd and all consecutive lines (which contain at least one tag),
394 # because it helps for better readability of the text in the '$_data_file' (e.g.: assure blanks between sentences).
395 # Furthermore, the input lines should avoid primary text tokens, which span across several lines, unless the line breaks doesn't lead
396 # to a situation which produces unwanted blanks - e.g.: '...<w>end</w>\n<w>.</w>...' would lead to '...<w>end</w> <w>.</w>...', or
397 # '...<w>,</w>\n<w>this</w>\n<w>is</w>\n<w>it</w>\n<w>!</w>...' to '<w>,<w> <w>this</w> <w>is</w> <w>it</w> <w>!</w>'. Even when considering
398 # to correct those unwanted effects, there would be lots of examples aside punctuation, where there would not exist an easy way or unarbitrary
399 # solution regarding the elimination of the false blanks.
Peter Hardersd892a582020-02-12 15:45:22 +0100400 #
Peter Harders6f526a32020-06-29 21:44:41 +0200401 # So, the best way to avoid having false blanks in the output, is to assure that linebreaks between word-tags doesn't occur in the input
402 # (see also comments on 'input restrictions' at the top of this script).
Peter Hardersd892a582020-02-12 15:45:22 +0100403
Peter Harders6f526a32020-06-29 21:44:41 +0200404 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100405
Peter Harders6f526a32020-06-29 21:44:41 +0200406 $tc++; # text counter
Peter Hardersd892a582020-02-12 15:45:22 +0100407
Peter Harders6f526a32020-06-29 21:44:41 +0200408 s/^(.)/ $1/ if $tc > 1; # add blank before 1st character for 2nd line and consecutive lines (which contain at least one tag)
Peter Hardersd892a582020-02-12 15:45:22 +0100409 }
410
Peter Harders6f526a32020-06-29 21:44:41 +0200411 # add line to buffer
412 $buf_in .= $_;
413
414 } elsif ( $header_fl_txt && m#^(.*</${_TEXT_HEADER_END}>)(.*)$# ){
415
416
417 # ~ end of text header ~
418
419
420 #print STDERR "end of text header\n";
421
422 # write it to header.xml
423
424 $sfx = $2;
425
426 $header_txt .= $1; $header_fl_txt = 0;
427
428
429 die "ERROR ($0): main(): input line number $lc: line with closing text-header tag '${_TEXT_HEADER_END}'"
430 ." contains additional information ... => Aborting\n\tline=$_"
431 if $sfx !~ /^\s*$/;
432
433 if ( $dir eq "" ){
434
435 print STDERR "WARNING ($0): main(): input line number $lc: empty textSigle in text header => nothing to do ...\ntext header=$header_txt\n";
436
437 } else {
438
439 print STDERR "DEBUG ($0): Writing file $_root_dir$dir/$_header_file\n" if $_DEBUG;
440
Peter Harders6f526a32020-06-29 21:44:41 +0200441 $header_txt = encode_utf8( $header_txt );
442
Akron85717512020-07-08 11:19:19 +0200443 $zipper->new_stream("$_root_dir$dir/$_header_file")
444 ->print("$header_prfx$header_txt");
Peter Harders6f526a32020-06-29 21:44:41 +0200445
446 $header_txt = "";
Peter Hardersd892a582020-02-12 15:45:22 +0100447 }
Peter Hardersd892a582020-02-12 15:45:22 +0100448
Peter Harders6f526a32020-06-29 21:44:41 +0200449 } elsif ( $header_fl_txt ){
Peter Hardersd892a582020-02-12 15:45:22 +0100450
Peter Harders6f526a32020-06-29 21:44:41 +0200451 # ~ inside text header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100452
Peter Harders6f526a32020-06-29 21:44:41 +0200453
454 #print STDERR "inside text header\n";
455
456 if( m#^(.*)<${_TEXT_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
457
458 $pfx = $1; $sfx = $3;
459
460 $dir = $2; $text_id = $dir;
461
462 $text_id =~ tr/\//_/; $dir =~ s/("|&|<|>)/$ent{$1}/g;
463
464 $text_id = encode_utf8( $text_id );
465
466 die "ERROR ($0): main(): input line number $lc: line with text-sigle tag '$_TEXT_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
467 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_TEXT_SIGLE}>\s*$# || $dir =~ /^\s*$/;
468
469 # log output for seeing progression
470 print STDERR "$0: main(): text_id=".decode_utf8( $text_id )."\n";
471
472 $text_id_esc = $text_id;
473
474 s#(<${_TEXT_SIGLE}(?: [^>]*)?>)[^<]+(</${_TEXT_SIGLE}>)#$1$dir$2# # to be consistent with escaping, escape also textSigle in text-header
475 if $text_id_esc =~ s/("|&|<|>)/$ent{$1}/g;
476
477 $dir =~ tr/\./\//;
478 }
479
480 $header_txt .= $_;
481
482 } elsif ( $header_fl_doc && m#^(.*</${_DOC_HEADER_END}>)(.*)$# ){
483
484
485 # ~ end of document header ~
486
Peter Harders6f526a32020-06-29 21:44:41 +0200487 #print STDERR "end of doc header\n";
488
489 # write it to header.xml
490
491 $sfx = $2;
492
493 $header_doc .= $1; $header_fl_doc = 0;
494
495 die "ERROR ($0): main(): input line number $lc: line with closing document-header tag '${_DOC_HEADER_END}'"
496 ." contains additional information ... => Aborting\n\tline=$_"
497 if $sfx !~ /^\s*$/;
498
499 if( $dir_doc eq "" ){
500
501 print STDERR "WARNING ($0): main(): input line number $lc: empty document sigle in document header"
502 ." => nothing to do ...\ndocument header=$header_doc\n";
503
504 } else {
505
506 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_doc/$_header_file\n" if $_DEBUG;
507
Peter Harders6f526a32020-06-29 21:44:41 +0200508 $header_doc = encode_utf8( $header_doc );
509
Akron85717512020-07-08 11:19:19 +0200510 $zipper->new_stream("$_root_dir$dir_doc/$_header_file")
511 ->print("$header_prfx$header_doc");
Peter Harders6f526a32020-06-29 21:44:41 +0200512
513 $header_doc = $dir_doc = "";
514 }
515
516 } elsif ( $header_fl_doc ){
517
518
519 # ~ inside document header ~
520
521
522 #print STDERR "inside doc header\n";
523
524 if ( m#^(.*)<${_DOC_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
525
526 $pfx = $1; $sfx = $3;
527
528 $dir_doc = $2;
529
530 die "ERROR ($0): main(): input line number $lc: line with document-sigle tag '$_DOC_SIGLE' is not in expected format ... => Aborting\n\tline=$_"
531 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_DOC_SIGLE}>\s*$# || $dir_doc =~ /^\s*$/;
532
533 s#(<${_DOC_SIGLE}(?: [^>]*)?>)[^<]+(</${_DOC_SIGLE}>)#$1$dir_doc$2# # to be consistent with escaping, escape also textSigle in Document-Header
534 if $dir_doc =~ s/("|&|<|>)/$ent{$1}/g;
535 }
536
537 $header_doc .= $_;
538
539 } elsif ( m#^(.*)(<${_TEXT_HEADER_BEG}.*)$# ){
540
541 # ~ start of text header ~
542
543
544 #print STDERR "begin of text header\n";
545
546 $header_txt = $_; $header_fl_txt = 1; $pfx = $1;
547
548 $tc = 0; # reset (needed for ~ whitespace handling ~)
549
550 die "ERROR ($0): main(): input line number $lc: line with opening text-header tag '${_TEXT_HEADER_BEG}'"
551 ." is not in expected format ... => Aborting\n\tline=$_"
552 if $pfx !~ /^\s*$/;
553
554 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
555
556
557 # ~ start of text body ~
558
559
560 #print STDERR "inside text body\n";
561
562 $pfx = $1; $sfx = $2;
563
564 $data_fl = 1;
565
566 die "ERROR ($0): main(): input line number $lc: line with opening text-body tag '${_TEXT_BODY}'"
567 ." contains additional information ... => Aborting\n\tline=$_"
568 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
569
570 } elsif ( m#^(.*)(<${_DOC_HEADER_BEG}.*)$# ){
571
572
573 # ~ start of document header ~
574
575
576 #print STDERR "begin of doc header\n";
577
578 $header_doc = "$2\n"; $header_fl_doc = 1; $pfx = $1;
579
580 die "ERROR ($0): main(): input line number $lc: line with opening document-header tag '${_DOC_HEADER_BEG}'"
581 ."is not in expected format ... => Aborting\n\tline=$_"
582 if $pfx !~ /^\s*$/;
583
584 } elsif ( $header_fl_crp && m#^(.*</${_CORP_HEADER_END}>)(.*)$# ){
585
586
587 # ~ end of corpus header ~
588
589
590 #print STDERR "end of corp header\n";
591
592 $sfx = $2;
593
594 $header_crp .= $1; $header_fl_crp = 0;
595
596 die "ERROR ($0): main(): input line number $lc: line with closing corpus-header tag '${_CORP_HEADER_END}'"
597 ." contains additional information ... => Aborting\n\tline=$_"
598 if $sfx !~ /^\s*$/;
599
600 if ( $dir_crp eq "" ){
601
602 print STDERR "WARNING ($0): main(): input line number $lc: empty corpus sigle in corpus header => nothing to do ...\ncorpus header=$header_crp\n";
603
604 } else {
605
606 print STDERR "DEBUG ($0): Writing file $_root_dir$dir_crp/$_header_file\n" if $_DEBUG;
607
Peter Harders6f526a32020-06-29 21:44:41 +0200608 $header_crp = encode_utf8( $header_crp );
609
Akron85717512020-07-08 11:19:19 +0200610 $zipper->new_stream("$_root_dir$dir_crp/$_header_file")
611 ->print("$header_prfx$header_crp");
Peter Harders6f526a32020-06-29 21:44:41 +0200612
613 $header_crp = $dir_crp = "";
614 }
615
616 } elsif ( $header_fl_crp ){
617
618
619 # ~ inside corpus header ~
620
621
622 #print STDERR "inside corp header\n";
623
624 if ( m#^(.*)<${_CORP_SIGLE}(?: [^>]*)?>([^<]*)(.*)$# ){
625
626 $pfx = $1; $sfx = $3;
627
628 $dir_crp = $2;
629
630 die "ERROR ($0): main(): input line number $lc: line with korpusSigle-tag is not in expected format ... => Aborting\n\tline=$_"
631 if $pfx !~ /^\s*$/ || $sfx !~ m#^</${_CORP_SIGLE}>\s*$# || $dir_crp =~ /^\s*$/;
632
633 if ( $dir_crp =~ s/("|&|<|>)/$ent{$1}/g ){
634
635 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 +0100636 }
637 }
638
Peter Harders6f526a32020-06-29 21:44:41 +0200639 $header_crp .= $_;
Peter Hardersd892a582020-02-12 15:45:22 +0100640
Peter Harders6f526a32020-06-29 21:44:41 +0200641 } elsif ( m#^(.*)(<${_CORP_HEADER_BEG}.*)$# ){
Peter Hardersd892a582020-02-12 15:45:22 +0100642
Peter Hardersd892a582020-02-12 15:45:22 +0100643
Peter Harders6f526a32020-06-29 21:44:41 +0200644 # ~ start of corpus header ~
Peter Hardersd892a582020-02-12 15:45:22 +0100645
Peter Harders6f526a32020-06-29 21:44:41 +0200646
647 #print STDERR "begin of corp header\n";
648
649 $header_crp = $2; $header_fl_crp = 1; $pfx = $1;
650
651 die "ERROR ($0): main(): input line number $lc: line with opening corpus-header tag '${_CORP_HEADER_BEG}'"
652 ." is not in expected format ... => Aborting\n\tline=$_"
653 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100654 }
655
Peter Harders6f526a32020-06-29 21:44:41 +0200656 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100657
Akron85717512020-07-08 11:19:19 +0200658 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200659
Akron8b511f92020-07-09 17:28:08 +0200660 if( $_GEN_TOK_EXT ){
661 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100662 }
Peter Hardersd892a582020-02-12 15:45:22 +0100663
Peter Harders90157342020-07-01 21:05:14 +0200664} # end: sub process
Peter Hardersd892a582020-02-12 15:45:22 +0100665
Peter Hardersd892a582020-02-12 15:45:22 +0100666
Peter Harders6f526a32020-06-29 21:44:41 +0200667sub retr_info { # called from process()
Peter Hardersd892a582020-02-12 15:45:22 +0100668
Peter Harders6f526a32020-06-29 21:44:41 +0200669 # EXAMPLE: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
670 #
671 # print out values of above example:
672 # 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 $data->[2]->[0]->[5]->[1]->[1]'
673 #
674 # $data = reference to below array
675 #
676 # [ 0: XML_READER_TYPE_DOCUMENT,
677 # 1: ?
678 # 2: [ 0: [ 0: XML_READER_TYPE_ELEMENT <- start recursion with array '$data->[2]' (see process(): retr_info( \$tree_data->[2] ))
679 # 1: 'node'
680 # 2: ?
681 # 3: HASH (attributes)
682 # 4: 1 (line number)
683 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
684 # 1: 'node1'
685 # 2: ?
686 # 3: undefined (no attributes)
687 # 4: 1 (line number)
688 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
689 # 1: 'some '
690 # ]
691 # 1: [ 0: XML_READER_TYPE_ELEMENT
692 # 1: 'n'
693 # 2: ?
694 # 3: undefined (no attributes)
695 # 4: 1 (line number)
696 # 5: undefined (no child nodes)
697 # ]
698 # 2: [ 0: XML_READER_TYPE_TEXT
699 # 1: ' text'
700 # ]
701 # ]
702 # ]
703 # 1: [ 0: XML_READER_TYPE_ELEMENT
704 # 1: 'node2'
705 # 2: ?
706 # 3: undefined (not attributes)
707 # 4: 1 (line number)
708 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
709 # 1: 'more-text'
710 # ]
711 # ]
712 # ]
713 # ]
714 # ]
715 # ]
716 # ]
717 #
718 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
719 #
720 # ref($data->[2]) == ARRAY (with 1 element for 'node')
721 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
722 #
723 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
724 # $data->[2]->[0]->[1] == 'node'
725 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
726 # $data->[2]->[0]->[4] == 1 (line number)
727 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
728 # # child nodes of actual node (see $_IDX)
729 #
730 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
731 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
732 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
733 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
734 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
735 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
736 #
737 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
738 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
739 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
740 #
741 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
742 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
743 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
744 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
745 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
746 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child nodes)
747 #
748 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
749 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
750 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
751 #
752 #
753 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
754 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
755 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100756
Peter Harders6f526a32020-06-29 21:44:41 +0200757 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100758
Peter Hardersd892a582020-02-12 15:45:22 +0100759
Peter Harders6f526a32020-06-29 21:44:41 +0200760 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100761
Peter Hardersd892a582020-02-12 15:45:22 +0100762
Peter Harders6f526a32020-06-29 21:44:41 +0200763 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 +0100764
Peter Hardersd892a582020-02-12 15:45:22 +0100765
Peter Harders6f526a32020-06-29 21:44:41 +0200766 #~~~~
767 # from here: opening tag
768 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100769
Peter Hardersd892a582020-02-12 15:45:22 +0100770
Peter Harders6f526a32020-06-29 21:44:41 +0200771 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
772 # 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 +0100773
Peter Harders6f526a32020-06-29 21:44:41 +0200774 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100775
Peter Harders6f526a32020-06-29 21:44:41 +0200776 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100777
Peter Hardersd892a582020-02-12 15:45:22 +0100778
Peter Harders6f526a32020-06-29 21:44:41 +0200779 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100780
Peter Harders6f526a32020-06-29 21:44:41 +0200781 my @array;
782 push @array, $n;
783 push @structures, \@array;
784 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100785
Peter Hardersd892a582020-02-12 15:45:22 +0100786
Peter Harders6f526a32020-06-29 21:44:41 +0200787 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100788
Peter Harders6f526a32020-06-29 21:44:41 +0200789 $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 +0100790
Peter Harders6f526a32020-06-29 21:44:41 +0200791 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100792
Peter Harders6f526a32020-06-29 21:44:41 +0200793 my @array2;
794 push @array2, $n;
795 push @tokens, \@array2;
796 push @oti2, $#tokens;
797 }
Peter Hardersd892a582020-02-12 15:45:22 +0100798
Peter Hardersd892a582020-02-12 15:45:22 +0100799
Peter Harders6f526a32020-06-29 21:44:41 +0200800 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100801
Peter Harders6f526a32020-06-29 21:44:41 +0200802 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100803
Peter Harders6f526a32020-06-29 21:44:41 +0200804 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
805 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
806 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100807
Peter Harders6f526a32020-06-29 21:44:41 +0200808 # '$c' references the 'key' and '$c+1' the 'value'
809 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100810
Peter Harders6f526a32020-06-29 21:44:41 +0200811 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100812
Peter Harders6f526a32020-06-29 21:44:41 +0200813 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
814 }
815
816 }
817 }
818
819
820 # ~ index 'from' ~
821
822 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
823
824 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text and whitespace nodes) for explanation on '$add_one'
825
826 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
827
828 push @{$tokens[$#tokens]}, ( $dl + $add_one );
829 }
830
831
832 #~~~~
833 # until here: opening tag
834 #~~~~
835
836
837 # ~~ RECURSION ~~
838
839 if ( defined $e->[$_IDX] ){ # do no recursion, if $e->[$_IDX] is not defined (because we have no array of child nodes, e.g.: <back/>)
840
841 retr_info( \$e->[$_IDX] ); # recursion with array of child nodes
842
843 $rl--; # return from recursion
844 }
845
846
847 #~~~~~
848 # from here: closing tag
849 #~~~~~
850
851
852 # ~ handle structures ~
853
854 {
855 my $ix = pop @oti; # index of just closed tag
856
857 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
858
859 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
860
861 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
862
863 # previous node was a text-node
864
865 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: notes on ~ whitespace related issue ~)
866 }
867
868 # in case this fails, check input
869 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
870 ." than to-value ($dl) => please check. aborting ...\n"
871 if ( $fval - 1 ) > $dl;
872
873 # TODO: construct example for which this case applies
874 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
875 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $dl;
876 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
877
878 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
879
880 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
881 }
882
883
884 # ~ handle tokens ~
885
886
887 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
888
889 my $ix = pop @oti2;
890
891 my $aix = $#{$tokens[$ix]};
892
893 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
894
895 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
896
897 # previous node was a text-node
898
899 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value
900 }
901
902 # in case this fails, check input
903 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
904 ." than to-value ($dl) => please check. aborting ...\n"
905 if ( $fval2 - 1 ) > $dl;
906
907 # TODO: construct example for which this case applies
908 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
909 # TODO: check, if it's better to remove this line and change above check to 'if ( $fval2 - 1) >= $dl;
910 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
911
912 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
913
914 $inside_tokens_tag = -1; # reset
915 }
916
917 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100918 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200919 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
920 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100921
922
Peter Harders6f526a32020-06-29 21:44:41 +0200923 #~~~~~
924 # from here: text (and whitespace) nodes
925 #~~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100926
927
Peter Harders6f526a32020-06-29 21:44:41 +0200928 # the 3rd form of nodes, next to text-nodes (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes
929 # of the type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
930 #
931 # when modifiying the above example (at the top of this sub) by inserting an additional blank between '</node1>' and '<node2>',
932 # the output for '$data->[2]->[0]->[5]->[1]->[1]' becomes a blank (' ') and it's type is '14' (see manpage of XML::LibXML::Reader):
933 #
934 # 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=".$data->[2]->[0]->[5]->[1]->[1].", type=".$data->[2]->[0]->[5]->[1]->[0]."\n"'
Peter Hardersd892a582020-02-12 15:45:22 +0100935
Peter Harders6f526a32020-06-29 21:44:41 +0200936 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100937
Peter Harders6f526a32020-06-29 21:44:41 +0200938 # notes on ~ whitespace related issue ~ (see below source code)
939 #
940 # example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
941 #
942 # Two text-nodes should normally be separated by a blank. In the above example, that would be the 2 text-nodes
943 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' '.
944 #
945 # Assumed, that the above example marks the general case, then the text-node 'Campagne in Frankreich' leads to the
946 # setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag and setting it's from-index, it gets the right
947 # offset, which is the start-index of '1792'.
948 #
949 # To check, that the above consideration holds, we save the from-index of a read whitespace-node into the hash %ws.
950 # By this, it can be checked when closing a tag, if the 'non-tag'-node (text or whitespace) before the last 'non-tag'-
951 # node was actually a whitespace-node ($ws{ $fval - 1 }).
952 #
953 # For whitespace-nodes, also $add_one has to be set to 0, so when opening the next tag (in the above example the 2nd
954 # 's'-tag), no additional 1 is added, because this was already done by the whitespace-node itself (by incrementing the
955 # variable $dl).
956 #
957 # Now, what happens, when 2 text-nodes are not seperated by a whitespace-node (blank)? (e.g.: <w>Augen<c>,</c></w>)
958 #
959 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the referring tag
960 # (...$fval - 1; # recorrect).
961 #
962 # Comparing the 2 examples '<w>fu</w> <w>bar</w>' and '<w>fu</w><w> </w><w>bar</w>' (even though, the 2nd one makes less
963 # sense, because of '<w> </w>'), in both the ' ' is handled as a whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
964 #
965 # So the from-index of the 2nd w-tag (in the second example) would refer to 'bar', which may not have been the intention
966 # (even, if '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug, which needs to be fixed?
967 #
968 # Empty tags also cling to the next text-token - e.g. in '...<w>tok1</w> <w>tok2</w><a><b/></a><w>tok3</w>...' the from-
969 # and to-indizes for the tags 'a' and 'b' are both 9, which is the start-index of the token 'tok3'.
970
971 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
972
973 # ~ whitespace related issue ~
974
975 $add_one = 0;
976
977 $ws{ $dl }++; # '++' does not mean a thing here (could be used for consistency checking)
978
979 }else{
980
981 # ~ text-node ~
982
983 $add_one = 1;
984 }
985
986
987 # ~ update $data and $dl ~
988
989 $data .= $e->[1];
990
991 $dl += length( $e->[1] ); # update length of $data
992
993
994
995 #~~~~~
Akron8b511f92020-07-09 17:28:08 +0200996 # from here (until end): intern tokenization
Peter Harders6f526a32020-06-29 21:44:41 +0200997 #~~~~~
998
Akron8b511f92020-07-09 17:28:08 +0200999 if ( $_GEN_TOK_INT ){
Peter Harders6f526a32020-06-29 21:44:41 +02001000
1001 $txt = $e->[1];
1002
Akroneac374d2020-07-07 09:00:44 +02001003
Peter Harders6f526a32020-06-29 21:44:41 +02001004 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 ' '
1005
Akron8b511f92020-07-09 17:28:08 +02001006 # 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 +02001007 $cons_tok->tokenize($txt, $offset);
1008 $aggr_tok->tokenize($txt, $offset);
Peter Harders6f526a32020-06-29 21:44:41 +02001009
1010 $offset = $dl;
1011
1012 } # fi
1013
Akron8b511f92020-07-09 17:28:08 +02001014 } # fi: $_GEN_TOK_INT
Peter Harders6f526a32020-06-29 21:44:41 +02001015
1016
1017 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute node
1018 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
1019
1020
1021 }else{ # not yet handled type
1022
1023 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
1024 }
1025
1026 } # end: foreach iteration
1027
1028} # end: sub retr_info
1029
1030
1031sub select_tokenization { # called from process()
1032
1033 #print STDERR "$0: select_tokenization() ...\n";
1034
Akron8b511f92020-07-09 17:28:08 +02001035 if( $_GEN_TOK_EXT ) {
1036
1037 $ext_tok->to_zip(
1038 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
1039 $text_id_esc
1040 );
1041
1042 }elsif( $_GEN_TOK_INT ){
Akrond9627472020-07-09 16:53:09 +02001043
1044 # Output token streams to zip streams
1045 $cons_tok->to_zip(
Akron8b511f92020-07-09 17:28:08 +02001046 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
Akrond9627472020-07-09 16:53:09 +02001047 $text_id_esc
1048 );
1049 $aggr_tok->to_zip(
Akron8b511f92020-07-09 17:28:08 +02001050 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
Akrond9627472020-07-09 16:53:09 +02001051 $text_id_esc
1052 );
Peter Hardersd892a582020-02-12 15:45:22 +01001053 }
Peter Hardersd892a582020-02-12 15:45:22 +01001054
Peter Harders6f526a32020-06-29 21:44:41 +02001055 #print STDERR "$0: write_tokenization(): DONE\n";
1056
1057} # end: select_tokenization
1058
Akrond9627472020-07-09 16:53:09 +02001059
Peter Harders6f526a32020-06-29 21:44:41 +02001060sub write_structures { # called from process()
1061
1062 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +01001063
1064 #print STDERR "$0: write_structures(): ...\n";
1065
Peter Harders6f526a32020-06-29 21:44:41 +02001066 if ( $dir eq "" ){
1067
1068 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001069 return;
1070 }
1071
Peter Harders6f526a32020-06-29 21:44:41 +02001072 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1073 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1074 .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 +01001075
1076 $c = 0;
1077
Peter Harders6f526a32020-06-29 21:44:41 +02001078 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +01001079
Peter Harders6f526a32020-06-29 21:44:41 +02001080 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
1081 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +01001082
Peter Harders6f526a32020-06-29 21:44:41 +02001083 # 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 )
1084
1085 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1086
1087 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +01001088 }
Peter Hardersd892a582020-02-12 15:45:22 +01001089
Peter Harders6f526a32020-06-29 21:44:41 +02001090 # this consistency check is already done in 'retr_info()'
1091 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
1092 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1093 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
1094 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
1095 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +01001096
Peter Harders6f526a32020-06-29 21:44:41 +02001097 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
1098 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +01001099
Peter Harders6f526a32020-06-29 21:44:41 +02001100 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +01001101
Peter Harders6f526a32020-06-29 21:44:41 +02001102 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1103 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1104 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1105 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
1106
1107 if ( $idx > 2 ) # attributes
1108 {
1109 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
1110
1111 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
1112
1113 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
1114
1115 # attribute (at index $att_idx) with value (at index $att_idx+1)
1116 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
1117 }
1118
1119 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001120 }
1121
Peter Harders6f526a32020-06-29 21:44:41 +02001122 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001123
Peter Harders6f526a32020-06-29 21:44:41 +02001124 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +01001125
1126 $c++;
1127
Peter Harders6f526a32020-06-29 21:44:41 +02001128 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001129
1130 $output .= " </spanList>\n</layer>";
1131
Peter Harders6f526a32020-06-29 21:44:41 +02001132 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001133
Akron85717512020-07-08 11:19:19 +02001134 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
1135 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001136
1137 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001138
Peter Hardersd892a582020-02-12 15:45:22 +01001139} # end: sub write_structures
1140
1141
Peter Harders6f526a32020-06-29 21:44:41 +02001142sub write_tokens { # called from process()
1143
1144 # ~ write @tokens ~
1145
1146 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001147
1148 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +02001149
1150 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001151 return;
1152 }
1153
Peter Harders6f526a32020-06-29 21:44:41 +02001154 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
1155 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
1156 .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 +01001157
1158 $c = 0;
1159
Peter Harders6f526a32020-06-29 21:44:41 +02001160 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +01001161
Peter Harders6f526a32020-06-29 21:44:41 +02001162 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
1163 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +01001164
Peter Harders6f526a32020-06-29 21:44:41 +02001165 # 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())
1166 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
1167
1168 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +01001169 }
Peter Hardersd892a582020-02-12 15:45:22 +01001170
Peter Harders6f526a32020-06-29 21:44:41 +02001171 # l (level): insert information about depth of element in XML-tree (top element = level 1)
1172 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
1173 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
1174 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001175
Peter Harders6f526a32020-06-29 21:44:41 +02001176 if ( $idx > 2 ){ # attributes
1177
Peter Hardersd892a582020-02-12 15:45:22 +01001178 $output .= " <fs>\n";
1179
Peter Harders6f526a32020-06-29 21:44:41 +02001180 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +01001181
Peter Harders6f526a32020-06-29 21:44:41 +02001182 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
1183 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +01001184
Peter Harders6f526a32020-06-29 21:44:41 +02001185 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001186
Peter Harders6f526a32020-06-29 21:44:41 +02001187 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
1188
1189 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
1190 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
1191
1192 if ( "$_INLINE_POS_WR" ){
1193
1194 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001195 $output .= "$1" if defined $1;
1196 $output .= "</f>\n";
1197 }
Peter Harders6f526a32020-06-29 21:44:41 +02001198
1199 if ( "$_INLINE_MSD_WR" ){
1200
1201 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001202 $output .= "$2" if defined $2;
1203 $output .= "</f>\n";
1204 }
1205
Peter Harders6f526a32020-06-29 21:44:41 +02001206 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001207
Peter Harders6f526a32020-06-29 21:44:41 +02001208 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001209
Peter Harders6f526a32020-06-29 21:44:41 +02001210 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001211
Peter Harders6f526a32020-06-29 21:44:41 +02001212 $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 +01001213 }
1214
Peter Harders6f526a32020-06-29 21:44:41 +02001215 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001216
1217 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001218
1219 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001220
1221 $output .= " </f>\n </fs>\n </span>\n";
1222
1223 $c++;
1224
Peter Harders6f526a32020-06-29 21:44:41 +02001225 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001226
1227 $output .= " </spanList>\n</layer>";
1228
Peter Harders6f526a32020-06-29 21:44:41 +02001229 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001230
Akron85717512020-07-08 11:19:19 +02001231 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1232 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001233
Peter Harders6f526a32020-06-29 21:44:41 +02001234 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001235
Peter Harders6f526a32020-06-29 21:44:41 +02001236} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001237
Peter Hardersd892a582020-02-12 15:45:22 +01001238
Akrond949e182020-02-14 12:23:57 +01001239__END__
1240
1241=pod
1242
1243=encoding utf8
1244
1245=head1 NAME
1246
1247tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1248
1249=head1 SYNOPSIS
1250
1251 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1252
1253=head1 DESCRIPTION
1254
Akronee434b12020-07-08 12:53:01 +02001255C<tei2korapxml> is a script to convert TEI P5 and
1256L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1257based documents to the
1258L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1259If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001260read from C<STDIN>. If no specific output is defined, data is written
1261to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001262
Akrond949e182020-02-14 12:23:57 +01001263This program is usually called from inside another script.
1264
Akronee434b12020-07-08 12:53:01 +02001265=head1 FORMATS
1266
1267=head2 Input restrictions
1268
1269=over 2
1270
1271=item
1272
1273utf8 encoded
1274
1275=item
1276
1277TEI P5 formatted input with certain restrictions:
1278
1279=over 4
1280
1281=item
1282
1283B<mandatory>: text-header with integrated textsigle, text-body
1284
1285=item
1286
1287B<optional>: corp-header with integrated corpsigle,
1288doc-header with integrated docsigle
1289
1290=back
1291
1292=item
1293
1294all tokens inside the primary text (inside $data) may not be
1295newline seperated, because newlines are removed
1296(see code section C<~ inside text body ~>) and a conversion of newlines
1297into blanks between 2 tokens could lead to additional blanks,
1298where there should be none (e.g.: punctuation characters like C<,> or
1299C<.> should not be seperated from their predecessor token).
1300(see also code section C<~ whitespace handling ~>).
1301
1302=back
1303
1304=head2 Notes on the output
1305
1306=over 2
1307
1308=item
1309
1310zip file output (default on C<stdout>) with utf8 encoded entries
1311(which together form the KorAP-XML format)
1312
1313=back
1314
Akrond949e182020-02-14 12:23:57 +01001315=head1 INSTALLATION
1316
1317C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1318these bindings are available, the preferred way to install the script is
1319to use L<cpanm|App::cpanminus>.
1320
1321 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1322
1323In case everything went well, the C<tei2korapxml> tool will
1324be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001325
Akrond949e182020-02-14 12:23:57 +01001326Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1327
1328=head1 OPTIONS
1329
1330=over 2
1331
1332=item B<--base|-b>
1333
1334The base directory for output. Defaults to C<.>.
1335
1336=item B<--help|-h>
1337
1338Print help information.
1339
1340=item B<--version|-v>
1341
1342Print version information.
1343
1344=back
1345
1346=head1 COPYRIGHT AND LICENSE
1347
1348Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1349
1350Author: Peter Harders
1351
1352Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1353
1354L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1355Corpus Analysis Platform at the
1356L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1357member of the
1358L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1359
1360This program is free software published under the
1361L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1362
1363=cut