blob: f0e04c30de28c247edbc292d5d9b56251e9a27f0 [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;
Akronf57ed812020-07-27 10:37:52 +020026use KorAP::XML::TEI::Header;
Peter Hardersd892a582020-02-12 15:45:22 +010027
Akrond949e182020-02-14 12:23:57 +010028our $VERSION = '0.01';
Peter Harders6f526a32020-06-29 21:44:41 +020029
Akrond949e182020-02-14 12:23:57 +010030our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n";
31
Peter Hardersd892a582020-02-12 15:45:22 +010032
Peter Harders6f526a32020-06-29 21:44:41 +020033# Parse options from the command line
Peter Hardersd892a582020-02-12 15:45:22 +010034GetOptions(
Peter Harders6f526a32020-06-29 21:44:41 +020035 "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file
36 "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted)
Akron8b511f92020-07-09 17:28:08 +020037 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes
Peter Hardersf9c51242020-07-21 02:37:44 +020038 'use-intern-tokenization|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no)
Akron8b511f92020-07-09 17:28:08 +020039 'help|h' => sub {
Akrond949e182020-02-14 12:23:57 +010040 pod2usage(
41 -verbose => 99,
42 -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS',
43 -msg => $VERSION_MSG,
44 -output => '-'
45 )
46 },
47 'version|v' => sub {
48 pod2usage(
49 -verbose => 0,
50 -msg => $VERSION_MSG,
51 -output => '-'
52 )
53 }
Peter Hardersd892a582020-02-12 15:45:22 +010054);
55
Peter Harders6f526a32020-06-29 21:44:41 +020056#
57# ~~~ parameter (mandatory) ~~~
58#
Peter Harders6f526a32020-06-29 21:44:41 +020059my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text
60 # optional
61my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them
62 # optional
63my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog
64 # mandatory
65my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog
66
67#
68# ~~~ constants ~~~
69#
Peter Hardersd892a582020-02-12 15:45:22 +010070
Peter Harders41c35622020-07-12 01:16:22 +020071## extern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020072my $_GEN_TOK_EXT = $tokenizer_call ? 1 : 0;
Akron8b511f92020-07-09 17:28:08 +020073 # TODO:
74 # Read tokenizer call from configuration file.
75 # was 'java -cp '. join(":", ".", glob(&dirname(__FILE__)."/../target/*.jar")). " de.ids_mannheim.korap.tokenizer.KorAPTokenizerImpl";
76 my $ext_tok;
77 if ($tokenizer_call) {
78 $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call);
79 };
Peter Harders41c35622020-07-12 01:16:22 +020080 my $_tok_file_ext = "tokens.xml";
Peter Harders6f526a32020-06-29 21:44:41 +020081##
82
Akron8b511f92020-07-09 17:28:08 +020083## intern tokenization
Peter Hardersf9c51242020-07-21 02:37:44 +020084my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing)
Peter Harders41c35622020-07-12 01:16:22 +020085 my $_tok_file_con = "tokens_conservative.xml";
86 my $_tok_file_agg = "tokens_aggressive.xml";
87 my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new;
88 my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new;
Peter Harders41c35622020-07-12 01:16:22 +020089##
90
91my $_tok_dir = "base"; # name of directory for storing tokenization files
Peter Harders6f526a32020-06-29 21:44:41 +020092
Peter Harders6f526a32020-06-29 21:44:41 +020093my $_DEBUG = 0; # set to 1 for minimal more debug output (no need to be parametrized)
94my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data
95 # (see also manpage of XML::CompactTree::XS)
96
97my $_header_file = "header.xml"; # name of files containing the text, document and corpus header
98my $_data_file = "data.xml"; # name of file containing the primary text data (tokens)
99my $_structure_dir = "struct"; # name of directory containing the $_structure_file
100my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information
101 # (= their names and byte offsets in $_data)
102## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill)
103my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1)
104my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file
105my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data)
106 # - evtl. with additional inline annotations
107my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file
108
109## TODO: optional
110# handling inline annotations (inside $_TOKENS_TAG)
111my $_INLINE_ANNOT = 0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0)
112my $_INLINE_LEM_RD = "lemma"; # from which attribute to read LEMMA information
113my $_INLINE_ATT_RD = "ana"; # from which attribute to read POS information (and evtl. additional MSD - Morphosyntactic Descriptions)
114 # TODO: The format for the POS and MSD information has to suffice the regular expression ([^ ]+)( (.+))?
115 # - which means, that the POS information can be followed by an optional blank with additional
116 # MSD information; unlike the MSD part, the POS part may not contain any blanks.
117my $_INLINE_POS_WR = "pos"; # name (inside $_tokens_file) referring to POS information
118my $_INLINE_MSD_WR = "msd"; # name (inside $_tokens_file) referring to MSD information
119my $_INLINE_LEM_WR = "lemma"; # name (inside $_tokens_file) referring to LEMMA information
120##
121
122
123#
124# ~~~ variables ~~~
125#
126
Akron85717512020-07-08 11:19:19 +0200127# Initialize zipper
128my $zipper = KorAP::XML::TEI::Zipper->new;
Peter Harders6f526a32020-06-29 21:44:41 +0200129my $input_fh; # input file handle (default: stdin)
130
131my $buf_in; # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader
132my $data; # contains the primary text (created by func. 'retr_info' from $buf_in), which is written to '$data_file'
133
134my $dir; # text directory (below $_root_dir)
Peter Harders6f526a32020-06-29 21:44:41 +0200135
136my ( $text_id, $text_id_esc ); # '$text_id_esc' = escaped version of $text_id (see %ent)
137
138my %ent = ('"', '&quot;', '&','&amp;', # convert '&', '<' and '>' into their corresponding sgml-entities
139 '<','&lt;','>','&gt;');
140 # note: the index still refers to the 'single character'-versions, which are counted as 1
141 # (search for '&amp;' in data.xml and see corresponding indices in $_tokens_file)
142
Akronf57ed812020-07-27 10:37:52 +0200143my ( $data_fl );
Peter Harders6f526a32020-06-29 21:44:41 +0200144
Akronf57ed812020-07-27 10:37:52 +0200145my ( $data_prfx1, $data_prfx2, $data_sfx ); # $data_* are written to $_data_file
Peter Harders6f526a32020-06-29 21:44:41 +0200146
Peter Harders6f526a32020-06-29 21:44:41 +0200147
148my @structures; # list of arrays, where each array represents a TEI I5 tag (except $_TOKENS_TAG) from the input document
149 # - the input of this array is written in func. 'write_structures' into the file '$_structure_file'
150
151my @tokens; # list of arrays, where each array represents a $_TOKENS_TAG from the input document
152 # - the input of this array is written in func. 'write_tokens' into the file '$_tokens_file'
153
154my ( $ref, $idx, $att_idx ); # needed in func. 'write_structures' and 'write_tokens'
155
156my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in')
157 $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader')
158
159# these are only used inside recursive function 'retr_info'
160my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data
161 $e, # element from $tree_data
162 $n, # tag name of actual processed element $e
163 $rl, # recursion level
164 $dl, # actual length of string $data
165 @oti, # oti='open tags indizes' - a stack of indizes into @structures, where the top index in @oti
166 # represents the actual processed element from @structures
167 @oti2, # analogously to @oti, but with reference to array @tokens
168 $inside_tokens_tag, # flag is set, when inside $_TOKENS_TAG
169 ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags)
170 $add_one, # ...
171 $fval, $fval2, # ...
Peter Harders41c35622020-07-12 01:16:22 +0200172 %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values)
173 # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node
Peter Harders6f526a32020-06-29 21:44:41 +0200174 # (means: 'from-index - 1' is a key in %ws).
175 # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1
176
177my $output; # temporary variable needed in 'write_*'-functions for writing output to zip-stream $zip)
178
179my ( $i, $c ); # index variables used in loops
180
Peter Harders6f526a32020-06-29 21:44:41 +0200181
182#
183# ~~~ main ~~~
184#
185
186# ~ initializations ~
187
188($_XCT_LN)?($_IDX=5):($_IDX=4);
189
Akronf57ed812020-07-27 10:37:52 +0200190$data_prfx1 = $data_prfx2 = $data_sfx = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200191
192$inside_tokens_tag = -1;
193
194$fval = $fval2 = 0;
195
196$_root_dir .= '/'; # base dir must always end with a slash
197$_root_dir =~ s/^\.?\///; # remove leading / (only relative paths allowed in IO::Compress::Zip) and redundant ./
198
Akronf57ed812020-07-27 10:37:52 +0200199$_CORP_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
200$_DOC_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
201$_TEXT_HEADER_BEG =~ s#^([^\s]+)(.*)$#$1\[\^>\]*$2#;
Peter Hardersd892a582020-02-12 15:45:22 +0100202
203$data_prfx1 = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
204$data_prfx1 .= "<?xml-model href=\"text.rng\" type=\"application/xml\" schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n";
205$data_prfx1 .= "<raw_text docid=\"";
206$data_prfx2 .= "\" xmlns=\"http://ids-mannheim.de/ns/KorAP\">\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200207## TODO: can 'metadata.xml' change or is it constant?
Peter Hardersd892a582020-02-12 15:45:22 +0100208$data_prfx2 .= " <metadata file=\"metadata.xml\" />\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200209##
Peter Hardersd892a582020-02-12 15:45:22 +0100210$data_prfx2 .= " <text>";
211$data_sfx = "</text>\n</raw_text>";
212
Peter Hardersd892a582020-02-12 15:45:22 +0100213
Peter Harders6f526a32020-06-29 21:44:41 +0200214# ~ read input and write output (text by text) ~
Peter Harders41c35622020-07-12 01:16:22 +0200215main();
Peter Hardersd892a582020-02-12 15:45:22 +0100216
Peter Hardersd892a582020-02-12 15:45:22 +0100217
Peter Harders6f526a32020-06-29 21:44:41 +0200218#
219# ~~~ subs ~~~
220#
Peter Hardersd892a582020-02-12 15:45:22 +0100221
Peter Hardersd892a582020-02-12 15:45:22 +0100222
Peter Harders41c35622020-07-12 01:16:22 +0200223sub main {
Peter Hardersd892a582020-02-12 15:45:22 +0100224
Peter Harders6f526a32020-06-29 21:44:41 +0200225 my ( $pfx, $sfx );
Peter Hardersd892a582020-02-12 15:45:22 +0100226
Peter Harders41c35622020-07-12 01:16:22 +0200227 my $tl = 0; # text line (needed for whitespace handling)
Peter Harders6f526a32020-06-29 21:44:41 +0200228
229 $input_fh = *STDIN; # input file handle (default: stdin)
230
Akron85717512020-07-08 11:19:19 +0200231 $data_fl = 0;
Peter Harders6f526a32020-06-29 21:44:41 +0200232
Akronf57ed812020-07-27 10:37:52 +0200233 $buf_in = $data = $dir = "";
Peter Harders6f526a32020-06-29 21:44:41 +0200234
235
236 if ( $input_fname ne '' ){
237
238 open ( $input_fh, "<", "$input_fname") || die "File \'$input_fname\' could not be opened.\n";
239
240 }
241
242
Peter Harders41c35622020-07-12 01:16:22 +0200243 # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML')
Peter Harders90157342020-07-01 21:05:14 +0200244 # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular
245 binmode $input_fh;
246
247
Peter Harders6f526a32020-06-29 21:44:41 +0200248 # ~ loop (reading input document) ~
249
250 while ( <$input_fh> ){
251
Peter Harders6f526a32020-06-29 21:44:41 +0200252 # TODO: yet not tested fo big amounts of data
253 # must-have, otherwise comments in input could be fatal (e.g.: ...<!--\n<idsHeader...\n-->...)
Akron95bc98a2020-07-11 12:00:12 +0200254 remove_xml_comments( $input_fh, $_ ); # remove HTML comments (<!--...-->)
Peter Harders6f526a32020-06-29 21:44:41 +0200255
256 if ( $data_fl && m#^(.*)</${_TEXT_BODY}>(.*)$# ){
257
258
259 # ~ end of text body ~
260
261
Akron8b511f92020-07-09 17:28:08 +0200262 # 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 +0200263
264 $pfx = $1; $sfx = $2;
265
Akrone19aa3e2020-07-27 11:41:27 +0200266 die "ERROR ($0): main(): input line number $.: line with closing text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200267 ." contains additional information ... => Aborting\n\tline=$_"
268 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
269
270 if ( $dir ne "" ){
271
Peter Harders6f526a32020-06-29 21:44:41 +0200272 $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 );
Peter Harders6f526a32020-06-29 21:44:41 +0200273
Peter Harders41c35622020-07-12 01:16:22 +0200274 # ~ whitespace handling ~
275 #
276 # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'
277 # (see function 'retr_info()').
278 #
279 # Definition of significant and insignificant whitespace
280 # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html):
281 #
282 # Significant whitespace is part of the document content and should be preserved.
283 # Insignificant whitespace is used when editing XML documents for readability.
284 # These whitespaces are typically not intended for inclusion in the delivery of the document.
285 #
Peter Harders6f526a32020-06-29 21:44:41 +0200286 if ( $_XCT_LN ){ # _XCT_LINE_NUMBERS is only for debugging
287 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY | XCT_LINE_NUMBERS );
288 } else {
289 $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY );
290 }
291
292 @structures = (); @oti = ();
293
294 if ( $_TOKENS_PROC ){
295 @tokens = (); @oti2 = ()
296 }
297
298 $dl = $rl = 0;
299
300 # ~ whitespace related issue ~
301 $add_one = 0;
302 %ws = ();
303
304
305 # ~ recursion ~
306
307 retr_info( \$tree_data->[2] ); # parse input data
308
309 $rl--;
310
311
312 # ~ write data.xml ~
313
Peter Harders41c35622020-07-12 01:16:22 +0200314 # TODO: should not be necessary, because whitespace at the end of every input line is removed: see 'whitespace handling' inside text body
315 # (...elsif ( $data_fl )....)
Peter Harders6f526a32020-06-29 21:44:41 +0200316 $data =~ tr/\n\r/ /; # note: 2 blanks - otherwise offset data would become corrupt
Peter Harders41c35622020-07-12 01:16:22 +0200317 #
Peter Harders6f526a32020-06-29 21:44:41 +0200318
Peter Harders6f526a32020-06-29 21:44:41 +0200319
Akronedee6e52020-07-27 14:15:11 +0200320 # ~ tokenization ~
321
Akron8b511f92020-07-09 17:28:08 +0200322 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200323
Akronedee6e52020-07-27 14:15:11 +0200324 $ext_tok->tokenize($data)->to_zip(
325 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
326 $text_id_esc
327 );
Peter Hardersb1227172020-07-21 02:12:10 +0200328
Peter Harders42e18a62020-07-21 02:43:26 +0200329 }
330
331 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200332
Akronedee6e52020-07-27 14:15:11 +0200333 # Tokenize and output
334 $cons_tok->tokenize($data)->to_zip(
335 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
336 $text_id_esc
337 );
338
339 $aggr_tok->tokenize($data)->to_zip(
340 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
341 $text_id_esc
342 );
343
344 $aggr_tok->reset;
345 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200346 }
Akron8b511f92020-07-09 17:28:08 +0200347
Peter Hardersb1227172020-07-21 02:12:10 +0200348 $data = encode_utf8( $data );
349
Peter Harders6f526a32020-06-29 21:44:41 +0200350 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
351
Peter Harders6f526a32020-06-29 21:44:41 +0200352
353 $data =~ s/(&|<|>)/$ent{$1}/g;
354
Akron85717512020-07-08 11:19:19 +0200355 $zipper->new_stream("$_root_dir$dir/$_data_file")
356 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200357
358 # ~ write structures ~
359
360 write_structures() if @structures;
361
362
363 # ~ write tokens ~
364
365 write_tokens() if $_TOKENS_PROC && @tokens;
366
Peter Hardersb1227172020-07-21 02:12:10 +0200367 #print STDERR "$0: write_tokenization(): DONE\n";
368
Peter Harders6f526a32020-06-29 21:44:41 +0200369 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
370
371 } else { # $dir eq ""
372
373 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
Akronf57ed812020-07-27 10:37:52 +0200374 # print STDERR "WARNING ($0): main(): text header=$header_txt\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200375 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100376 }
377
Peter Harders6f526a32020-06-29 21:44:41 +0200378 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100379
Peter Hardersd892a582020-02-12 15:45:22 +0100380
Peter Harders6f526a32020-06-29 21:44:41 +0200381 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100382
Peter Hardersd892a582020-02-12 15:45:22 +0100383
Peter Harders6f526a32020-06-29 21:44:41 +0200384 #print STDERR "inside text body (\$data_fl set)\n";
385
386 # ~ whitespace handling ~
387
Peter Harders41c35622020-07-12 01:16:22 +0200388 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
389 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100390 #
Peter Harders41c35622020-07-12 01:16:22 +0200391 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
392 # example further down and notes on 'Input restrictions' in the manpage).
393 #
394 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
395 #
396 # 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
397 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
398 #
399 # Examples (how primary text with linebreaks would be converted by below code):
400 #
401 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
402 # '...<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 +0100403
Peter Harders41c35622020-07-12 01:16:22 +0200404 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
405
406 ### NOTE: this is only relevant, if a text consists of more than one line
407 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
408 ### 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 +0200409 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100410
Peter Harders41c35622020-07-12 01:16:22 +0200411 # NOTE: not stringent ('...' stands for text):
412 #
413 # beg1............................end1 => no blank before 'beg1'
414 # beg2....<pb/>...................end2 => no blank before 'beg2'
415 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
416 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
417 #
418 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
419 # ^
420 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100421
Peter Harders41c35622020-07-12 01:16:22 +0200422 $tl++; # counter for text lines
423
424 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100425 }
Peter Harders41c35622020-07-12 01:16:22 +0200426 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100427
Peter Harders6f526a32020-06-29 21:44:41 +0200428 # add line to buffer
429 $buf_in .= $_;
430
Peter Harders6f526a32020-06-29 21:44:41 +0200431 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
432
Peter Harders6f526a32020-06-29 21:44:41 +0200433 # ~ start of text body ~
434
Peter Harders6f526a32020-06-29 21:44:41 +0200435 #print STDERR "inside text body\n";
436
437 $pfx = $1; $sfx = $2;
438
439 $data_fl = 1;
440
Akrone19aa3e2020-07-27 11:41:27 +0200441 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200442 ." contains additional information ... => Aborting\n\tline=$_"
443 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
444
Akronf57ed812020-07-27 10:37:52 +0200445 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200446
Akronf57ed812020-07-27 10:37:52 +0200447 # ~ start of header ~
448 $pfx = $1;
449 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200450
Akrone19aa3e2020-07-27 11:41:27 +0200451 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200452 ." is not in expected format ... => Aborting\n\tline=$_"
453 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100454
Akronf57ed812020-07-27 10:37:52 +0200455 # Parse header
456 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
457
458 # Header was parseable
459 if ($header) {
460
461 # Write header to zip
462 my $file = $_root_dir . $header->dir . '/' . $_header_file;
463
464 print STDERR "DEBUG ($0): Writing file $file\n" if $_DEBUG;
465
466 $header->to_zip($zipper->new_stream($file));
467
468 # Header is for text level
469 if ($header->type eq 'text') {
470
471 # Remember dir and sigles
472 $dir = $header->dir;
473 $text_id = $header->id;
474 $text_id_esc = $header->id_esc;
475
476 # log output for seeing progression
477 print STDERR "$0: main(): text_id=".decode_utf8( $text_id )."\n";
478
479 $tl = 0; # reset (needed for ~ whitespace handling ~)
480 };
481 }
482 }
Peter Harders6f526a32020-06-29 21:44:41 +0200483 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100484
Akron85717512020-07-08 11:19:19 +0200485 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200486
Akron8b511f92020-07-09 17:28:08 +0200487 if( $_GEN_TOK_EXT ){
488 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100489 }
Peter Hardersd892a582020-02-12 15:45:22 +0100490
Peter Harders41c35622020-07-12 01:16:22 +0200491} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100492
Peter Hardersd892a582020-02-12 15:45:22 +0100493
Peter Harders41c35622020-07-12 01:16:22 +0200494sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100495
Peter Harders41c35622020-07-12 01:16:22 +0200496 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200497 #
Peter Harders41c35622020-07-12 01:16:22 +0200498 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200499 #
Peter Harders41c35622020-07-12 01:16:22 +0200500 # Print out name of 'node2' for the above example:
501 #
502 # 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"'
503 #
504 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200505 #
506 # [ 0: XML_READER_TYPE_DOCUMENT,
507 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200508 # 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 +0200509 # 1: 'node'
510 # 2: ?
511 # 3: HASH (attributes)
512 # 4: 1 (line number)
513 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
514 # 1: 'node1'
515 # 2: ?
516 # 3: undefined (no attributes)
517 # 4: 1 (line number)
518 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
519 # 1: 'some '
520 # ]
521 # 1: [ 0: XML_READER_TYPE_ELEMENT
522 # 1: 'n'
523 # 2: ?
524 # 3: undefined (no attributes)
525 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200526 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200527 # ]
528 # 2: [ 0: XML_READER_TYPE_TEXT
529 # 1: ' text'
530 # ]
531 # ]
532 # ]
533 # 1: [ 0: XML_READER_TYPE_ELEMENT
534 # 1: 'node2'
535 # 2: ?
536 # 3: undefined (not attributes)
537 # 4: 1 (line number)
538 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
539 # 1: 'more-text'
540 # ]
541 # ]
542 # ]
543 # ]
544 # ]
545 # ]
546 # ]
547 #
548 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
549 #
550 # ref($data->[2]) == ARRAY (with 1 element for 'node')
551 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
552 #
553 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
554 # $data->[2]->[0]->[1] == 'node'
555 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
556 # $data->[2]->[0]->[4] == 1 (line number)
557 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200558 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200559 #
560 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
561 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
562 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
563 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
564 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
565 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
566 #
567 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
568 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
569 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
570 #
571 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
572 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
573 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
574 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
575 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200576 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200577 #
578 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
579 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
580 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
581 #
582 #
583 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
584 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
585 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100586
Peter Harders41c35622020-07-12 01:16:22 +0200587
Peter Harders6f526a32020-06-29 21:44:41 +0200588 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100589
Peter Hardersd892a582020-02-12 15:45:22 +0100590
Peter Harders6f526a32020-06-29 21:44:41 +0200591 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100592
Peter Hardersd892a582020-02-12 15:45:22 +0100593
Peter Harders41c35622020-07-12 01:16:22 +0200594 if ( $e->[0] == XML_READER_TYPE_ELEMENT ){ # element-node (see 'NODE TYPES' in manpage of XML::LibXML::Reader)
Peter Hardersd892a582020-02-12 15:45:22 +0100595
Peter Hardersd892a582020-02-12 15:45:22 +0100596
Peter Harders6f526a32020-06-29 21:44:41 +0200597 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200598 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200599 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Hardersd892a582020-02-12 15:45:22 +0100601
Peter Harders6f526a32020-06-29 21:44:41 +0200602 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
603 # update @oti (open tags indizes) with @structures highest index (= $#structures); e.g.: @a=(1,2,3) => $#a = 2
Peter Hardersd892a582020-02-12 15:45:22 +0100604
Peter Harders6f526a32020-06-29 21:44:41 +0200605 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100606
Peter Harders6f526a32020-06-29 21:44:41 +0200607 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100608
Peter Hardersd892a582020-02-12 15:45:22 +0100609
Peter Harders6f526a32020-06-29 21:44:41 +0200610 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100611
Peter Harders6f526a32020-06-29 21:44:41 +0200612 my @array;
613 push @array, $n;
614 push @structures, \@array;
615 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100616
Peter Hardersd892a582020-02-12 15:45:22 +0100617
Peter Harders6f526a32020-06-29 21:44:41 +0200618 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100619
Peter Harders6f526a32020-06-29 21:44:41 +0200620 $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 +0100621
Peter Harders6f526a32020-06-29 21:44:41 +0200622 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100623
Peter Harders6f526a32020-06-29 21:44:41 +0200624 my @array2;
625 push @array2, $n;
626 push @tokens, \@array2;
627 push @oti2, $#tokens;
628 }
Peter Hardersd892a582020-02-12 15:45:22 +0100629
Peter Hardersd892a582020-02-12 15:45:22 +0100630
Peter Harders6f526a32020-06-29 21:44:41 +0200631 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100632
Peter Harders6f526a32020-06-29 21:44:41 +0200633 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100634
Peter Harders6f526a32020-06-29 21:44:41 +0200635 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
636 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
637 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100638
Peter Harders6f526a32020-06-29 21:44:41 +0200639 # '$c' references the 'key' and '$c+1' the 'value'
640 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100641
Peter Harders6f526a32020-06-29 21:44:41 +0200642 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100643
Peter Harders6f526a32020-06-29 21:44:41 +0200644 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
645 }
646
647 }
648 }
649
650
651 # ~ index 'from' ~
652
653 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
654
Peter Harders41c35622020-07-12 01:16:22 +0200655 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200656
657 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
658
659 push @{$tokens[$#tokens]}, ( $dl + $add_one );
660 }
661
662
663 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200664 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200665 #~~~~
666
667
668 # ~~ RECURSION ~~
669
Peter Harders41c35622020-07-12 01:16:22 +0200670 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 +0200671
Peter Harders41c35622020-07-12 01:16:22 +0200672 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200673
674 $rl--; # return from recursion
675 }
676
677
678 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200679 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200680 #~~~~~
681
682
683 # ~ handle structures ~
684
685 {
686 my $ix = pop @oti; # index of just closed tag
687
688 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
689
690 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
691
692 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
693
Peter Harders41c35622020-07-12 01:16:22 +0200694 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200695
Peter Harders41c35622020-07-12 01:16:22 +0200696 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200697 }
698
699 # in case this fails, check input
700 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
701 ." than to-value ($dl) => please check. aborting ...\n"
702 if ( $fval - 1 ) > $dl;
703
Peter Harders41c35622020-07-12 01:16:22 +0200704 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200705 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
706 # 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 +0200707 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200708 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
709
710 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
711
712 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
713 }
714
715
716 # ~ handle tokens ~
717
718
719 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
720
721 my $ix = pop @oti2;
722
723 my $aix = $#{$tokens[$ix]};
724
725 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
726
727 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
728
Peter Harders41c35622020-07-12 01:16:22 +0200729 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200730
Peter Harders41c35622020-07-12 01:16:22 +0200731 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200732 }
733
734 # in case this fails, check input
735 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
736 ." than to-value ($dl) => please check. aborting ...\n"
737 if ( $fval2 - 1 ) > $dl;
738
Peter Harders41c35622020-07-12 01:16:22 +0200739 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200740 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
741 # 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 +0200742 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200743 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
744
745 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
746
747 $inside_tokens_tag = -1; # reset
748 }
749
750 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100751 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200752 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
753 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100754
755
Peter Harders41c35622020-07-12 01:16:22 +0200756 #~~~~
757 # until here: tag-node (closing)
758 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100759
760
Peter Harders41c35622020-07-12 01:16:22 +0200761 #~~~~~
762 # from here: text- and whitespace-nodes
763 #~~~~~
764
765 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
766 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200767 #
Peter Harders41c35622020-07-12 01:16:22 +0200768 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
769 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
770 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200771 #
Peter Harders41c35622020-07-12 01:16:22 +0200772 # 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 +0100773
Peter Harders6f526a32020-06-29 21:44:41 +0200774 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100775
Peter Harders41c35622020-07-12 01:16:22 +0200776 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200777 #
Peter Harders41c35622020-07-12 01:16:22 +0200778 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200779 #
780 # 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 +0200781 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200782 #
Peter Harders41c35622020-07-12 01:16:22 +0200783 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
784 # 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 +0200785 #
Peter Harders41c35622020-07-12 01:16:22 +0200786 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
787 # 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 +0200788 #
Peter Harders41c35622020-07-12 01:16:22 +0200789 # 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.
790 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
791 # 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
792 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200793 #
Peter Harders41c35622020-07-12 01:16:22 +0200794 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
795 # 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 +0200796 #
Peter Harders41c35622020-07-12 01:16:22 +0200797 # [1]
798 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
799 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
800 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200801 #
Peter Harders41c35622020-07-12 01:16:22 +0200802 # [2]
803 # 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
804 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200805 #
Peter Harders41c35622020-07-12 01:16:22 +0200806 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
807 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200808 #
Peter Harders41c35622020-07-12 01:16:22 +0200809 # 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-
810 # 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 +0200811
812 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
813
Peter Harders41c35622020-07-12 01:16:22 +0200814 # ~ whitespace-node ~
815
816 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200817
818 $add_one = 0;
819
Peter Harders41c35622020-07-12 01:16:22 +0200820 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
821 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200822
823 }else{
824
825 # ~ text-node ~
826
827 $add_one = 1;
828 }
829
830
831 # ~ update $data and $dl ~
832
833 $data .= $e->[1];
834
835 $dl += length( $e->[1] ); # update length of $data
836
837
Peter Harders41c35622020-07-12 01:16:22 +0200838 #~~~~~
839 # until here: text- and whitespace-nodes
840 #~~~~~
841
842
843 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200844 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
845
846
847 }else{ # not yet handled type
848
849 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
850 }
851
852 } # end: foreach iteration
853
854} # end: sub retr_info
855
856
Peter Harders41c35622020-07-12 01:16:22 +0200857sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200858
859 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100860
861 #print STDERR "$0: write_structures(): ...\n";
862
Peter Harders6f526a32020-06-29 21:44:41 +0200863 if ( $dir eq "" ){
864
865 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100866 return;
867 }
868
Peter Harders6f526a32020-06-29 21:44:41 +0200869 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
870 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
871 .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 +0100872
873 $c = 0;
874
Peter Harders6f526a32020-06-29 21:44:41 +0200875 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100876
Peter Harders6f526a32020-06-29 21:44:41 +0200877 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
878 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100879
Peter Harders6f526a32020-06-29 21:44:41 +0200880 # 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 )
881
882 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
883
884 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100885 }
Peter Hardersd892a582020-02-12 15:45:22 +0100886
Peter Harders6f526a32020-06-29 21:44:41 +0200887 # this consistency check is already done in 'retr_info()'
888 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
889 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
890 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
891 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
892 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100893
Peter Harders6f526a32020-06-29 21:44:41 +0200894 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
895 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100896
Peter Harders6f526a32020-06-29 21:44:41 +0200897 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100898
Peter Harders6f526a32020-06-29 21:44:41 +0200899 # l (level): insert information about depth of element in XML-tree (top element = level 1)
900 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
901 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
902 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
903
904 if ( $idx > 2 ) # attributes
905 {
906 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
907
908 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
909
910 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
911
912 # attribute (at index $att_idx) with value (at index $att_idx+1)
913 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
914 }
915
916 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100917 }
918
Peter Harders6f526a32020-06-29 21:44:41 +0200919 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100920
Peter Harders6f526a32020-06-29 21:44:41 +0200921 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100922
923 $c++;
924
Peter Harders6f526a32020-06-29 21:44:41 +0200925 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100926
927 $output .= " </spanList>\n</layer>";
928
Peter Harders6f526a32020-06-29 21:44:41 +0200929 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +0100930
Akron85717512020-07-08 11:19:19 +0200931 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
932 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100933
934 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200935
Peter Hardersd892a582020-02-12 15:45:22 +0100936} # end: sub write_structures
937
938
Peter Harders41c35622020-07-12 01:16:22 +0200939sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200940
941 # ~ write @tokens ~
942
943 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100944
945 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +0200946
947 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100948 return;
949 }
950
Peter Harders6f526a32020-06-29 21:44:41 +0200951 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
952 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
953 .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 +0100954
955 $c = 0;
956
Peter Harders6f526a32020-06-29 21:44:41 +0200957 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +0100958
Peter Harders6f526a32020-06-29 21:44:41 +0200959 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
960 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +0100961
Peter Harders6f526a32020-06-29 21:44:41 +0200962 # 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())
963 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
964
965 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +0100966 }
Peter Hardersd892a582020-02-12 15:45:22 +0100967
Peter Harders6f526a32020-06-29 21:44:41 +0200968 # l (level): insert information about depth of element in XML-tree (top element = level 1)
969 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
970 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
971 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100972
Peter Harders6f526a32020-06-29 21:44:41 +0200973 if ( $idx > 2 ){ # attributes
974
Peter Hardersd892a582020-02-12 15:45:22 +0100975 $output .= " <fs>\n";
976
Peter Harders6f526a32020-06-29 21:44:41 +0200977 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +0100978
Peter Harders6f526a32020-06-29 21:44:41 +0200979 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
980 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +0100981
Peter Harders6f526a32020-06-29 21:44:41 +0200982 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +0100983
Peter Harders6f526a32020-06-29 21:44:41 +0200984 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
985
986 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
987 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
988
989 if ( "$_INLINE_POS_WR" ){
990
991 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +0100992 $output .= "$1" if defined $1;
993 $output .= "</f>\n";
994 }
Peter Harders6f526a32020-06-29 21:44:41 +0200995
996 if ( "$_INLINE_MSD_WR" ){
997
998 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +0100999 $output .= "$2" if defined $2;
1000 $output .= "</f>\n";
1001 }
1002
Peter Harders6f526a32020-06-29 21:44:41 +02001003 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001004
Peter Harders6f526a32020-06-29 21:44:41 +02001005 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001006
Peter Harders6f526a32020-06-29 21:44:41 +02001007 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001008
Peter Harders6f526a32020-06-29 21:44:41 +02001009 $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 +01001010 }
1011
Peter Harders6f526a32020-06-29 21:44:41 +02001012 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001013
1014 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001015
1016 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001017
1018 $output .= " </f>\n </fs>\n </span>\n";
1019
1020 $c++;
1021
Peter Harders6f526a32020-06-29 21:44:41 +02001022 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001023
1024 $output .= " </spanList>\n</layer>";
1025
Peter Harders6f526a32020-06-29 21:44:41 +02001026 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001027
Akron85717512020-07-08 11:19:19 +02001028 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1029 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001030
Peter Harders6f526a32020-06-29 21:44:41 +02001031 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001032
Peter Harders6f526a32020-06-29 21:44:41 +02001033} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001034
Peter Hardersd892a582020-02-12 15:45:22 +01001035
Akrond949e182020-02-14 12:23:57 +01001036__END__
1037
1038=pod
1039
1040=encoding utf8
1041
1042=head1 NAME
1043
1044tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1045
1046=head1 SYNOPSIS
1047
1048 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1049
1050=head1 DESCRIPTION
1051
Akronee434b12020-07-08 12:53:01 +02001052C<tei2korapxml> is a script to convert TEI P5 and
1053L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1054based documents to the
1055L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1056If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001057read from C<STDIN>. If no specific output is defined, data is written
1058to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001059
Akrond949e182020-02-14 12:23:57 +01001060This program is usually called from inside another script.
1061
Akronee434b12020-07-08 12:53:01 +02001062=head1 FORMATS
1063
1064=head2 Input restrictions
1065
1066=over 2
1067
1068=item
1069
1070utf8 encoded
1071
1072=item
1073
1074TEI P5 formatted input with certain restrictions:
1075
1076=over 4
1077
1078=item
1079
1080B<mandatory>: text-header with integrated textsigle, text-body
1081
1082=item
1083
1084B<optional>: corp-header with integrated corpsigle,
1085doc-header with integrated docsigle
1086
1087=back
1088
1089=item
1090
1091all tokens inside the primary text (inside $data) may not be
1092newline seperated, because newlines are removed
1093(see code section C<~ inside text body ~>) and a conversion of newlines
1094into blanks between 2 tokens could lead to additional blanks,
1095where there should be none (e.g.: punctuation characters like C<,> or
1096C<.> should not be seperated from their predecessor token).
1097(see also code section C<~ whitespace handling ~>).
1098
1099=back
1100
1101=head2 Notes on the output
1102
1103=over 2
1104
1105=item
1106
1107zip file output (default on C<stdout>) with utf8 encoded entries
1108(which together form the KorAP-XML format)
1109
1110=back
1111
Akrond949e182020-02-14 12:23:57 +01001112=head1 INSTALLATION
1113
1114C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1115these bindings are available, the preferred way to install the script is
1116to use L<cpanm|App::cpanminus>.
1117
1118 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1119
1120In case everything went well, the C<tei2korapxml> tool will
1121be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001122
Akrond949e182020-02-14 12:23:57 +01001123Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1124
1125=head1 OPTIONS
1126
1127=over 2
1128
Akron4e603a52020-07-27 14:23:49 +02001129=item B<--root|-r>
Akrond949e182020-02-14 12:23:57 +01001130
Akron4e603a52020-07-27 14:23:49 +02001131The root directory for output. Defaults to C<.>.
Akrond949e182020-02-14 12:23:57 +01001132
1133=item B<--help|-h>
1134
1135Print help information.
1136
1137=item B<--version|-v>
1138
1139Print version information.
1140
Akron4e603a52020-07-27 14:23:49 +02001141=item B<--tokenizer-call|-tc>
1142
1143Call an external tokenizer process, that will tokenize
1144a single line from STDIN and outputs one token per line.
1145
1146=item B<--use-intern-tokenization|-ti>
1147
1148Tokenize the data using two embedded tokenizers,
1149that will take an I<Aggressive> and a I<conservative>
1150approach.
1151
Akrond949e182020-02-14 12:23:57 +01001152=back
1153
1154=head1 COPYRIGHT AND LICENSE
1155
1156Copyright (C) 2020, L<IDS Mannheim|https://www.ids-mannheim.de/>
1157
1158Author: Peter Harders
1159
1160Contributors: Marc Kupietz, Carsten Schnober, Nils Diewald
1161
1162L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
1163Corpus Analysis Platform at the
1164L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
1165member of the
1166L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
1167
1168This program is free software published under the
1169L<BSD-2 License|https://raw.githubusercontent.com/KorAP/KorAP-XML-TEI/master/LICENSE>.
1170
1171=cut