blob: 387520071475eec9e33710a15009266a11eddab3 [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
Akron8b511f92020-07-09 17:28:08 +0200320 if ( $_GEN_TOK_EXT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200321
322 $ext_tok->tokenize($data);
323
Peter Harders42e18a62020-07-21 02:43:26 +0200324 }
325
326 if ( $_GEN_TOK_INT ){
Peter Hardersb1227172020-07-21 02:12:10 +0200327
328 $cons_tok->tokenize($data);
329 $aggr_tok->tokenize($data);
Peter Harders6f526a32020-06-29 21:44:41 +0200330 }
Akron8b511f92020-07-09 17:28:08 +0200331
Peter Hardersb1227172020-07-21 02:12:10 +0200332 $data = encode_utf8( $data );
333
Peter Harders6f526a32020-06-29 21:44:41 +0200334 print STDERR "DEBUG ($0): main(): Writing (utf8-formatted) xml file $_root_dir$dir/$_data_file\n" if $_DEBUG;
335
Peter Harders6f526a32020-06-29 21:44:41 +0200336
337 $data =~ s/(&|<|>)/$ent{$1}/g;
338
Akron85717512020-07-08 11:19:19 +0200339 $zipper->new_stream("$_root_dir$dir/$_data_file")
340 ->print("$data_prfx1$text_id_esc$data_prfx2$data$data_sfx");
Peter Harders6f526a32020-06-29 21:44:41 +0200341
342 # ~ write structures ~
343
344 write_structures() if @structures;
345
346
347 # ~ write tokens ~
348
349 write_tokens() if $_TOKENS_PROC && @tokens;
350
351
Akron8b511f92020-07-09 17:28:08 +0200352 # ~ tokenization ~
Peter Harders6f526a32020-06-29 21:44:41 +0200353
Peter Hardersb1227172020-07-21 02:12:10 +0200354 if ( $_GEN_TOK_EXT ) {
Peter Harders6f526a32020-06-29 21:44:41 +0200355
Peter Hardersb1227172020-07-21 02:12:10 +0200356 $ext_tok->to_zip(
357 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_ext"),
358 $text_id_esc
359 )
Peter Harders6f526a32020-06-29 21:44:41 +0200360
Peter Harders42e18a62020-07-21 02:43:26 +0200361 }
362
363 if ( $_GEN_TOK_INT ){
Akron997e9402020-07-11 12:06:13 +0200364
Peter Hardersb1227172020-07-21 02:12:10 +0200365 # Output token streams to zip streams
366 $cons_tok->to_zip(
367 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_con"),
368 $text_id_esc
369 );
370 $aggr_tok->to_zip(
371 $zipper->new_stream("$_root_dir$dir/$_tok_dir/$_tok_file_agg"),
372 $text_id_esc
373 );
374 $aggr_tok->reset;
375 $cons_tok->reset;
Peter Harders6f526a32020-06-29 21:44:41 +0200376 }
377
Peter Hardersb1227172020-07-21 02:12:10 +0200378 #print STDERR "$0: write_tokenization(): DONE\n";
379
Peter Harders6f526a32020-06-29 21:44:41 +0200380 $data_fl = 0; $buf_in = $data = $dir = ""; # reinit.
381
382 } else { # $dir eq ""
383
384 print STDERR "WARNING ($0): main(): maybe empty textSigle => skipping this text ...\n";
Akronf57ed812020-07-27 10:37:52 +0200385 # print STDERR "WARNING ($0): main(): text header=$header_txt\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200386 print STDERR "WARNING ($0): main(): data=$data\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100387 }
388
Peter Harders6f526a32020-06-29 21:44:41 +0200389 } elsif ( $data_fl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100390
Peter Hardersd892a582020-02-12 15:45:22 +0100391
Peter Harders6f526a32020-06-29 21:44:41 +0200392 # ~ inside text body ~
Peter Hardersd892a582020-02-12 15:45:22 +0100393
Peter Hardersd892a582020-02-12 15:45:22 +0100394
Peter Harders6f526a32020-06-29 21:44:41 +0200395 #print STDERR "inside text body (\$data_fl set)\n";
396
397 # ~ whitespace handling ~
398
Peter Harders41c35622020-07-12 01:16:22 +0200399 # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted
400 # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped.
Peter Hardersd892a582020-02-12 15:45:22 +0100401 #
Peter Harders41c35622020-07-12 01:16:22 +0200402 # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see
403 # example further down and notes on 'Input restrictions' in the manpage).
404 #
405 # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text.
406 #
407 # 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
408 # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)).
409 #
410 # Examples (how primary text with linebreaks would be converted by below code):
411 #
412 # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...'
413 # '...<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 +0100414
Peter Harders41c35622020-07-12 01:16:22 +0200415 s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline)
416
417 ### NOTE: this is only relevant, if a text consists of more than one line
418 ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1)
419 ### 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 +0200420 if ( m/<[^>]+>[^<]/ ){ # line contains at least one tag with at least one character contents
Peter Hardersd892a582020-02-12 15:45:22 +0100421
Peter Harders41c35622020-07-12 01:16:22 +0200422 # NOTE: not stringent ('...' stands for text):
423 #
424 # beg1............................end1 => no blank before 'beg1'
425 # beg2....<pb/>...................end2 => no blank before 'beg2'
426 # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3'
427 # beg4....<test>ok</test>.........end4 => blank before 'beg4'
428 #
429 # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4
430 # ^
431 # |_blank between 'end3' and 'beg4'
Peter Hardersd892a582020-02-12 15:45:22 +0100432
Peter Harders41c35622020-07-12 01:16:22 +0200433 $tl++; # counter for text lines
434
435 s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines)
Peter Hardersd892a582020-02-12 15:45:22 +0100436 }
Peter Harders41c35622020-07-12 01:16:22 +0200437 ###
Peter Hardersd892a582020-02-12 15:45:22 +0100438
Peter Harders6f526a32020-06-29 21:44:41 +0200439 # add line to buffer
440 $buf_in .= $_;
441
Peter Harders6f526a32020-06-29 21:44:41 +0200442 } elsif ( m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){
443
Peter Harders6f526a32020-06-29 21:44:41 +0200444 # ~ start of text body ~
445
Peter Harders6f526a32020-06-29 21:44:41 +0200446 #print STDERR "inside text body\n";
447
448 $pfx = $1; $sfx = $2;
449
450 $data_fl = 1;
451
Akrone19aa3e2020-07-27 11:41:27 +0200452 die "ERROR ($0): main(): input line number $.: line with opening text-body tag '${_TEXT_BODY}'"
Peter Harders6f526a32020-06-29 21:44:41 +0200453 ." contains additional information ... => Aborting\n\tline=$_"
454 if $pfx !~ /^\s*$/ || $sfx !~ /^\s*$/;
455
Akronf57ed812020-07-27 10:37:52 +0200456 } elsif ( m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$# ){
Peter Harders6f526a32020-06-29 21:44:41 +0200457
Akronf57ed812020-07-27 10:37:52 +0200458 # ~ start of header ~
459 $pfx = $1;
460 my $content = "$2\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200461
Akrone19aa3e2020-07-27 11:41:27 +0200462 die "ERROR ($0): main(): input line number $.: line with opening header tag"
Peter Harders6f526a32020-06-29 21:44:41 +0200463 ." is not in expected format ... => Aborting\n\tline=$_"
464 if $pfx !~ /^\s*$/;
Peter Hardersd892a582020-02-12 15:45:22 +0100465
Akronf57ed812020-07-27 10:37:52 +0200466 # Parse header
467 my $header = KorAP::XML::TEI::Header->new($content)->parse($input_fh);
468
469 # Header was parseable
470 if ($header) {
471
472 # Write header to zip
473 my $file = $_root_dir . $header->dir . '/' . $_header_file;
474
475 print STDERR "DEBUG ($0): Writing file $file\n" if $_DEBUG;
476
477 $header->to_zip($zipper->new_stream($file));
478
479 # Header is for text level
480 if ($header->type eq 'text') {
481
482 # Remember dir and sigles
483 $dir = $header->dir;
484 $text_id = $header->id;
485 $text_id_esc = $header->id_esc;
486
487 # log output for seeing progression
488 print STDERR "$0: main(): text_id=".decode_utf8( $text_id )."\n";
489
490 $tl = 0; # reset (needed for ~ whitespace handling ~)
491 };
492 }
493 }
Peter Harders6f526a32020-06-29 21:44:41 +0200494 } #end: while
Peter Hardersd892a582020-02-12 15:45:22 +0100495
Akron85717512020-07-08 11:19:19 +0200496 $zipper->close;
Peter Harders6f526a32020-06-29 21:44:41 +0200497
Akron8b511f92020-07-09 17:28:08 +0200498 if( $_GEN_TOK_EXT ){
499 $ext_tok->close;
Peter Hardersd892a582020-02-12 15:45:22 +0100500 }
Peter Hardersd892a582020-02-12 15:45:22 +0100501
Peter Harders41c35622020-07-12 01:16:22 +0200502} # end: sub main
Peter Hardersd892a582020-02-12 15:45:22 +0100503
Peter Hardersd892a582020-02-12 15:45:22 +0100504
Peter Harders41c35622020-07-12 01:16:22 +0200505sub retr_info { # called from main()
Peter Hardersd892a582020-02-12 15:45:22 +0100506
Peter Harders41c35622020-07-12 01:16:22 +0200507 # Notes on how 'XML::CompactTree::XS' works
Peter Harders6f526a32020-06-29 21:44:41 +0200508 #
Peter Harders41c35622020-07-12 01:16:22 +0200509 # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node>
Peter Harders6f526a32020-06-29 21:44:41 +0200510 #
Peter Harders41c35622020-07-12 01:16:22 +0200511 # Print out name of 'node2' for the above example:
512 #
513 # 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"'
514 #
515 # Exploring the structure of $data ( = reference to below array ):
Peter Harders6f526a32020-06-29 21:44:41 +0200516 #
517 # [ 0: XML_READER_TYPE_DOCUMENT,
518 # 1: ?
Peter Harders41c35622020-07-12 01:16:22 +0200519 # 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 +0200520 # 1: 'node'
521 # 2: ?
522 # 3: HASH (attributes)
523 # 4: 1 (line number)
524 # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT
525 # 1: 'node1'
526 # 2: ?
527 # 3: undefined (no attributes)
528 # 4: 1 (line number)
529 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
530 # 1: 'some '
531 # ]
532 # 1: [ 0: XML_READER_TYPE_ELEMENT
533 # 1: 'n'
534 # 2: ?
535 # 3: undefined (no attributes)
536 # 4: 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200537 # 5: undefined (no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200538 # ]
539 # 2: [ 0: XML_READER_TYPE_TEXT
540 # 1: ' text'
541 # ]
542 # ]
543 # ]
544 # 1: [ 0: XML_READER_TYPE_ELEMENT
545 # 1: 'node2'
546 # 2: ?
547 # 3: undefined (not attributes)
548 # 4: 1 (line number)
549 # 5: [ 0: [ 0: XML_READER_TYPE_TEXT
550 # 1: 'more-text'
551 # ]
552 # ]
553 # ]
554 # ]
555 # ]
556 # ]
557 # ]
558 #
559 # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT)
560 #
561 # ref($data->[2]) == ARRAY (with 1 element for 'node')
562 # ref($data->[2]->[0]) == ARRAY (with 6 elements)
563 #
564 # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
565 # $data->[2]->[0]->[1] == 'node'
566 # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v')
567 # $data->[2]->[0]->[4] == 1 (line number)
568 # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2')
Peter Harders41c35622020-07-12 01:16:22 +0200569 # # child-nodes of actual node (see $_IDX)
Peter Harders6f526a32020-06-29 21:44:41 +0200570 #
571 # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements)
572 # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
573 # $data->[2]->[0]->[5]->[0]->[1] == 'node1'
574 # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute)
575 # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number)
576 # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text')
577 #
578 # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements)
579 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
580 # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some '
581 #
582 # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements)
583 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT)
584 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n'
585 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute)
586 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number)
Peter Harders41c35622020-07-12 01:16:22 +0200587 # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes)
Peter Harders6f526a32020-06-29 21:44:41 +0200588 #
589 # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements)
590 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT)
591 # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text'
592 #
593 #
594 # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example.
595 # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to
596 # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]).
Peter Hardersd892a582020-02-12 15:45:22 +0100597
Peter Harders41c35622020-07-12 01:16:22 +0200598
Peter Harders6f526a32020-06-29 21:44:41 +0200599 $rl++; # recursion level (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY)
Peter Hardersd892a582020-02-12 15:45:22 +0100600
Peter Hardersd892a582020-02-12 15:45:22 +0100601
Peter Harders6f526a32020-06-29 21:44:41 +0200602 foreach $e ( @{${$_[0]}} ){ # iteration through all array elements ($_[0] is a reference to an array reference)
Peter Hardersd892a582020-02-12 15:45:22 +0100603
Peter Hardersd892a582020-02-12 15:45:22 +0100604
Peter Harders41c35622020-07-12 01:16:22 +0200605 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 +0100606
Peter Hardersd892a582020-02-12 15:45:22 +0100607
Peter Harders6f526a32020-06-29 21:44:41 +0200608 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200609 # from here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200610 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100611
Peter Hardersd892a582020-02-12 15:45:22 +0100612
Peter Harders6f526a32020-06-29 21:44:41 +0200613 # insert new array (for new tag) into @structures with tag-name and tag-attributes (if present)
614 # 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 +0100615
Peter Harders6f526a32020-06-29 21:44:41 +0200616 # ~ tag name ~
Peter Hardersd892a582020-02-12 15:45:22 +0100617
Peter Harders6f526a32020-06-29 21:44:41 +0200618 $n = $e->[1];
Peter Hardersd892a582020-02-12 15:45:22 +0100619
Peter Hardersd892a582020-02-12 15:45:22 +0100620
Peter Harders6f526a32020-06-29 21:44:41 +0200621 # ~ handle structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100622
Peter Harders6f526a32020-06-29 21:44:41 +0200623 my @array;
624 push @array, $n;
625 push @structures, \@array;
626 push @oti, $#structures; # add highest index of @structures to @oti
Peter Hardersd892a582020-02-12 15:45:22 +0100627
Peter Hardersd892a582020-02-12 15:45:22 +0100628
Peter Harders6f526a32020-06-29 21:44:41 +0200629 # ~ handle tokens ~
Peter Hardersd892a582020-02-12 15:45:22 +0100630
Peter Harders6f526a32020-06-29 21:44:41 +0200631 $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 +0100632
Peter Harders6f526a32020-06-29 21:44:41 +0200633 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100634
Peter Harders6f526a32020-06-29 21:44:41 +0200635 my @array2;
636 push @array2, $n;
637 push @tokens, \@array2;
638 push @oti2, $#tokens;
639 }
Peter Hardersd892a582020-02-12 15:45:22 +0100640
Peter Hardersd892a582020-02-12 15:45:22 +0100641
Peter Harders6f526a32020-06-29 21:44:41 +0200642 # ~ handle attributes ~
Peter Hardersd892a582020-02-12 15:45:22 +0100643
Peter Harders6f526a32020-06-29 21:44:41 +0200644 if ( defined $e->[3] ){ # only if attributes exist
Peter Hardersd892a582020-02-12 15:45:22 +0100645
Peter Harders6f526a32020-06-29 21:44:41 +0200646 for ( $c = 0; $c < @{$e->[3]}; $c += 2 ){ # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form
647 # [ name1, value1, name2, value2, ....] of attribute names and corresponding values.
648 # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html)
Peter Hardersd892a582020-02-12 15:45:22 +0100649
Peter Harders6f526a32020-06-29 21:44:41 +0200650 # '$c' references the 'key' and '$c+1' the 'value'
651 push @{$structures[$#structures]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
Peter Hardersd892a582020-02-12 15:45:22 +0100652
Peter Harders6f526a32020-06-29 21:44:41 +0200653 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
Peter Hardersd892a582020-02-12 15:45:22 +0100654
Peter Harders6f526a32020-06-29 21:44:41 +0200655 push @{$tokens[$#tokens]}, ${$e->[3]}[$c], ${$e->[3]}[$c+1];
656 }
657
658 }
659 }
660
661
662 # ~ index 'from' ~
663
664 # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts
665
Peter Harders41c35622020-07-12 01:16:22 +0200666 push @{$structures[$#structures]}, ( $dl + $add_one ); # see below (text- and whitespace-nodes) for explanation on '$add_one'
Peter Harders6f526a32020-06-29 21:44:41 +0200667
668 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
669
670 push @{$tokens[$#tokens]}, ( $dl + $add_one );
671 }
672
673
674 #~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200675 # until here: tag-node (opening)
Peter Harders6f526a32020-06-29 21:44:41 +0200676 #~~~~
677
678
679 # ~~ RECURSION ~~
680
Peter Harders41c35622020-07-12 01:16:22 +0200681 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 +0200682
Peter Harders41c35622020-07-12 01:16:22 +0200683 retr_info( \$e->[$_IDX] ); # recursion with array of child-nodes
Peter Harders6f526a32020-06-29 21:44:41 +0200684
685 $rl--; # return from recursion
686 }
687
688
689 #~~~~~
Peter Harders41c35622020-07-12 01:16:22 +0200690 # from here: tag-node (closing)
Peter Harders6f526a32020-06-29 21:44:41 +0200691 #~~~~~
692
693
694 # ~ handle structures ~
695
696 {
697 my $ix = pop @oti; # index of just closed tag
698
699 my $aix = $#{$structures[$ix]}; # determine highest index from 'array referring to last closed tag' ...
700
701 $fval = ${$structures[$ix]}[ $aix ]; # ... and get it's from-value
702
703 if ( $fval > 0 && not exists $ws{ $fval - 1 } ){ # ~ whitespace related issue ~
704
Peter Harders41c35622020-07-12 01:16:22 +0200705 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200706
Peter Harders41c35622020-07-12 01:16:22 +0200707 ${$structures[$ix]}[ $aix ] = $fval - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200708 }
709
710 # in case this fails, check input
711 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@structures: from-value ($fval) is 2 or more greater"
712 ." than to-value ($dl) => please check. aborting ...\n"
713 if ( $fval - 1 ) > $dl;
714
Peter Harders41c35622020-07-12 01:16:22 +0200715 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200716 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
717 # 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 +0200718 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200719 ${$structures[$ix]}[ $aix ] = $dl if $fval == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
720
721 push @{$structures[$ix]}, $dl, $rl; # to-value and recursion-level
722
723 # note: use $dl, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o'))
724 }
725
726
727 # ~ handle tokens ~
728
729
730 if ( $_TOKENS_PROC && $inside_tokens_tag == $rl ){
731
732 my $ix = pop @oti2;
733
734 my $aix = $#{$tokens[$ix]};
735
736 $fval2 = ${$tokens[$ix]}[ $aix ]; # from-value
737
738 if( $fval2 > 0 && not exists $ws{ $fval2 - 1 } ){ # ~ whitespace related issue ~
739
Peter Harders41c35622020-07-12 01:16:22 +0200740 # ~ previous node was a text-node ~
Peter Harders6f526a32020-06-29 21:44:41 +0200741
Peter Harders41c35622020-07-12 01:16:22 +0200742 ${$tokens[$ix]}[ $aix ] = $fval2 - 1; # recorrect from-value (see below: Notes on ~ whitespace related issue ~)
Peter Harders6f526a32020-06-29 21:44:41 +0200743 }
744
745 # in case this fails, check input
746 die "ERROR ($0, retr_info()): text_id='$text_id', processing of \@tokens: from-value ($fval2) is 2 or more greater"
747 ." than to-value ($dl) => please check. aborting ...\n"
748 if ( $fval2 - 1 ) > $dl;
749
Peter Harders41c35622020-07-12 01:16:22 +0200750 # TODO: find example for which this case applies
Peter Harders6f526a32020-06-29 21:44:41 +0200751 # maybe this is not necessary anymore, because the above recorrection of the from-value suffices
752 # 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 +0200753 # do testing with bigger corpus excerpt (wikipedia?)
Peter Harders6f526a32020-06-29 21:44:41 +0200754 ${$tokens[$ix]}[ $aix ] = $dl if $fval2 == $dl + 1; # correct from-value (same as ... if $fval-1 == $dl)
755
756 push @{$tokens[$ix]}, $dl, $rl; # to-value and recursion-level
757
758 $inside_tokens_tag = -1; # reset
759 }
760
761 # ~ whitespace related issue ~
Peter Hardersd892a582020-02-12 15:45:22 +0100762 # clean up
Peter Harders6f526a32020-06-29 21:44:41 +0200763 delete $ws{ $fval - 1 } if $fval > 0 && exists $ws{ $fval - 1 };
764 delete $ws{ $fval2 - 1 } if $_TOKENS_PROC && $fval2 > 0 && exists $ws{ $fval2 - 1 };
Peter Hardersd892a582020-02-12 15:45:22 +0100765
766
Peter Harders41c35622020-07-12 01:16:22 +0200767 #~~~~
768 # until here: tag-node (closing)
769 #~~~~
Peter Hardersd892a582020-02-12 15:45:22 +0100770
771
Peter Harders41c35622020-07-12 01:16:22 +0200772 #~~~~~
773 # from here: text- and whitespace-nodes
774 #~~~~~
775
776 # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type
777 # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'.
Peter Harders6f526a32020-06-29 21:44:41 +0200778 #
Peter Harders41c35622020-07-12 01:16:22 +0200779 # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between
780 # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14'
781 # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'):
Peter Harders6f526a32020-06-29 21:44:41 +0200782 #
Peter Harders41c35622020-07-12 01:16:22 +0200783 # 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 +0100784
Peter Harders6f526a32020-06-29 21:44:41 +0200785 } elsif ( $e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
Peter Hardersd892a582020-02-12 15:45:22 +0100786
Peter Harders41c35622020-07-12 01:16:22 +0200787 # Notes on ~ whitespace related issue ~ (referred to the code fragment below)
Peter Harders6f526a32020-06-29 21:44:41 +0200788 #
Peter Harders41c35622020-07-12 01:16:22 +0200789 # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...'
Peter Harders6f526a32020-06-29 21:44:41 +0200790 #
791 # 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 +0200792 # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]).
Peter Harders6f526a32020-06-29 21:44:41 +0200793 #
Peter Harders41c35622020-07-12 01:16:22 +0200794 # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag,
795 # 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 +0200796 #
Peter Harders41c35622020-07-12 01:16:22 +0200797 # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment
798 # 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 +0200799 #
Peter Harders41c35622020-07-12 01:16:22 +0200800 # 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.
801 # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before
802 # 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
803 # the last read 'non-tag'-node has to be corrected (see [1]),
Peter Harders6f526a32020-06-29 21:44:41 +0200804 #
Peter Harders41c35622020-07-12 01:16:22 +0200805 # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no
806 # 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 +0200807 #
Peter Harders41c35622020-07-12 01:16:22 +0200808 # [1]
809 # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)?
810 # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag
811 # (see above code fragment '... not exists $ws{ $fval - 1 } ...').
Peter Harders6f526a32020-06-29 21:44:41 +0200812 #
Peter Harders41c35622020-07-12 01:16:22 +0200813 # [2]
814 # 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
815 # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE).
Peter Harders6f526a32020-06-29 21:44:41 +0200816 #
Peter Harders41c35622020-07-12 01:16:22 +0200817 # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention
818 # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug?
Peter Harders6f526a32020-06-29 21:44:41 +0200819 #
Peter Harders41c35622020-07-12 01:16:22 +0200820 # 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-
821 # 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 +0200822
823 if( $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE ){
824
Peter Harders41c35622020-07-12 01:16:22 +0200825 # ~ whitespace-node ~
826
827 # ~ whitespace related issue ~
Peter Harders6f526a32020-06-29 21:44:41 +0200828
829 $add_one = 0;
830
Peter Harders41c35622020-07-12 01:16:22 +0200831 $ws{ $dl }++; # state, that this from-index belongs to a whitespace-node
832 # ('++' doesn't mean a thing here - maybe it could be used for a consistency check)
Peter Harders6f526a32020-06-29 21:44:41 +0200833
834 }else{
835
836 # ~ text-node ~
837
838 $add_one = 1;
839 }
840
841
842 # ~ update $data and $dl ~
843
844 $data .= $e->[1];
845
846 $dl += length( $e->[1] ); # update length of $data
847
848
Peter Harders41c35622020-07-12 01:16:22 +0200849 #~~~~~
850 # until here: text- and whitespace-nodes
851 #~~~~~
852
853
854 #elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node
Peter Harders6f526a32020-06-29 21:44:41 +0200855 # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above )
856
857
858 }else{ # not yet handled type
859
860 die "ERROR ($0): Not yet handled type (\$e->[0]=".$e->[0].") ... => Aborting\n";
861 }
862
863 } # end: foreach iteration
864
865} # end: sub retr_info
866
867
Peter Harders41c35622020-07-12 01:16:22 +0200868sub write_structures { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200869
870 # ~ write @structures ~
Peter Hardersd892a582020-02-12 15:45:22 +0100871
872 #print STDERR "$0: write_structures(): ...\n";
873
Peter Harders6f526a32020-06-29 21:44:41 +0200874 if ( $dir eq "" ){
875
876 print STDERR "WARNING ($0): write_structures(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100877 return;
878 }
879
Peter Harders6f526a32020-06-29 21:44:41 +0200880 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
881 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
882 .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 +0100883
884 $c = 0;
885
Peter Harders6f526a32020-06-29 21:44:41 +0200886 foreach $ref ( @structures ){
Peter Hardersd892a582020-02-12 15:45:22 +0100887
Peter Harders6f526a32020-06-29 21:44:41 +0200888 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 ); # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4
889 # (name, from, to, rec_level), otherwise >4
Peter Hardersd892a582020-02-12 15:45:22 +0100890
Peter Harders6f526a32020-06-29 21:44:41 +0200891 # 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 )
892
893 if( $#structures == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
894
895 ${$ref}[$idx] = ${$ref}[ $idx+1 ];
Peter Hardersd892a582020-02-12 15:45:22 +0100896 }
Peter Hardersd892a582020-02-12 15:45:22 +0100897
Peter Harders6f526a32020-06-29 21:44:41 +0200898 # this consistency check is already done in 'retr_info()'
899 #elsif( ${$ref}[$idx] > ${$ref}[$idx+1] ){ # consistency check: abort, if this doesn't hold
900 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
901 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n";
902 # die "ERROR ($0: write_structures(): \$text_id=$text_id, \$c=$c, tag-name=${$ref}[0]):"
903 # ." 'from-index=${$ref}[$idx]' > 'to-index=${$ref}[$idx+1]' => please check! aborting ...\n\n$output" }
Peter Hardersd892a582020-02-12 15:45:22 +0100904
Peter Harders6f526a32020-06-29 21:44:41 +0200905 # at least 'POS' should always be there => remove constraint '$_TOKENS_PROC'
906 #if( $_TOKENS_PROC && ${$ref}[0] ne $_TOKENS_TAG )
Peter Hardersd892a582020-02-12 15:45:22 +0100907
Peter Harders6f526a32020-06-29 21:44:41 +0200908 if( ${$ref}[0] ne $_TOKENS_TAG ){ # $_TOKENS_TAG is already written in 'write_tokens'
Peter Hardersd892a582020-02-12 15:45:22 +0100909
Peter Harders6f526a32020-06-29 21:44:41 +0200910 # l (level): insert information about depth of element in XML-tree (top element = level 1)
911 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
912 ." <fs type=\"struct\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
913 ." <f name=\"name\">${$ref}[ 0 ]</f>\n";
914
915 if ( $idx > 2 ) # attributes
916 {
917 $output .= " <f name=\"attr\">\n <fs type=\"attr\">\n";
918
919 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
920
921 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # see explanation in func. 'write_tokens'
922
923 # attribute (at index $att_idx) with value (at index $att_idx+1)
924 $output .= " <f name=\"${$ref}[ $att_idx ]\">${$ref}[ $att_idx+1 ]</f>\n";
925 }
926
927 $output .= " </fs>\n </f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100928 }
929
Peter Harders6f526a32020-06-29 21:44:41 +0200930 $output .= " </fs>\n </span>\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100931
Peter Harders6f526a32020-06-29 21:44:41 +0200932 } # fi: ... ne $_TOKENS_TAG
Peter Hardersd892a582020-02-12 15:45:22 +0100933
934 $c++;
935
Peter Harders6f526a32020-06-29 21:44:41 +0200936 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +0100937
938 $output .= " </spanList>\n</layer>";
939
Peter Harders6f526a32020-06-29 21:44:41 +0200940 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +0100941
Akron85717512020-07-08 11:19:19 +0200942 $zipper->new_stream("$_root_dir$dir/$_structure_dir/$_structure_file")
943 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +0100944
945 #print STDERR "$0: write_structures(): DONE\n";
Peter Harders6f526a32020-06-29 21:44:41 +0200946
Peter Hardersd892a582020-02-12 15:45:22 +0100947} # end: sub write_structures
948
949
Peter Harders41c35622020-07-12 01:16:22 +0200950sub write_tokens { # called from main()
Peter Harders6f526a32020-06-29 21:44:41 +0200951
952 # ~ write @tokens ~
953
954 #print STDERR "$0: write_tokens(): ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100955
956 if( $dir eq "" ){
Peter Harders6f526a32020-06-29 21:44:41 +0200957
958 print STDERR "WARNING ($0): write_tokens(): empty textSigle => nothing to do ...\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100959 return;
960 }
961
Peter Harders6f526a32020-06-29 21:44:41 +0200962 $output = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<?xml-model href=\"span.rng\" type=\"application/xml\""
963 ." schematypens=\"http://relaxng.org/ns/structure/1.0\"?>\n\n<layer docid=\""
964 .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 +0100965
966 $c = 0;
967
Peter Harders6f526a32020-06-29 21:44:41 +0200968 foreach $ref ( @tokens ){
Peter Hardersd892a582020-02-12 15:45:22 +0100969
Peter Harders6f526a32020-06-29 21:44:41 +0200970 # if array '@{$ref}' doesn't contain attributes, then the number of elements in this array is 4 (name, from, to, rec_level), otherwise >4
971 ( @{$ref} == 4 )?( $idx = 1 ):( $idx = @{$ref}-3 );
Peter Hardersd892a582020-02-12 15:45:22 +0100972
Peter Harders6f526a32020-06-29 21:44:41 +0200973 # 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())
974 if ( $#tokens == $c && ${$ref}[ $idx ] == ${$ref}[ $idx+1 ] + 1 ){
975
976 ${$ref}[ $idx ] = ${$ref}[ $idx+1 ]; # TODO: check
Peter Hardersd892a582020-02-12 15:45:22 +0100977 }
Peter Hardersd892a582020-02-12 15:45:22 +0100978
Peter Harders6f526a32020-06-29 21:44:41 +0200979 # l (level): insert information about depth of element in XML-tree (top element = level 1)
980 $output .= " <span id=\"s$c\" from=\"${$ref}[ $idx ]\" to=\"${$ref}[ $idx+1 ]\" l=\"${$ref}[ $idx+2 ]\">\n"
981 ." <fs type=\"lex\" xmlns=\"http://www.tei-c.org/ns/1.0\">\n"
982 ." <f name=\"lex\">\n";
Peter Hardersd892a582020-02-12 15:45:22 +0100983
Peter Harders6f526a32020-06-29 21:44:41 +0200984 if ( $idx > 2 ){ # attributes
985
Peter Hardersd892a582020-02-12 15:45:22 +0100986 $output .= " <fs>\n";
987
Peter Harders6f526a32020-06-29 21:44:41 +0200988 for ( $att_idx = 1; $att_idx < $idx; $att_idx += 2 ){
Peter Hardersd892a582020-02-12 15:45:22 +0100989
Peter Harders6f526a32020-06-29 21:44:41 +0200990 ${$ref}[ $att_idx+1 ] =~ s/(&|<|>)/$ent{$1}/g; # ... <w lemma="&gt;" ana="PUNCTUATION">&gt;</w> ...
991 # the '&gt;' is translated to '>' and hence the result would be '<f name="lemma">></f>'
Peter Hardersd892a582020-02-12 15:45:22 +0100992
Peter Harders6f526a32020-06-29 21:44:41 +0200993 if ( $_INLINE_ANNOT && ${$ref}[ $att_idx ] eq "$_INLINE_ATT_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +0100994
Peter Harders6f526a32020-06-29 21:44:41 +0200995 ${$ref}[ $att_idx+1 ] =~ /^([^ ]+)(?: (.+))?$/;
996
997 die "ERROR (write_tokens()): unexpected format! => Aborting ... (att: ${$ref}[ $att_idx+1 ])\n"
998 if ( $_INLINE_POS_WR && not defined $1 ) || ( $_INLINE_MSD_WR && not defined $2 );
999
1000 if ( "$_INLINE_POS_WR" ){
1001
1002 $output .= " <f name=\"$_INLINE_POS_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001003 $output .= "$1" if defined $1;
1004 $output .= "</f>\n";
1005 }
Peter Harders6f526a32020-06-29 21:44:41 +02001006
1007 if ( "$_INLINE_MSD_WR" ){
1008
1009 $output .= " <f name=\"$_INLINE_MSD_WR\">";
Peter Hardersd892a582020-02-12 15:45:22 +01001010 $output .= "$2" if defined $2;
1011 $output .= "</f>\n";
1012 }
1013
Peter Harders6f526a32020-06-29 21:44:41 +02001014 } elsif ( $_INLINE_ANNOT && "$_INLINE_LEM_RD" && ${$ref}[ $att_idx ] eq "$_INLINE_LEM_RD" ){
Peter Hardersd892a582020-02-12 15:45:22 +01001015
Peter Harders6f526a32020-06-29 21:44:41 +02001016 $output .= " <f name=\"$_INLINE_LEM_WR\">${$ref}[ $att_idx+1 ]</f>\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001017
Peter Harders6f526a32020-06-29 21:44:41 +02001018 } else { # all other attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001019
Peter Harders6f526a32020-06-29 21:44:41 +02001020 $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 +01001021 }
1022
Peter Harders6f526a32020-06-29 21:44:41 +02001023 } # end: for
Peter Hardersd892a582020-02-12 15:45:22 +01001024
1025 $output .= " </fs>\n";
Peter Harders6f526a32020-06-29 21:44:41 +02001026
1027 } # fi: attributes
Peter Hardersd892a582020-02-12 15:45:22 +01001028
1029 $output .= " </f>\n </fs>\n </span>\n";
1030
1031 $c++;
1032
Peter Harders6f526a32020-06-29 21:44:41 +02001033 } # end: foreach
Peter Hardersd892a582020-02-12 15:45:22 +01001034
1035 $output .= " </spanList>\n</layer>";
1036
Peter Harders6f526a32020-06-29 21:44:41 +02001037 $output = encode_utf8( $output );
Peter Hardersd892a582020-02-12 15:45:22 +01001038
Akron85717512020-07-08 11:19:19 +02001039 $zipper->new_stream("$_root_dir$dir/$_tokens_dir/$_tokens_file")
1040 ->print($output);
Peter Hardersd892a582020-02-12 15:45:22 +01001041
Peter Harders6f526a32020-06-29 21:44:41 +02001042 #print STDERR "$0: write_tokens(): DONE\n";
Peter Hardersd892a582020-02-12 15:45:22 +01001043
Peter Harders6f526a32020-06-29 21:44:41 +02001044} # end: sub write_tokens
Peter Hardersd892a582020-02-12 15:45:22 +01001045
Peter Hardersd892a582020-02-12 15:45:22 +01001046
Akrond949e182020-02-14 12:23:57 +01001047__END__
1048
1049=pod
1050
1051=encoding utf8
1052
1053=head1 NAME
1054
1055tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML
1056
1057=head1 SYNOPSIS
1058
1059 cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip
1060
1061=head1 DESCRIPTION
1062
Akronee434b12020-07-08 12:53:01 +02001063C<tei2korapxml> is a script to convert TEI P5 and
1064L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html>
1065based documents to the
1066L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>.
1067If no specific input is defined, data is
Akrond949e182020-02-14 12:23:57 +01001068read from C<STDIN>. If no specific output is defined, data is written
1069to C<STDOUT>.
Peter Harders6f526a32020-06-29 21:44:41 +02001070
Akrond949e182020-02-14 12:23:57 +01001071This program is usually called from inside another script.
1072
Akronee434b12020-07-08 12:53:01 +02001073=head1 FORMATS
1074
1075=head2 Input restrictions
1076
1077=over 2
1078
1079=item
1080
1081utf8 encoded
1082
1083=item
1084
1085TEI P5 formatted input with certain restrictions:
1086
1087=over 4
1088
1089=item
1090
1091B<mandatory>: text-header with integrated textsigle, text-body
1092
1093=item
1094
1095B<optional>: corp-header with integrated corpsigle,
1096doc-header with integrated docsigle
1097
1098=back
1099
1100=item
1101
1102all tokens inside the primary text (inside $data) may not be
1103newline seperated, because newlines are removed
1104(see code section C<~ inside text body ~>) and a conversion of newlines
1105into blanks between 2 tokens could lead to additional blanks,
1106where there should be none (e.g.: punctuation characters like C<,> or
1107C<.> should not be seperated from their predecessor token).
1108(see also code section C<~ whitespace handling ~>).
1109
1110=back
1111
1112=head2 Notes on the output
1113
1114=over 2
1115
1116=item
1117
1118zip file output (default on C<stdout>) with utf8 encoded entries
1119(which together form the KorAP-XML format)
1120
1121=back
1122
Akrond949e182020-02-14 12:23:57 +01001123=head1 INSTALLATION
1124
1125C<tei2korapxml> requires L<libxml2-dev> bindings to build. When
1126these bindings are available, the preferred way to install the script is
1127to use L<cpanm|App::cpanminus>.
1128
1129 $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git
1130
1131In case everything went well, the C<tei2korapxml> tool will
1132be available on your command line immediately.
Peter Harders6f526a32020-06-29 21:44:41 +02001133
Akrond949e182020-02-14 12:23:57 +01001134Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16.
1135
1136=head1 OPTIONS
1137
1138=over 2
1139
1140=item B<--base|-b>
1141
1142The base directory for output. Defaults to C<.>.
1143
1144=item B<--help|-h>
1145
1146Print help information.
1147
1148=item B<--version|-v>
1149
1150Print version information.
1151
1152=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