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