Write Latin and other scripts with captial letter
[lhc/web/wiklou.git] / maintenance / language / generateCollationData.php
1 <?php
2 /**
3 * Maintenance script to generate first letter data files for Collation.php.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup MaintenanceLanguage
22 */
23
24 require_once __DIR__ . '/../Maintenance.php';
25
26 /**
27 * Generate first letter data files for Collation.php
28 *
29 * @ingroup MaintenanceLanguage
30 */
31 class GenerateCollationData extends Maintenance {
32 /** The directory with source data files in it */
33 public $dataDir;
34
35 /** The primary weights, indexed by codepoint */
36 public $weights;
37
38 /**
39 * A hashtable keyed by codepoint, where presence indicates that a character
40 * has a decomposition mapping. This makes it non-preferred for group header
41 * selection.
42 */
43 public $mappedChars;
44
45 public $debugOutFile;
46
47 /**
48 * Important tertiary weights from UTS #10 section 7.2
49 */
50 const NORMAL_UPPERCASE = 0x08;
51 const NORMAL_HIRAGANA = 0x0E;
52
53 public function __construct() {
54 parent::__construct();
55 $this->addOption( 'data-dir', 'A directory on the local filesystem ' .
56 'containing allkeys.txt and ucd.all.grouped.xml from unicode.org',
57 false, true );
58 $this->addOption( 'debug-output', 'Filename for sending debug output to',
59 false, true );
60 }
61
62 public function execute() {
63 $this->dataDir = $this->getOption( 'data-dir', '.' );
64
65 $allkeysPresent = file_exists( "{$this->dataDir}/allkeys.txt" );
66 $ucdallPresent = file_exists( "{$this->dataDir}/ucd.all.grouped.xml" );
67
68 // As of January 2013, these links work for all versions of Unicode
69 // between 5.1 and 6.2, inclusive.
70 $allkeysURL = "https://www.unicode.org/Public/UCA/<Unicode version>/allkeys.txt";
71 $ucdallURL = "https://www.unicode.org/Public/<Unicode version>/ucdxml/ucd.all.grouped.zip";
72
73 if ( !$allkeysPresent || !$ucdallPresent ) {
74 $icuVersion = INTL_ICU_VERSION;
75 $unicodeVersion = IcuCollation::getUnicodeVersionForICU();
76
77 $error = "";
78
79 if ( !$allkeysPresent ) {
80 $error .= "Unable to find allkeys.txt. "
81 . "Download it and specify its location with --data-dir=<DIR>. "
82 . "\n\n";
83 }
84 if ( !$ucdallPresent ) {
85 $error .= "Unable to find ucd.all.grouped.xml. "
86 . "Download it, unzip, and specify its location with --data-dir=<DIR>. "
87 . "\n\n";
88 }
89
90 $versionKnown = false;
91 if ( version_compare( $icuVersion, "4.0", "<" ) ) {
92 // Extra old version
93 $error .= "You are using outdated version of ICU ($icuVersion), intended for "
94 . ( $unicodeVersion ? "Unicode $unicodeVersion" : "an unknown version of Unicode" )
95 . "; this file might not be avalaible for it, and it's not supported by MediaWiki. "
96 . " You are on your own; consider upgrading PHP's intl extension or try "
97 . "one of the files available at:";
98 } elseif ( version_compare( $icuVersion, "51.0", ">=" ) ) {
99 // Extra recent version
100 $error .= "You are using ICU $icuVersion, released after this script was last updated. "
101 . "Check what is the Unicode version it is using at http://site.icu-project.org/download . "
102 . "It can't be guaranteed everything will work, but appropriate file(s) should "
103 . "be available at:";
104 } else {
105 // ICU 4.0 to 50.x
106 $versionKnown = true;
107 $error .= "You are using ICU $icuVersion, intended for "
108 . ( $unicodeVersion ? "Unicode $unicodeVersion" : "an unknown version of Unicode" )
109 . ". Appropriate file(s) should be available at:";
110 }
111 $error .= "\n";
112
113 if ( $versionKnown && $unicodeVersion ) {
114 $allkeysURL = str_replace( "<Unicode version>", "$unicodeVersion.0", $allkeysURL );
115 $ucdallURL = str_replace( "<Unicode version>", "$unicodeVersion.0", $ucdallURL );
116 }
117
118 if ( !$allkeysPresent ) {
119 $error .= "* $allkeysURL\n";
120 }
121 if ( !$ucdallPresent ) {
122 $error .= "* $ucdallURL\n";
123 }
124
125 $this->fatalError( $error );
126 }
127
128 $debugOutFileName = $this->getOption( 'debug-output' );
129 if ( $debugOutFileName ) {
130 $this->debugOutFile = fopen( $debugOutFileName, 'w' );
131 if ( !$this->debugOutFile ) {
132 $this->fatalError( "Unable to open debug output file for writing" );
133 }
134 }
135 $this->loadUcd();
136 $this->generateFirstChars();
137 }
138
139 function loadUcd() {
140 $uxr = new UcdXmlReader( "{$this->dataDir}/ucd.all.grouped.xml" );
141 $uxr->readChars( [ $this, 'charCallback' ] );
142 }
143
144 function charCallback( $data ) {
145 // Skip non-printable characters,
146 // but do not skip a normal space (U+0020) since
147 // people like to use that as a fake no header symbol.
148 $category = substr( $data['gc'], 0, 1 );
149 if ( strpos( 'LNPS', $category ) === false
150 && $data['cp'] !== '0020'
151 ) {
152 return;
153 }
154 $cp = hexdec( $data['cp'] );
155
156 // Skip the CJK ideograph blocks, as an optimisation measure.
157 // UCA doesn't sort them properly anyway, without tailoring.
158 if ( IcuCollation::isCjk( $cp ) ) {
159 return;
160 }
161
162 // Skip the composed Hangul syllables, we will use the bare Jamo
163 // as first letters
164 if ( $data['block'] == 'Hangul Syllables' ) {
165 return;
166 }
167
168 // Calculate implicit weight per UTS #10 v6.0.0, sec 7.1.3
169 if ( $data['UIdeo'] === 'Y' ) {
170 if ( $data['block'] == 'CJK Unified Ideographs'
171 || $data['block'] == 'CJK Compatibility Ideographs'
172 ) {
173 $base = 0xFB40;
174 } else {
175 $base = 0xFB80;
176 }
177 } else {
178 $base = 0xFBC0;
179 }
180 $a = $base + ( $cp >> 15 );
181 $b = ( $cp & 0x7fff ) | 0x8000;
182
183 $this->weights[$cp] = sprintf( ".%04X.%04X", $a, $b );
184
185 if ( $data['dm'] !== '#' ) {
186 $this->mappedChars[$cp] = true;
187 }
188
189 if ( $cp % 4096 == 0 ) {
190 print "{$data['cp']}\n";
191 }
192 }
193
194 function generateFirstChars() {
195 $file = fopen( "{$this->dataDir}/allkeys.txt", 'r' );
196 if ( !$file ) {
197 $this->fatalError( "Unable to open allkeys.txt" );
198 }
199
200 $goodTertiaryChars = [];
201
202 // For each character with an entry in allkeys.txt, overwrite the implicit
203 // entry in $this->weights that came from the UCD.
204 // Also gather a list of tertiary weights, for use in selecting the group header
205 while ( false !== ( $line = fgets( $file ) ) ) {
206 // We're only interested in single-character weights, pick them out with a regex
207 $line = trim( $line );
208 if ( !preg_match( '/^([0-9A-F]+)\s*;\s*([^#]*)/', $line, $m ) ) {
209 continue;
210 }
211
212 $cp = hexdec( $m[1] );
213 $allWeights = trim( $m[2] );
214 $primary = '';
215 $tertiary = '';
216
217 if ( !isset( $this->weights[$cp] ) ) {
218 // Non-printable, ignore
219 continue;
220 }
221 foreach ( StringUtils::explode( '[', $allWeights ) as $weightStr ) {
222 preg_match_all( '/[*.]([0-9A-F]+)/', $weightStr, $m );
223 if ( !empty( $m[1] ) ) {
224 if ( $m[1][0] !== '0000' ) {
225 $primary .= '.' . $m[1][0];
226 }
227 if ( $m[1][2] !== '0000' ) {
228 $tertiary .= '.' . $m[1][2];
229 }
230 }
231 }
232 $this->weights[$cp] = $primary;
233 if ( $tertiary === '.0008'
234 || $tertiary === '.000E'
235 ) {
236 $goodTertiaryChars[$cp] = true;
237 }
238 }
239 fclose( $file );
240
241 // Identify groups of characters with the same primary weight
242 $this->groups = [];
243 asort( $this->weights, SORT_STRING );
244 $prevWeight = reset( $this->weights );
245 $group = [];
246 foreach ( $this->weights as $cp => $weight ) {
247 if ( $weight !== $prevWeight ) {
248 $this->groups[$prevWeight] = $group;
249 $prevWeight = $weight;
250 if ( isset( $this->groups[$weight] ) ) {
251 $group = $this->groups[$weight];
252 } else {
253 $group = [];
254 }
255 }
256 $group[] = $cp;
257 }
258 if ( $group ) {
259 $this->groups[$prevWeight] = $group;
260 }
261
262 // If one character has a given primary weight sequence, and a second
263 // character has a longer primary weight sequence with an initial
264 // portion equal to the first character, then remove the second
265 // character. This avoids having characters like U+A732 (double A)
266 // polluting the basic Latin sort area.
267
268 foreach ( $this->groups as $weight => $group ) {
269 if ( preg_match( '/(\.[0-9A-F]*)\./', $weight, $m ) ) {
270 if ( isset( $this->groups[$m[1]] ) ) {
271 unset( $this->groups[$weight] );
272 }
273 }
274 }
275
276 ksort( $this->groups, SORT_STRING );
277
278 // Identify the header character in each group
279 $headerChars = [];
280 $prevChar = "\000";
281 $tertiaryCollator = new Collator( 'root' );
282 $primaryCollator = new Collator( 'root' );
283 $primaryCollator->setStrength( Collator::PRIMARY );
284 $numOutOfOrder = 0;
285 foreach ( $this->groups as $weight => $group ) {
286 $uncomposedChars = [];
287 $goodChars = [];
288 foreach ( $group as $cp ) {
289 if ( isset( $goodTertiaryChars[$cp] ) ) {
290 $goodChars[] = $cp;
291 }
292 if ( !isset( $this->mappedChars[$cp] ) ) {
293 $uncomposedChars[] = $cp;
294 }
295 }
296 $x = array_intersect( $goodChars, $uncomposedChars );
297 if ( !$x ) {
298 $x = $uncomposedChars;
299 if ( !$x ) {
300 $x = $group;
301 }
302 }
303
304 // Use ICU to pick the lowest sorting character in the selection
305 $tertiaryCollator->sort( $x );
306 $cp = $x[0];
307
308 $char = UtfNormal\Utils::codepointToUtf8( $cp );
309 $headerChars[] = $char;
310 if ( $primaryCollator->compare( $char, $prevChar ) <= 0 ) {
311 $numOutOfOrder++;
312 }
313 $prevChar = $char;
314
315 if ( $this->debugOutFile ) {
316 fwrite( $this->debugOutFile, sprintf( "%05X %s %s (%s)\n", $cp, $weight, $char,
317 implode( ' ', array_map( 'UtfNormal\Utils::codepointToUtf8', $group ) ) ) );
318 }
319 }
320
321 print "Out of order: $numOutOfOrder / " . count( $headerChars ) . "\n";
322
323 global $IP;
324 $writer = new StaticArrayWriter();
325 file_put_contents(
326 "$IP/includes/collation/data/first-letters-root.php",
327 $writer->create( $headerChars, 'File created by generateCollationData.php' )
328 );
329 echo "first-letters-root: file written.\n";
330 }
331 }
332
333 class UcdXmlReader {
334 public $fileName;
335 public $callback;
336 public $groupAttrs;
337 public $xml;
338 public $blocks = [];
339 public $currentBlock;
340
341 function __construct( $fileName ) {
342 $this->fileName = $fileName;
343 }
344
345 public function readChars( $callback ) {
346 $this->getBlocks();
347 $this->currentBlock = reset( $this->blocks );
348 $xml = $this->open();
349 $this->callback = $callback;
350
351 while ( $xml->name !== 'repertoire' && $xml->next() );
352
353 while ( $xml->read() ) {
354 if ( $xml->nodeType == XMLReader::ELEMENT ) {
355 if ( $xml->name === 'group' ) {
356 $this->groupAttrs = $this->readAttributes();
357 } elseif ( $xml->name === 'char' ) {
358 $this->handleChar();
359 }
360 } elseif ( $xml->nodeType === XMLReader::END_ELEMENT ) {
361 if ( $xml->name === 'group' ) {
362 $this->groupAttrs = [];
363 }
364 }
365 }
366 $xml->close();
367 }
368
369 protected function open() {
370 $this->xml = new XMLReader;
371 $this->xml->open( $this->fileName );
372 if ( !$this->xml ) {
373 throw new MWException( __METHOD__ . ": unable to open {$this->fileName}" );
374 }
375 while ( $this->xml->name !== 'ucd' && $this->xml->read() );
376 $this->xml->read();
377
378 return $this->xml;
379 }
380
381 /**
382 * Read the attributes of the current element node and return them
383 * as an array
384 * @return array
385 */
386 protected function readAttributes() {
387 $attrs = [];
388 while ( $this->xml->moveToNextAttribute() ) {
389 $attrs[$this->xml->name] = $this->xml->value;
390 }
391
392 return $attrs;
393 }
394
395 protected function handleChar() {
396 $attrs = $this->readAttributes() + $this->groupAttrs;
397 if ( isset( $attrs['cp'] ) ) {
398 $first = $last = hexdec( $attrs['cp'] );
399 } else {
400 $first = hexdec( $attrs['first-cp'] );
401 $last = hexdec( $attrs['last-cp'] );
402 unset( $attrs['first-cp'] );
403 unset( $attrs['last-cp'] );
404 }
405
406 for ( $cp = $first; $cp <= $last; $cp++ ) {
407 $hexCp = sprintf( "%04X", $cp );
408 foreach ( [ 'na', 'na1' ] as $nameProp ) {
409 if ( isset( $attrs[$nameProp] ) ) {
410 $attrs[$nameProp] = str_replace( '#', $hexCp, $attrs[$nameProp] );
411 }
412 }
413
414 while ( $this->currentBlock ) {
415 if ( $cp < $this->currentBlock[0] ) {
416 break;
417 } elseif ( $cp <= $this->currentBlock[1] ) {
418 $attrs['block'] = key( $this->blocks );
419 break;
420 } else {
421 $this->currentBlock = next( $this->blocks );
422 }
423 }
424
425 $attrs['cp'] = $hexCp;
426 call_user_func( $this->callback, $attrs );
427 }
428 }
429
430 public function getBlocks() {
431 if ( $this->blocks ) {
432 return $this->blocks;
433 }
434
435 $xml = $this->open();
436 while ( $xml->name !== 'blocks' && $xml->read() );
437
438 while ( $xml->read() ) {
439 if ( $xml->nodeType == XMLReader::ELEMENT ) {
440 if ( $xml->name === 'block' ) {
441 $attrs = $this->readAttributes();
442 $first = hexdec( $attrs['first-cp'] );
443 $last = hexdec( $attrs['last-cp'] );
444 $this->blocks[$attrs['name']] = [ $first, $last ];
445 }
446 }
447 }
448 $xml->close();
449
450 return $this->blocks;
451 }
452 }
453
454 $maintClass = GenerateCollationData::class;
455 require_once RUN_MAINTENANCE_IF_MAIN;