Akron | 9cb1394 | 2020-02-14 07:39:54 +0100 | [diff] [blame] | 1 | #!/usr/bin/env perl |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 2 | use strict; |
| 3 | use warnings; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 4 | |
Akron | 3378dfd | 2020-08-01 15:01:36 +0200 | [diff] [blame] | 5 | use Log::Any '$log'; |
| 6 | use Log::Any::Adapter; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 7 | use Pod::Usage; |
| 8 | use Getopt::Long qw(GetOptions :config no_auto_abbrev); |
| 9 | |
| 10 | use File::Basename qw(dirname); |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 11 | |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 12 | use Encode qw(decode); |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 13 | |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 14 | use XML::CompactTree::XS; |
| 15 | use XML::LibXML::Reader; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 16 | |
Akron | 4f67cd4 | 2020-07-02 12:27:58 +0200 | [diff] [blame] | 17 | use FindBin; |
| 18 | BEGIN { |
| 19 | unshift @INC, "$FindBin::Bin/../lib"; |
| 20 | }; |
| 21 | |
Marc Kupietz | 8a954e5 | 2021-02-16 22:03:07 +0100 | [diff] [blame] | 22 | use KorAP::XML::TEI qw!remove_xml_comments replace_entities!; |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 23 | use KorAP::XML::TEI::Tokenizer::External; |
Akron | d962747 | 2020-07-09 16:53:09 +0200 | [diff] [blame] | 24 | use KorAP::XML::TEI::Tokenizer::Conservative; |
| 25 | use KorAP::XML::TEI::Tokenizer::Aggressive; |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 26 | use KorAP::XML::TEI::Annotations::Collector; |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 27 | use KorAP::XML::TEI::Data; |
Akron | 8571751 | 2020-07-08 11:19:19 +0200 | [diff] [blame] | 28 | use KorAP::XML::TEI::Zipper; |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 29 | use KorAP::XML::TEI::Header; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 30 | |
Marc Kupietz | 1e882fb | 2020-09-09 00:05:46 +0200 | [diff] [blame] | 31 | eval { |
| 32 | require KorAP::XML::TEI::Tokenizer::KorAP; |
| 33 | 1; |
| 34 | }; |
Peter Harders | 1c5ce15 | 2020-07-22 18:02:50 +0200 | [diff] [blame] | 35 | |
Akron | f7084c4 | 2021-01-07 10:25:22 +0100 | [diff] [blame] | 36 | our $VERSION = '0.03'; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 37 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 38 | our $VERSION_MSG = "\ntei2korapxml - v$VERSION\n"; |
| 39 | |
Akron | b364947 | 2020-09-29 08:24:46 +0200 | [diff] [blame] | 40 | # Set to 1 for minimal more debug output (no need to be parametrized) |
| 41 | use constant DEBUG => $ENV{KORAPXMLTEI_DEBUG} // 0; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 42 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 43 | # Parse options from the command line |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 44 | GetOptions( |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 45 | "root|r=s" => \(my $_root_dir = '.'), # name of root directory inside zip file |
| 46 | "input|i=s" => \(my $input_fname = ''), # input file (yet only TEI I5 Format accepted) |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 47 | 'tokenizer-call|tc=s' => \(my $tokenizer_call), # Temporary argument for testing purposes |
Marc Kupietz | 1e882fb | 2020-09-09 00:05:46 +0200 | [diff] [blame] | 48 | 'tokenizer-korap|tk' => \(my $tokenizer_korap), # use KorAP-tokenizer |
Akron | 6d7b8e4 | 2020-09-29 07:37:41 +0200 | [diff] [blame] | 49 | 'tokenizer-internal|ti' => \(my $tokenizer_intern), # use intern tokenization (default = no) |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 50 | 'use-tokenizer-sentence-splits|s' => (\my $use_tokenizer_sentence_splits), # use KorAP tokenizer to split s (default=no) |
Akron | 3378dfd | 2020-08-01 15:01:36 +0200 | [diff] [blame] | 51 | 'log|l=s' => \(my $log_level = 'notice'), |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 52 | 'help|h' => sub { |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 53 | pod2usage( |
| 54 | -verbose => 99, |
| 55 | -sections => 'NAME|DESCRIPTION|SYNOPSIS|ARGUMENTS|OPTIONS', |
| 56 | -msg => $VERSION_MSG, |
| 57 | -output => '-' |
| 58 | ) |
| 59 | }, |
| 60 | 'version|v' => sub { |
| 61 | pod2usage( |
| 62 | -verbose => 0, |
| 63 | -msg => $VERSION_MSG, |
| 64 | -output => '-' |
| 65 | ) |
| 66 | } |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 67 | ); |
| 68 | |
Marc Kupietz | 44b1f25 | 2020-11-26 16:31:40 +0100 | [diff] [blame] | 69 | binmode(STDERR, ":encoding(UTF-8)"); |
Akron | 3378dfd | 2020-08-01 15:01:36 +0200 | [diff] [blame] | 70 | Log::Any::Adapter->set('Stderr', log_level => $log_level); |
| 71 | |
Akron | b364947 | 2020-09-29 08:24:46 +0200 | [diff] [blame] | 72 | $log->notice('Debugging is activated') if DEBUG; |
| 73 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 74 | # |
| 75 | # ~~~ parameter (mandatory) ~~~ |
| 76 | # |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 77 | my $_TEXT_BODY = "text"; # tag (without attributes), which contains the primary text |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 78 | # optional |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 79 | my $_CORP_HEADER_BEG = "idsHeader type=\"corpus\""; # just keep the correct order of the attributes and evtl. add an '.*' between them |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 80 | # optional |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 81 | my $_DOC_HEADER_BEG = "idsHeader type=\"document\""; # analog |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 82 | # mandatory |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 83 | my $_TEXT_HEADER_BEG = "idsHeader type=\"text\""; # analog |
Akron | 09e0b2c | 2020-07-28 15:57:01 +0200 | [diff] [blame] | 84 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 85 | # |
| 86 | # ~~~ constants ~~~ |
| 87 | # |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 88 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 89 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 90 | ## extern tokenization |
Marc Kupietz | 1e882fb | 2020-09-09 00:05:46 +0200 | [diff] [blame] | 91 | my $_GEN_TOK_EXT = $tokenizer_call || $tokenizer_korap ? 1 : 0; |
| 92 | |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 93 | if ($use_tokenizer_sentence_splits && !$tokenizer_korap) { |
| 94 | die $log->fatal("Sentence splitting is currently only supported by KorAP tokenizer (use -tk to activate it"); |
| 95 | } |
| 96 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 97 | my $ext_tok; |
| 98 | if ($tokenizer_call) { |
| 99 | $ext_tok = KorAP::XML::TEI::Tokenizer::External->new($tokenizer_call); |
| 100 | } |
Marc Kupietz | 1e882fb | 2020-09-09 00:05:46 +0200 | [diff] [blame] | 101 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 102 | elsif ($tokenizer_korap) { |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 103 | $ext_tok = KorAP::XML::TEI::Tokenizer::KorAP->new($use_tokenizer_sentence_splits); |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 104 | }; |
| 105 | my $_tok_file_ext = "tokens.xml"; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 106 | ## |
| 107 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 108 | |
Akron | 8b511f9 | 2020-07-09 17:28:08 +0200 | [diff] [blame] | 109 | ## intern tokenization |
Peter Harders | f9c5124 | 2020-07-21 02:37:44 +0200 | [diff] [blame] | 110 | my $_GEN_TOK_INT = $tokenizer_intern; # simple tokenization (recommended for testing) |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 111 | my $_tok_file_con = "tokens_conservative.xml"; |
| 112 | my $_tok_file_agg = "tokens_aggressive.xml"; |
| 113 | my $aggr_tok = KorAP::XML::TEI::Tokenizer::Aggressive->new; |
| 114 | my $cons_tok = KorAP::XML::TEI::Tokenizer::Conservative->new; |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 115 | ## |
| 116 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 117 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 118 | my $_tok_dir = "base"; # name of directory for storing tokenization files |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 119 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 120 | my $_XCT_LN = 0; # only for debugging: include line numbers in elements of $tree_data |
| 121 | # (see also manpage of XML::CompactTree::XS) |
| 122 | |
| 123 | my $_header_file = "header.xml"; # name of files containing the text, document and corpus header |
| 124 | my $_data_file = "data.xml"; # name of file containing the primary text data (tokens) |
| 125 | my $_structure_dir = "struct"; # name of directory containing the $_structure_file |
| 126 | my $_structure_file = "structure.xml"; # name of file containing all tags (except ${_TOKEN_TAG}'s) related information |
| 127 | # (= their names and byte offsets in $_data) |
| 128 | ## TODO: optional (different annotation tools can produce more zip-files for feeding into KorAP-XML-Krill) |
| 129 | my $_TOKENS_PROC = 1; # on/off: processing of ${_TOKEN_TAG}'s (default: 1) |
| 130 | my $_tokens_dir = "tokens"; # name of directory containing the $_tokens_file |
| 131 | my $_tokens_file = "morpho.xml"; # name of file containing all ${_TOKEN_TAG}'s related information (=their byte offsets in $_data) |
| 132 | # - evtl. with additional inline annotations |
| 133 | my $_TOKENS_TAG = "w"; # name of tag containing all information stored in $_tokens_file |
| 134 | |
| 135 | ## TODO: optional |
| 136 | # handling inline annotations (inside $_TOKENS_TAG) |
Akron | e68ec0c | 2020-07-28 18:06:19 +0200 | [diff] [blame] | 137 | my $_INLINE_ANNOT = $ENV{KORAPXMLTEI_INLINE}?1:0; # on/off: set to 1 if inline annotations are present and should be processed (default: 0) |
Akron | 09e0b2c | 2020-07-28 15:57:01 +0200 | [diff] [blame] | 138 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 139 | |
| 140 | # |
| 141 | # ~~~ variables ~~~ |
| 142 | # |
| 143 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 144 | # Initialize Token- and Structure-Collector |
| 145 | my $tokens = KorAP::XML::TEI::Annotations::Collector->new; |
| 146 | my $structures = KorAP::XML::TEI::Annotations::Collector->new; |
Akron | 09e0b2c | 2020-07-28 15:57:01 +0200 | [diff] [blame] | 147 | |
| 148 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 149 | # Initialize Data-Collector |
| 150 | my $data = KorAP::XML::TEI::Data->new; |
| 151 | |
| 152 | |
Akron | 8571751 | 2020-07-08 11:19:19 +0200 | [diff] [blame] | 153 | # Initialize zipper |
Akron | 3bdc0a3 | 2020-08-03 12:12:56 +0200 | [diff] [blame] | 154 | my $zipper = KorAP::XML::TEI::Zipper->new($_root_dir); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 155 | my $input_fh; # input file handle (default: stdin) |
| 156 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 157 | my $dir; # text directory (below $_root_dir) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 158 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 159 | my ( $text_id, |
| 160 | $text_id_esc ); # '$text_id_esc' = escaped version of $text_id |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 161 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 162 | my ( $reader, # instance of 'XML::LibXML::Reader->new' (on input '$buf_in') |
| 163 | $tree_data ); # instance of 'XML::CompactTree::XS::readSubtreeToPerl' (on input '$reader') |
| 164 | |
| 165 | # these are only used inside recursive function 'retr_info' |
| 166 | my ( $_IDX, # value is set dependent on $_XCT_LN - for extracting array of child elements from element in $tree_data |
| 167 | $e, # element from $tree_data |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 168 | ## variables for handling ~ whitespace related issue ~ (it is sometimes necessary, to correct the from-values for some tags) |
| 169 | $add_one, # ... |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 170 | $fval, # ... |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 171 | %ws); # hash for indices of whitespace-nodes (needed to recorrect from-values) |
| 172 | # idea: when closing element, check if it's from-index minus 1 refers to a whitespace-node |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 173 | # (means: 'from-index - 1' is a key in %ws). |
| 174 | # if this is _not_ the case, then the from-value is one to high => correct it by substracting 1 |
| 175 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 176 | my $c; # index variables used in loops |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 177 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 178 | |
| 179 | # |
| 180 | # ~~~ main ~~~ |
| 181 | # |
| 182 | |
| 183 | # ~ initializations ~ |
| 184 | |
| 185 | ($_XCT_LN)?($_IDX=5):($_IDX=4); |
| 186 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 187 | $fval = 0; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 188 | |
Akron | ec2cef2 | 2020-07-31 10:00:15 +0200 | [diff] [blame] | 189 | # Normalize regex for header parsing |
| 190 | for ($_CORP_HEADER_BEG, |
| 191 | $_DOC_HEADER_BEG, |
| 192 | $_TEXT_HEADER_BEG) { |
| 193 | s!^([^\s]+)(.*)$!$1\[\^>\]*$2!; |
| 194 | }; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 195 | |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 196 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 197 | # ~ read input and write output (text by text) ~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 198 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 199 | my ( $pfx, $sfx ); |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 200 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 201 | my $tl = 0; # text line (needed for whitespace handling) |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 202 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 203 | $input_fh = *STDIN; # input file handle (default: stdin) |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 204 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 205 | # Maybe not necessary |
| 206 | $data->reset; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 207 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 208 | $dir = ""; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 209 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 210 | if ( $input_fname ne '' ){ |
| 211 | unless (open($input_fh, '<', $input_fname)) { |
| 212 | die $log->fatal("File '$input_fname' could not be opened."); |
| 213 | }; |
| 214 | } |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 215 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 216 | # prevents segfaulting of 'XML::LibXML::Reader' inside 'main()' - see notes on 'PerlIO layers' in 'man XML::LibXML') |
| 217 | # removing 'use open qw(:std :utf8)' would fix this problem too, but using binmode on input is more granular |
| 218 | # see in perluniintro: You can switch encodings on an already opened stream by using "binmode() |
| 219 | # see in perlfunc: If LAYER is omitted or specified as ":raw" the filehandle is made suitable for passing binary data. |
| 220 | binmode $input_fh; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 221 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 222 | my $pos; |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 223 | my $input_enc = 'UTF-8'; |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 224 | my $l = length('</' . $_TEXT_BODY) + 1; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 225 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 226 | # ~ loop (reading input document) ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 227 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 228 | MAIN: while ( <$input_fh> ){ |
| 229 | |
| 230 | $_ = remove_xml_comments( $input_fh, $_ ); # remove HTML (multi-line) comments (<!--...-->) |
| 231 | |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 232 | # Set input encoding |
| 233 | if ( index($_, '<?xml') == 0 && $_ =~ /\sencoding=(['"])([^\1]+?)\1/) { |
| 234 | $input_enc = $2; |
| 235 | next; |
| 236 | }; |
| 237 | |
| 238 | $_ = decode($input_enc, $_); |
Marc Kupietz | 8a954e5 | 2021-02-16 22:03:07 +0100 | [diff] [blame] | 239 | $_ = replace_entities($_); |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 240 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 241 | if ( index($_, $_TEXT_BODY) >= 0 && m#^(.*)<${_TEXT_BODY}(?: [^>]*)?>(.*)$# ){ |
| 242 | |
| 243 | # ~ start of text body ~ |
| 244 | |
| 245 | $pfx = $1; |
| 246 | $sfx = $2; |
| 247 | |
| 248 | if ($pfx !~ /^\s*$/ || $sfx !~ /^\s*$/) { |
| 249 | die $log->fatal("input line number $.: " . |
| 250 | "line with opening text-body tag '${_TEXT_BODY}' " . |
| 251 | "contains additional information ... => Aborting (line=$_)"); |
Akron | 0bb7e72 | 2020-09-29 07:48:33 +0200 | [diff] [blame] | 252 | }; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 253 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 254 | # text body data extracted from input document ($input_fh), further processed by XML::LibXML::Reader |
| 255 | my $buf_in = ''; |
Peter Harders | 9015734 | 2020-07-01 21:05:14 +0200 | [diff] [blame] | 256 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 257 | # Iterate over all lines in the text body |
| 258 | while (<$input_fh>) { |
Peter Harders | 9015734 | 2020-07-01 21:05:14 +0200 | [diff] [blame] | 259 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 260 | $_ = remove_xml_comments( $input_fh, $_ ); |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 261 | $_ = decode($input_enc, $_); |
Marc Kupietz | 8a954e5 | 2021-02-16 22:03:07 +0100 | [diff] [blame] | 262 | $_ = replace_entities($_); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 263 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 264 | # ~ end of text body ~ |
| 265 | if (($pos = index($_, '</' . $_TEXT_BODY)) >= 0) { |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 266 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 267 | # 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 Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 268 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 269 | if ((substr($_, 0, $pos) . substr($_, $l + $pos)) !~ /^\s*$/) { |
| 270 | die $log->fatal("input line number $.: " . |
| 271 | "line with closing text-body tag '${_TEXT_BODY}'". |
| 272 | " contains additional information ... => Aborting (line=$_)"); |
| 273 | }; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 274 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 275 | if ($dir ne "") { |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 276 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 277 | $reader = XML::LibXML::Reader->new( string => "<text>$buf_in</text>", huge => 1 ); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 278 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 279 | # ~ whitespace handling ~ |
| 280 | # |
| 281 | # Every whitespace inside the processed text is 'significant' and recognized as a node of type 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE' |
| 282 | # (see function 'retr_info()'). |
| 283 | # |
| 284 | # Definition of significant and insignificant whitespace |
| 285 | # (source: https://www.oracle.com/technical-resources/articles/wang-whitespace.html): |
| 286 | # |
| 287 | # Significant whitespace is part of the document content and should be preserved. |
| 288 | # Insignificant whitespace is used when editing XML documents for readability. |
| 289 | # These whitespaces are typically not intended for inclusion in the delivery of the document. |
| 290 | # |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 291 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 292 | my $param = XCT_DOCUMENT_ROOT | XCT_IGNORE_COMMENTS | XCT_ATTRIBUTE_ARRAY; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 293 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 294 | # _XCT_LINE_NUMBERS is only for debugging |
| 295 | $param |= XCT_LINE_NUMBERS if $_XCT_LN; |
| 296 | $tree_data = XML::CompactTree::XS::readSubtreeToPerl( $reader, $param); |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 297 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 298 | $structures->reset; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 299 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 300 | $tokens->reset if $_TOKENS_PROC; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 301 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 302 | # ~ whitespace related issue ~ |
| 303 | $add_one = 0; |
| 304 | %ws = (); |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 305 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 306 | # ~ recursion ~ |
| 307 | retr_info(1, \$tree_data->[2] ); # parse input data |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 308 | |
Akron | b364947 | 2020-09-29 08:24:46 +0200 | [diff] [blame] | 309 | if (DEBUG) { |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 310 | $log->debug("Writing (utf8-formatted) xml file $dir/$_data_file"); |
Akron | 0bb7e72 | 2020-09-29 07:48:33 +0200 | [diff] [blame] | 311 | }; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 312 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 313 | # ~ write data.xml ~ |
| 314 | $data->to_zip( |
| 315 | $zipper->new_stream("$dir/${_data_file}"), |
| 316 | $text_id_esc |
| 317 | ); |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 318 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 319 | # ~ tokenization ~ |
| 320 | if ($_GEN_TOK_EXT) { |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 321 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 322 | # Tokenize and output |
| 323 | $ext_tok->tokenize($data->data)->to_zip( |
| 324 | $zipper->new_stream("$dir/$_tok_dir/$_tok_file_ext"), |
| 325 | $text_id_esc |
| 326 | ); |
| 327 | }; |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 328 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 329 | if ($_GEN_TOK_INT) { |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 330 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 331 | # Tokenize and output |
| 332 | $cons_tok->tokenize($data->data)->to_zip( |
| 333 | $zipper->new_stream("$dir/$_tok_dir/$_tok_file_con"), |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 334 | $text_id_esc |
| 335 | ); |
Marc Kupietz | 74ed7f3 | 2020-09-09 18:22:07 +0200 | [diff] [blame] | 336 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 337 | $aggr_tok->tokenize($data->data)->to_zip( |
| 338 | $zipper->new_stream("$dir/$_tok_dir/$_tok_file_agg"), |
| 339 | $text_id_esc |
| 340 | ); |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 341 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 342 | $aggr_tok->reset; |
| 343 | $cons_tok->reset; |
| 344 | }; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 345 | |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 346 | if ($use_tokenizer_sentence_splits) { |
| 347 | $ext_tok->sentencize_from_previous_input($structures); |
| 348 | } |
| 349 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 350 | # ~ write structures ~ |
| 351 | if (!$structures->empty) { |
| 352 | $structures->to_zip( |
| 353 | $zipper->new_stream("$dir/$_structure_dir/$_structure_file"), |
| 354 | $text_id_esc, |
| 355 | 2 # = structure serialization |
| 356 | ); |
| 357 | }; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 358 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 359 | # ~ write tokens ~ |
| 360 | if ($_TOKENS_PROC && !$tokens->empty) { |
| 361 | $tokens->to_zip( |
| 362 | $zipper->new_stream("$dir/$_tokens_dir/${_tokens_file}"), |
| 363 | $text_id_esc, |
| 364 | $_INLINE_ANNOT # Either 0 = tokens without inline or 1 = tokens with inline |
| 365 | ); |
| 366 | }; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 367 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 368 | $dir = ""; # reinit. |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 369 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 370 | # Maybe not necessary |
| 371 | $data->reset; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 372 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 373 | } else { # $dir eq "" |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 374 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 375 | $log->warn("Maybe empty textSigle => skipping this text ...\ndata=$data"); |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 376 | } |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 377 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 378 | next MAIN; |
Akron | 598d1a7 | 2020-08-02 17:33:31 +0200 | [diff] [blame] | 379 | }; |
| 380 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 381 | # ~ inside text body ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 382 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 383 | # ~ whitespace handling ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 384 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 385 | # The idea for the below code fragment was to fix (recreate) missing whitespace in a poorly created corpus, in which linebreaks where inserted |
| 386 | # into the text with the addition that maybe (or not) whitespace before those linebreaks was unintenionally stripped. |
| 387 | # |
| 388 | # It soon turned out, that it was best to suggest considering just avoiding linebreaks and putting all primary text tokens into one line (see |
| 389 | # example further down and notes on 'Input restrictions' in the manpage). |
| 390 | # |
| 391 | # Somehow an old first very poor approach remained, which is not stringent, but also doesn't affect one-line text. |
| 392 | # |
| 393 | # 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 |
| 394 | # an option on how newlines in primary text should be handled (stripped or replaced by a whitespace)). |
| 395 | # |
| 396 | # Examples (how primary text with linebreaks would be converted by below code): |
| 397 | # |
| 398 | # '...<w>end</w>\n<w>.</w>...' -> '...<w>end</w> <w>.</w>...' |
| 399 | # '...<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 Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 400 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 401 | s/^\s+//; s/\s+$//; # remove consecutive whitespace at beginning and end (mostly one newline) |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 402 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 403 | ### NOTE: this is only relevant, if a text consists of more than one line |
| 404 | ### TODO: find a better solution, or create a warning, if a text has more than one line ($tl > 1) |
| 405 | ### do testing with 2 different corpora (one with only one-line texts, the other with several lines per text) |
| 406 | if (m/<[^>]+>[^<]/) { # line contains at least one tag with at least one character contents |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 407 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 408 | # NOTE: not stringent ('...' stands for text): |
| 409 | # |
| 410 | # beg1............................end1 => no blank before 'beg1' |
| 411 | # beg2....<pb/>...................end2 => no blank before 'beg2' |
| 412 | # beg3....<info attr1="val1"/>....end3 => no blank before 'beg3' |
| 413 | # beg4....<test>ok</test>.........end4 => blank before 'beg4' |
| 414 | # |
| 415 | # => beg1....end1beg2...<pb/>...end2beg3....<info attr1="val1"/>....end3 beg4...<test>ok</test>....end4 |
| 416 | # ^ |
| 417 | # |_blank between 'end3' and 'beg4' |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 418 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 419 | $tl++; # counter for text lines |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 420 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 421 | s/^(.)/ $1/ if $tl > 1; # insert blank before 1st character (for 2nd line and consecutive lines) |
| 422 | } |
| 423 | ### |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 424 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 425 | # add line to buffer |
| 426 | $buf_in .= $_; |
| 427 | }; |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 428 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 429 | } elsif (m#^(.*)(<(?:${_TEXT_HEADER_BEG}|${_DOC_HEADER_BEG}|${_CORP_HEADER_BEG}).*)$#) { |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 430 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 431 | # ~ start of header ~ |
| 432 | $pfx = $1; |
| 433 | my $content = "$2\n"; |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 434 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 435 | if ($pfx !~ /^\s*$/) { |
| 436 | die $log->fatal("input line number $.: " . |
| 437 | "line with opening header tag" . |
| 438 | " is not in expected format ... => Aborting (line=$_)"); |
| 439 | }; |
| 440 | |
| 441 | # Parse header |
Akron | eaa9623 | 2020-10-15 17:06:15 +0200 | [diff] [blame] | 442 | my $header = KorAP::XML::TEI::Header->new($content, $input_enc)->parse($input_fh); |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 443 | |
| 444 | # Header was parseable |
| 445 | if ($header) { |
| 446 | |
| 447 | # Write header to zip |
| 448 | my $file = $header->dir . '/' . $_header_file; |
| 449 | |
Akron | b364947 | 2020-09-29 08:24:46 +0200 | [diff] [blame] | 450 | $log->debug("Writing file $file") if DEBUG; |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 451 | |
| 452 | $header->to_zip($zipper->new_stream($file)); |
| 453 | |
| 454 | # Header is for text level |
| 455 | if ($header->type eq 'text') { |
| 456 | |
| 457 | # Remember dir and sigles |
| 458 | $dir = $header->dir; |
| 459 | $text_id = $header->id; |
| 460 | $text_id_esc = $header->id_esc; |
| 461 | |
| 462 | # log output for seeing progression |
Marc Kupietz | 44b1f25 | 2020-11-26 16:31:40 +0100 | [diff] [blame] | 463 | $log->notice("$0: main(): text_id=$text_id"); |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 464 | |
| 465 | $tl = 0; # reset (needed for ~ whitespace handling ~) |
Akron | f57ed81 | 2020-07-27 10:37:52 +0200 | [diff] [blame] | 466 | } |
| 467 | } |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 468 | } |
| 469 | } #end: while |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 470 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 471 | $zipper->close; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 472 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 473 | $ext_tok->close if $_GEN_TOK_EXT; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 474 | |
Akron | 347be81 | 2020-09-29 07:52:52 +0200 | [diff] [blame] | 475 | exit(0); |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 476 | |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 477 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 478 | sub retr_info { # called from main() |
Akron | 1c4f220 | 2020-07-30 09:28:22 +0200 | [diff] [blame] | 479 | # recursion level |
| 480 | # (1 = topmost level inside retr_info() = should always be level of tag $_TEXT_BODY) |
| 481 | my $rl = shift; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 482 | |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 483 | my $dummy_anno; |
| 484 | if ($use_tokenizer_sentence_splits) { |
| 485 | $dummy_anno = $structures->new_dummy_annotation(); |
| 486 | } |
| 487 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 488 | # Notes on how 'XML::CompactTree::XS' works |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 489 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 490 | # Example: <node a="v"><node1>some <n/> text</node1><node2>more-text</node2></node> |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 491 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 492 | # Print out name of 'node2' for the above example: |
| 493 | # |
| 494 | # 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"' |
| 495 | # |
| 496 | # Exploring the structure of $data ( = reference to below array ): |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 497 | # |
| 498 | # [ 0: XML_READER_TYPE_DOCUMENT, |
| 499 | # 1: ? |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 500 | # 2: [ 0: [ 0: XML_READER_TYPE_ELEMENT <- start recursion with array '$data->[2]' (see main(): retr_info( \$tree_data->[2] )) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 501 | # 1: 'node' |
| 502 | # 2: ? |
| 503 | # 3: HASH (attributes) |
| 504 | # 4: 1 (line number) |
| 505 | # 5: [ 0: [ 0: XML_READER_TYPE_ELEMENT |
| 506 | # 1: 'node1' |
| 507 | # 2: ? |
| 508 | # 3: undefined (no attributes) |
| 509 | # 4: 1 (line number) |
| 510 | # 5: [ 0: [ 0: XML_READER_TYPE_TEXT |
| 511 | # 1: 'some ' |
| 512 | # ] |
| 513 | # 1: [ 0: XML_READER_TYPE_ELEMENT |
| 514 | # 1: 'n' |
| 515 | # 2: ? |
| 516 | # 3: undefined (no attributes) |
| 517 | # 4: 1 (line number) |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 518 | # 5: undefined (no child-nodes) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 519 | # ] |
| 520 | # 2: [ 0: XML_READER_TYPE_TEXT |
| 521 | # 1: ' text' |
| 522 | # ] |
| 523 | # ] |
| 524 | # ] |
| 525 | # 1: [ 0: XML_READER_TYPE_ELEMENT |
| 526 | # 1: 'node2' |
| 527 | # 2: ? |
| 528 | # 3: undefined (not attributes) |
| 529 | # 4: 1 (line number) |
| 530 | # 5: [ 0: [ 0: XML_READER_TYPE_TEXT |
| 531 | # 1: 'more-text' |
| 532 | # ] |
| 533 | # ] |
| 534 | # ] |
| 535 | # ] |
| 536 | # ] |
| 537 | # ] |
| 538 | # ] |
| 539 | # |
| 540 | # $data->[0] = 9 (=> type == XML_READER_TYPE_DOCUMENT) |
| 541 | # |
| 542 | # ref($data->[2]) == ARRAY (with 1 element for 'node') |
| 543 | # ref($data->[2]->[0]) == ARRAY (with 6 elements) |
| 544 | # |
| 545 | # $data->[2]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT) |
| 546 | # $data->[2]->[0]->[1] == 'node' |
| 547 | # ref($data->[2]->[0]->[3]) == HASH (=> ${$data->[2]->[0]->[3]}{a} == 'v') |
| 548 | # $data->[2]->[0]->[4] == 1 (line number) |
| 549 | # ref($data->[2]->[0]->[5]) == ARRAY (with 2 elements for 'node1' and 'node2') |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 550 | # # child-nodes of actual node (see $_IDX) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 551 | # |
| 552 | # ref($data->[2]->[0]->[5]->[0]) == ARRAY (with 6 elements) |
| 553 | # $data->[2]->[0]->[5]->[0]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT) |
| 554 | # $data->[2]->[0]->[5]->[0]->[1] == 'node1' |
| 555 | # $data->[2]->[0]->[5]->[0]->[3] == undefined (=> no attribute) |
| 556 | # $data->[2]->[0]->[5]->[0]->[4] == 1 (line number) |
| 557 | # ref($data->[2]->[0]->[5]->[0]->[5]) == ARRAY (with 3 elements for 'some ', '<n/>' and ' text') |
| 558 | # |
| 559 | # ref($data->[2]->[0]->[5]->[0]->[5]->[0]) == ARRAY (with 2 elements) |
| 560 | # $data->[2]->[0]->[5]->[0]->[5]->[0]->[0] == 3 (=> type == XML_READER_TYPE_TEXT) |
| 561 | # $data->[2]->[0]->[5]->[0]->[5]->[0]->[1] == 'some ' |
| 562 | # |
| 563 | # ref($data->[2]->[0]->[5]->[0]->[5]->[1]) == ARRAY (with 5 elements) |
| 564 | # $data->[2]->[0]->[5]->[0]->[5]->[1]->[0] == 1 (=> type == XML_READER_TYPE_ELEMENT) |
| 565 | # $data->[2]->[0]->[5]->[0]->[5]->[1]->[1] == 'n' |
| 566 | # $data->[2]->[0]->[5]->[0]->[5]->[1]->[3] == undefined (=> no attribute) |
| 567 | # $data->[2]->[0]->[5]->[0]->[5]->[1]->[4] == 1 (line number) |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 568 | # $data->[2]->[0]->[5]->[0]->[5]->[1]->[5] == undefined (=> no child-nodes) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 569 | # |
| 570 | # ref($data->[2]->[0]->[5]->[0]->[5]->[2]) == ARRAY (with 2 elements) |
| 571 | # $data->[2]->[0]->[5]->[0]->[5]->[2]->[0] == 3 (=> type == XML_READER_TYPE_TEXT) |
| 572 | # $data->[2]->[0]->[5]->[0]->[5]->[2]->[1] == ' text' |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 573 | # |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 574 | # |
| 575 | # retr_info() starts with the array reference ${$_[0]} (= \$tree_data->[2]), which corresponds to ${\$data->[2]} in the above example. |
| 576 | # Hence, the expression @{${$_[0]}} corresponds to @{${\$data->[2]}}, $e to ${${\$data->[2]}}[0] (= $data->[2]->[0]) and $e->[0] to |
| 577 | # ${${\$data->[2]}}[0]->[0] (= $data->[2]->[0]->[0]). |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 578 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 579 | foreach $e (@{${$_[0]}}) { # iteration through all array elements ($_[0] is a reference to an array reference) |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 580 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 581 | if ($e->[0] == XML_READER_TYPE_ELEMENT) { # element-node (see 'NODE TYPES' in manpage of XML::LibXML::Reader) |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 582 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 583 | #~~~~ |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 584 | # from here: tag-node (opening) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 585 | #~~~~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 586 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 587 | # ~ handle structures ~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 588 | |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 589 | my $anno; |
| 590 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 591 | # $e->[1] represents the tag name |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 592 | if ($use_tokenizer_sentence_splits && $e->[1] eq "s") { |
| 593 | $anno = $dummy_anno; |
| 594 | } else { |
| 595 | $anno = $structures->add_new_annotation($e->[1]); |
| 596 | } |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 597 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 598 | # ~ handle tokens ~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 599 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 600 | # Add element also to token list |
| 601 | if ($_TOKENS_PROC && $e->[1] eq $_TOKENS_TAG) { |
| 602 | $tokens->add_annotation($anno); |
| 603 | }; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 604 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 605 | # ~ handle attributes ~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 606 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 607 | if (defined $e->[3]) { # only if attributes exist |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 608 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 609 | for ($c = 0; $c < @{$e->[3]}; $c += 2) { # with 'XCT_ATTRIBUTE_ARRAY', $node->[3] is an array reference of the form |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 610 | # [ name1, value1, name2, value2, ....] of attribute names and corresponding values. |
| 611 | # note: arrays are faster (see: http://makepp.sourceforge.net/2.0/perl_performance.html) |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 612 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 613 | # '$c' references the 'key' and '$c+1' the 'value' |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 614 | $anno->add_attribute( |
| 615 | @{$e->[3]}[$c, $c + 1] |
| 616 | ); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | |
| 620 | |
| 621 | # ~ index 'from' ~ |
| 622 | |
| 623 | # this is, where a normal tag or tokens-tag ($_TOKENS_TAG) starts |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 624 | $anno->set_from($data->position + $add_one); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 625 | |
| 626 | #~~~~ |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 627 | # until here: tag-node (opening) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 628 | #~~~~ |
| 629 | |
| 630 | |
| 631 | # ~~ RECURSION ~~ |
| 632 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 633 | 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 Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 634 | |
Akron | 1c4f220 | 2020-07-30 09:28:22 +0200 | [diff] [blame] | 635 | retr_info($rl+1, \$e->[$_IDX]); # recursion with array of child-nodes |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 636 | } |
| 637 | |
| 638 | |
| 639 | #~~~~~ |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 640 | # from here: tag-node (closing) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 641 | #~~~~~ |
| 642 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 643 | my $pos = $data->position; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 644 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 645 | # ~ handle structures and tokens ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 646 | |
| 647 | { |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 648 | $fval = $anno->from; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 649 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 650 | if ($fval > 0 && not exists $ws{$fval - 1}) { # ~ whitespace related issue ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 651 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 652 | # ~ previous node was a text-node ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 653 | |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 654 | $anno->set_from($fval - 1); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | # in case this fails, check input |
Akron | 0bb7e72 | 2020-09-29 07:48:33 +0200 | [diff] [blame] | 658 | if (($fval - 1) > $pos) { |
| 659 | die $log->fatal("text_id='$text_id', " . |
| 660 | "processing of structures: " . |
| 661 | "from-value ($fval) is 2 or more greater " . |
| 662 | "than to-value ($pos) => please check. Aborting"); |
| 663 | }; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 664 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 665 | # TODO: find example for which this case applies |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 666 | # maybe this is not necessary anymore, because the above recorrection of the from-value suffices |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 667 | # |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 668 | # TODO: check, if it's better to remove this line and change above check to 'if ( $fval - 1) >= $pos; |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 669 | # do testing with bigger corpus excerpt (wikipedia?) |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 670 | $anno->set_from($pos) if $fval == $pos + 1; |
| 671 | $anno->set_to($pos); |
Akron | 7501ca0 | 2020-08-01 21:05:25 +0200 | [diff] [blame] | 672 | $anno->set_level($rl); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 673 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 674 | # note: use $pos, because the offsets are _between_ the characters (e.g.: word = 'Hello' => from = 0 (before 'H'), to = 5 (after 'o')) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 675 | } |
| 676 | |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 677 | # ~ whitespace related issue ~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 678 | # clean up |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 679 | delete $ws{$fval - 1} if $fval > 0 && exists $ws{$fval - 1}; |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 680 | |
| 681 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 682 | #~~~~ |
| 683 | # until here: tag-node (closing) |
| 684 | #~~~~ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 685 | |
| 686 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 687 | #~~~~~ |
| 688 | # from here: text- and whitespace-nodes |
| 689 | #~~~~~ |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 690 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 691 | # The 3rd form of nodes, besides text- (XML_READER_TYPE_TEXT) and tag-nodes (XML_READER_TYPE_ELEMENT) are nodes of the type |
| 692 | # 'XML_READER_TYPE_SIGNIFICANT_WHITESPACE'. |
| 693 | # |
| 694 | # When modifiying the previous example (see: Notes on how 'XML::CompactTree::XS' works) by inserting an additional blank between |
| 695 | # '</node1>' and '<node2>', the output for '$data->[2]->[0]->[5]->[1]->[1]' is a blank (' ') and it's type is '14' |
| 696 | # (XML_READER_TYPE_SIGNIFICANT_WHITESPACE, see 'man XML::LibXML::Reader'): |
| 697 | # |
| 698 | # 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 Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 699 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 700 | } elsif ($e->[0] == XML_READER_TYPE_TEXT || $e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE){ |
Peter Harders | d892a58 | 2020-02-12 15:45:22 +0100 | [diff] [blame] | 701 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 702 | # Notes on ~ whitespace related issue ~ (referred to the code fragment below) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 703 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 704 | # Example: '... <head type="main"><s>Campagne in Frankreich</s></head><head type="sub"> <s>1792</s> ...' |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 705 | # |
| 706 | # Two text-nodes should normally be separated by a blank. In the above example, that would be the 2 text-nodes |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 707 | # 'Campagne in Frankreich' and '1792', which are separated by the whitespace-node ' ' (see [2]). |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 708 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 709 | # The text-node 'Campagne in Frankreich' leads to the setting of '$add_one' to 1, so that when opening the 2nd 'head'-tag, |
| 710 | # it's from-index gets set to the correct start-index of '1792' (and not to the start-index of the whitespace-node ' '). |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 711 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 712 | # The assumption here is, that in most cases there _is_ a whitespace node between 2 text-nodes. The below code fragment |
| 713 | # enables a way, to check, if this really _was_ the case for the last 2 'non-tag'-nodes, when closing a tag: |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 714 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 715 | # 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. |
| 716 | # So when closing a tag, it can be checked, if the previous 'non-tag'-node (text or whitespace), which is the one before |
| 717 | # 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 |
| 718 | # the last read 'non-tag'-node has to be corrected (see [1]), |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 719 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 720 | # For whitespace-nodes $add_one is set to 0, so when opening the next tag (in the above example the 2nd 's'-tag), no |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 721 | # additional 1 is added (because this was already done by the whitespace-node itself when incrementing the variable $pos). |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 722 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 723 | # [1] |
| 724 | # Now, what happens, when 2 text-nodes are _not_ seperated by a whitespace-node (e.g.: <w>Augen<c>,</c></w>)? |
| 725 | # In this case, the falsely increased from-value has to be decreased again by 1 when closing the enclosing tag |
| 726 | # (see above code fragment '... not exists $ws{ $fval - 1 } ...'). |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 727 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 728 | # [2] |
| 729 | # 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 |
| 730 | # whitespace-node (XML_READER_TYPE_SIGNIFICANT_WHITESPACE). |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 731 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 732 | # The from-index of the 2nd w-tag in the second example refers to 'bar', which may not have been the intention |
| 733 | # (even though '<w> </w>' doesn't make a lot of sense). TODO: could this be a bug? |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 734 | # |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 735 | # 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- |
| 736 | # and to-indizes for the tags 'a' and 'b' both 12, which is the start-index of the token 'tok3'. |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 737 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 738 | if ($e->[0] == XML_READER_TYPE_SIGNIFICANT_WHITESPACE) { |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 739 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 740 | # ~ whitespace-node ~ |
| 741 | |
| 742 | # ~ whitespace related issue ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 743 | |
| 744 | $add_one = 0; |
| 745 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 746 | # state, that this from-index belongs to a whitespace-node |
| 747 | # ('++' doesn't mean a thing here - maybe it could be used for a consistency check) |
| 748 | $ws{$data->position}++; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 749 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 750 | } else { |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 751 | |
| 752 | # ~ text-node ~ |
| 753 | |
| 754 | $add_one = 1; |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 755 | }; |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 756 | |
| 757 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 758 | # ~ update $data ~ |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 759 | |
Akron | a10ad59 | 2020-08-03 11:20:23 +0200 | [diff] [blame] | 760 | $data->append($e->[1]); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 761 | |
Peter Harders | 41c3562 | 2020-07-12 01:16:22 +0200 | [diff] [blame] | 762 | #~~~~~ |
| 763 | # until here: text- and whitespace-nodes |
| 764 | #~~~~~ |
| 765 | |
| 766 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 767 | # elsif ( $e->[0] == XML_READER_TYPE_ATTRIBUTE ) # attribute-node |
| 768 | # note: attributes cannot be processed like this ( => use 'XCT_ATTRIBUTE_ARRAY' - see above ) |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 769 | |
| 770 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 771 | } else { # not yet handled type |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 772 | |
Akron | 0bb7e72 | 2020-09-29 07:48:33 +0200 | [diff] [blame] | 773 | die $log->fatal('Not yet handled type ($e->[0]=' . $e->[0] . ') ... => Aborting'); |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | } # end: foreach iteration |
| 777 | |
| 778 | } # end: sub retr_info |
| 779 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 780 | __END__ |
| 781 | |
| 782 | =pod |
| 783 | |
| 784 | =encoding utf8 |
| 785 | |
| 786 | =head1 NAME |
| 787 | |
| 788 | tei2korapxml - Conversion of TEI P5 based formats to KorAP-XML |
| 789 | |
| 790 | =head1 SYNOPSIS |
| 791 | |
| 792 | cat corpus.i5.xml | tei2korapxml > corpus.korapxml.zip |
| 793 | |
| 794 | =head1 DESCRIPTION |
| 795 | |
Akron | ee434b1 | 2020-07-08 12:53:01 +0200 | [diff] [blame] | 796 | C<tei2korapxml> is a script to convert TEI P5 and |
| 797 | L<I5|https://www1.ids-mannheim.de/kl/projekte/korpora/textmodell.html> |
| 798 | based documents to the |
| 799 | L<KorAP-XML format|https://github.com/KorAP/KorAP-XML-Krill#about-korap-xml>. |
| 800 | If no specific input is defined, data is |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 801 | read from C<STDIN>. If no specific output is defined, data is written |
| 802 | to C<STDOUT>. |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 803 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 804 | This program is usually called from inside another script. |
| 805 | |
Akron | ee434b1 | 2020-07-08 12:53:01 +0200 | [diff] [blame] | 806 | =head1 FORMATS |
| 807 | |
| 808 | =head2 Input restrictions |
| 809 | |
| 810 | =over 2 |
| 811 | |
| 812 | =item |
| 813 | |
Akron | ee434b1 | 2020-07-08 12:53:01 +0200 | [diff] [blame] | 814 | TEI P5 formatted input with certain restrictions: |
| 815 | |
| 816 | =over 4 |
| 817 | |
| 818 | =item |
| 819 | |
| 820 | B<mandatory>: text-header with integrated textsigle, text-body |
| 821 | |
| 822 | =item |
| 823 | |
| 824 | B<optional>: corp-header with integrated corpsigle, |
| 825 | doc-header with integrated docsigle |
| 826 | |
| 827 | =back |
| 828 | |
| 829 | =item |
| 830 | |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 831 | All tokens inside the primary text may not be |
Akron | ee434b1 | 2020-07-08 12:53:01 +0200 | [diff] [blame] | 832 | newline seperated, because newlines are removed |
Akron | 0c41ab3 | 2020-09-29 07:33:33 +0200 | [diff] [blame] | 833 | (see L<KorAP::XML::TEI::Data>) and a conversion of newlines |
Akron | ee434b1 | 2020-07-08 12:53:01 +0200 | [diff] [blame] | 834 | into blanks between 2 tokens could lead to additional blanks, |
| 835 | where there should be none (e.g.: punctuation characters like C<,> or |
| 836 | C<.> should not be seperated from their predecessor token). |
| 837 | (see also code section C<~ whitespace handling ~>). |
| 838 | |
| 839 | =back |
| 840 | |
| 841 | =head2 Notes on the output |
| 842 | |
| 843 | =over 2 |
| 844 | |
| 845 | =item |
| 846 | |
| 847 | zip file output (default on C<stdout>) with utf8 encoded entries |
| 848 | (which together form the KorAP-XML format) |
| 849 | |
| 850 | =back |
| 851 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 852 | =head1 INSTALLATION |
| 853 | |
| 854 | C<tei2korapxml> requires L<libxml2-dev> bindings to build. When |
| 855 | these bindings are available, the preferred way to install the script is |
| 856 | to use L<cpanm|App::cpanminus>. |
| 857 | |
| 858 | $ cpanm https://github.com/KorAP/KorAP-XML-TEI.git |
| 859 | |
| 860 | In case everything went well, the C<tei2korapxml> tool will |
| 861 | be available on your command line immediately. |
Peter Harders | 6f526a3 | 2020-06-29 21:44:41 +0200 | [diff] [blame] | 862 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 863 | Minimum requirement for L<KorAP::XML::TEI> is Perl 5.16. |
| 864 | |
| 865 | =head1 OPTIONS |
| 866 | |
| 867 | =over 2 |
| 868 | |
Akron | 4e603a5 | 2020-07-27 14:23:49 +0200 | [diff] [blame] | 869 | =item B<--root|-r> |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 870 | |
Akron | 4e603a5 | 2020-07-27 14:23:49 +0200 | [diff] [blame] | 871 | The root directory for output. Defaults to C<.>. |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 872 | |
| 873 | =item B<--help|-h> |
| 874 | |
| 875 | Print help information. |
| 876 | |
| 877 | =item B<--version|-v> |
| 878 | |
| 879 | Print version information. |
| 880 | |
Akron | 4e603a5 | 2020-07-27 14:23:49 +0200 | [diff] [blame] | 881 | =item B<--tokenizer-call|-tc> |
| 882 | |
| 883 | Call an external tokenizer process, that will tokenize |
| 884 | a single line from STDIN and outputs one token per line. |
| 885 | |
Marc Kupietz | 1e882fb | 2020-09-09 00:05:46 +0200 | [diff] [blame] | 886 | =item B<--tokenizer-korap|-tk> |
| 887 | |
| 888 | Use the standard KorAP/DeReKo tokenizer. |
| 889 | |
Akron | 6d7b8e4 | 2020-09-29 07:37:41 +0200 | [diff] [blame] | 890 | =item B<--tokenizer-internal|-ti> |
Akron | 4e603a5 | 2020-07-27 14:23:49 +0200 | [diff] [blame] | 891 | |
| 892 | Tokenize the data using two embedded tokenizers, |
| 893 | that will take an I<Aggressive> and a I<conservative> |
| 894 | approach. |
| 895 | |
Marc Kupietz | 985da0c | 2021-02-15 19:29:50 +0100 | [diff] [blame] | 896 | =item B<--use-tokenizer-sentence-splits|-s> |
| 897 | |
| 898 | Replace existing with, or add new, sentence boundary information |
| 899 | provided by the KorAP tokenizer (currently supported only). |
| 900 | |
Akron | 3378dfd | 2020-08-01 15:01:36 +0200 | [diff] [blame] | 901 | =item B<--log|-l> |
| 902 | |
| 903 | Loglevel for I<Log::Any>. Defaults to C<notice>. |
| 904 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 905 | =back |
| 906 | |
Akron | b364947 | 2020-09-29 08:24:46 +0200 | [diff] [blame] | 907 | =head1 ENVIRONMENT VARIABLES |
| 908 | |
| 909 | =over 2 |
| 910 | |
| 911 | =item B<KORAPXMLTEI_DEBUG> |
| 912 | |
| 913 | Activate minimal debugging. |
| 914 | Defaults to C<false>. |
| 915 | |
| 916 | =item B<KORAPXMLTEI_INLINE> |
| 917 | |
| 918 | Process inline annotations, if present. |
| 919 | Defaults to C<false>. |
| 920 | |
| 921 | =back |
| 922 | |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 923 | =head1 COPYRIGHT AND LICENSE |
| 924 | |
Marc Kupietz | e955ecc | 2021-02-17 17:42:01 +0100 | [diff] [blame] | 925 | Copyright (C) 2021, L<IDS Mannheim|https://www.ids-mannheim.de/> |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 926 | |
| 927 | Author: Peter Harders |
| 928 | |
Akron | aabd095 | 2020-09-29 07:35:08 +0200 | [diff] [blame] | 929 | Contributors: Nils Diewald, Marc Kupietz, Carsten Schnober |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 930 | |
| 931 | L<KorAP::XML::TEI> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/> |
| 932 | Corpus Analysis Platform at the |
| 933 | L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
| 934 | member of the |
| 935 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>. |
| 936 | |
| 937 | This program is free software published under the |
Marc Kupietz | e955ecc | 2021-02-17 17:42:01 +0100 | [diff] [blame] | 938 | L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>. |
Akron | d949e18 | 2020-02-14 12:23:57 +0100 | [diff] [blame] | 939 | |
| 940 | =cut |