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