MediaWiki REL1_32
generateCollationData.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/../Maintenance.php';
25
27
35 public $dataDir;
36
38 public $weights;
39
46
48
52 const NORMAL_UPPERCASE = 0x08;
53 const NORMAL_HIRAGANA = 0x0E;
54
55 public function __construct() {
56 parent::__construct();
57 $this->addOption( 'data-dir', 'A directory on the local filesystem ' .
58 'containing allkeys.txt and ucd.all.grouped.xml from unicode.org',
59 false, true );
60 $this->addOption( 'debug-output', 'Filename for sending debug output to',
61 false, true );
62 }
63
64 public function execute() {
65 $this->dataDir = $this->getOption( 'data-dir', '.' );
66
67 $allkeysPresent = file_exists( "{$this->dataDir}/allkeys.txt" );
68 $ucdallPresent = file_exists( "{$this->dataDir}/ucd.all.grouped.xml" );
69
70 // As of January 2013, these links work for all versions of Unicode
71 // between 5.1 and 6.2, inclusive.
72 $allkeysURL = "https://www.unicode.org/Public/UCA/<Unicode version>/allkeys.txt";
73 $ucdallURL = "https://www.unicode.org/Public/<Unicode version>/ucdxml/ucd.all.grouped.zip";
74
75 if ( !$allkeysPresent || !$ucdallPresent ) {
76 $icuVersion = INTL_ICU_VERSION;
77 $unicodeVersion = IcuCollation::getUnicodeVersionForICU();
78
79 $error = "";
80
81 if ( !$allkeysPresent ) {
82 $error .= "Unable to find allkeys.txt. "
83 . "Download it and specify its location with --data-dir=<DIR>. "
84 . "\n\n";
85 }
86 if ( !$ucdallPresent ) {
87 $error .= "Unable to find ucd.all.grouped.xml. "
88 . "Download it, unzip, and specify its location with --data-dir=<DIR>. "
89 . "\n\n";
90 }
91
92 $versionKnown = false;
93 if ( version_compare( $icuVersion, "4.0", "<" ) ) {
94 // Extra old version
95 $error .= "You are using outdated version of ICU ($icuVersion), intended for "
96 . ( $unicodeVersion ? "Unicode $unicodeVersion" : "an unknown version of Unicode" )
97 . "; this file might not be avalaible for it, and it's not supported by MediaWiki. "
98 . " You are on your own; consider upgrading PHP's intl extension or try "
99 . "one of the files available at:";
100 } elseif ( version_compare( $icuVersion, "51.0", ">=" ) ) {
101 // Extra recent version
102 $error .= "You are using ICU $icuVersion, released after this script was last updated. "
103 . "Check what is the Unicode version it is using at http://site.icu-project.org/download . "
104 . "It can't be guaranteed everything will work, but appropriate file(s) should "
105 . "be available at:";
106 } else {
107 // ICU 4.0 to 50.x
108 $versionKnown = true;
109 $error .= "You are using ICU $icuVersion, intended for "
110 . ( $unicodeVersion ? "Unicode $unicodeVersion" : "an unknown version of Unicode" )
111 . ". Appropriate file(s) should be available at:";
112 }
113 $error .= "\n";
114
115 if ( $versionKnown && $unicodeVersion ) {
116 $allkeysURL = str_replace( "<Unicode version>", "$unicodeVersion.0", $allkeysURL );
117 $ucdallURL = str_replace( "<Unicode version>", "$unicodeVersion.0", $ucdallURL );
118 }
119
120 if ( !$allkeysPresent ) {
121 $error .= "* $allkeysURL\n";
122 }
123 if ( !$ucdallPresent ) {
124 $error .= "* $ucdallURL\n";
125 }
126
127 $this->fatalError( $error );
128 }
129
130 $debugOutFileName = $this->getOption( 'debug-output' );
131 if ( $debugOutFileName ) {
132 $this->debugOutFile = fopen( $debugOutFileName, 'w' );
133 if ( !$this->debugOutFile ) {
134 $this->fatalError( "Unable to open debug output file for writing" );
135 }
136 }
137 $this->loadUcd();
138 $this->generateFirstChars();
139 }
140
141 function loadUcd() {
142 $uxr = new UcdXmlReader( "{$this->dataDir}/ucd.all.grouped.xml" );
143 $uxr->readChars( [ $this, 'charCallback' ] );
144 }
145
146 function charCallback( $data ) {
147 // Skip non-printable characters,
148 // but do not skip a normal space (U+0020) since
149 // people like to use that as a fake no header symbol.
150 $category = substr( $data['gc'], 0, 1 );
151 if ( strpos( 'LNPS', $category ) === false
152 && $data['cp'] !== '0020'
153 ) {
154 return;
155 }
156 $cp = hexdec( $data['cp'] );
157
158 // Skip the CJK ideograph blocks, as an optimisation measure.
159 // UCA doesn't sort them properly anyway, without tailoring.
160 if ( IcuCollation::isCjk( $cp ) ) {
161 return;
162 }
163
164 // Skip the composed Hangul syllables, we will use the bare Jamo
165 // as first letters
166 if ( $data['block'] == 'Hangul Syllables' ) {
167 return;
168 }
169
170 // Calculate implicit weight per UTS #10 v6.0.0, sec 7.1.3
171 if ( $data['UIdeo'] === 'Y' ) {
172 if ( $data['block'] == 'CJK Unified Ideographs'
173 || $data['block'] == 'CJK Compatibility Ideographs'
174 ) {
175 $base = 0xFB40;
176 } else {
177 $base = 0xFB80;
178 }
179 } else {
180 $base = 0xFBC0;
181 }
182 $a = $base + ( $cp >> 15 );
183 $b = ( $cp & 0x7fff ) | 0x8000;
184
185 $this->weights[$cp] = sprintf( ".%04X.%04X", $a, $b );
186
187 if ( $data['dm'] !== '#' ) {
188 $this->mappedChars[$cp] = true;
189 }
190
191 if ( $cp % 4096 == 0 ) {
192 print "{$data['cp']}\n";
193 }
194 }
195
197 $file = fopen( "{$this->dataDir}/allkeys.txt", 'r' );
198 if ( !$file ) {
199 $this->fatalError( "Unable to open allkeys.txt" );
200 }
201
202 $goodTertiaryChars = [];
203
204 // For each character with an entry in allkeys.txt, overwrite the implicit
205 // entry in $this->weights that came from the UCD.
206 // Also gather a list of tertiary weights, for use in selecting the group header
207 while ( false !== ( $line = fgets( $file ) ) ) {
208 // We're only interested in single-character weights, pick them out with a regex
209 $line = trim( $line );
210 if ( !preg_match( '/^([0-9A-F]+)\s*;\s*([^#]*)/', $line, $m ) ) {
211 continue;
212 }
213
214 $cp = hexdec( $m[1] );
215 $allWeights = trim( $m[2] );
216 $primary = '';
217 $tertiary = '';
218
219 if ( !isset( $this->weights[$cp] ) ) {
220 // Non-printable, ignore
221 continue;
222 }
223 foreach ( StringUtils::explode( '[', $allWeights ) as $weightStr ) {
224 preg_match_all( '/[*.]([0-9A-F]+)/', $weightStr, $m );
225 if ( !empty( $m[1] ) ) {
226 if ( $m[1][0] !== '0000' ) {
227 $primary .= '.' . $m[1][0];
228 }
229 if ( $m[1][2] !== '0000' ) {
230 $tertiary .= '.' . $m[1][2];
231 }
232 }
233 }
234 $this->weights[$cp] = $primary;
235 if ( $tertiary === '.0008'
236 || $tertiary === '.000E'
237 ) {
238 $goodTertiaryChars[$cp] = true;
239 }
240 }
241 fclose( $file );
242
243 // Identify groups of characters with the same primary weight
244 $this->groups = [];
245 asort( $this->weights, SORT_STRING );
246 $prevWeight = reset( $this->weights );
247 $group = [];
248 foreach ( $this->weights as $cp => $weight ) {
249 if ( $weight !== $prevWeight ) {
250 $this->groups[$prevWeight] = $group;
251 $prevWeight = $weight;
252 if ( isset( $this->groups[$weight] ) ) {
253 $group = $this->groups[$weight];
254 } else {
255 $group = [];
256 }
257 }
258 $group[] = $cp;
259 }
260 if ( $group ) {
261 $this->groups[$prevWeight] = $group;
262 }
263
264 // If one character has a given primary weight sequence, and a second
265 // character has a longer primary weight sequence with an initial
266 // portion equal to the first character, then remove the second
267 // character. This avoids having characters like U+A732 (double A)
268 // polluting the basic Latin sort area.
269
270 foreach ( $this->groups as $weight => $group ) {
271 if ( preg_match( '/(\.[0-9A-F]*)\./', $weight, $m ) ) {
272 if ( isset( $this->groups[$m[1]] ) ) {
273 unset( $this->groups[$weight] );
274 }
275 }
276 }
277
278 ksort( $this->groups, SORT_STRING );
279
280 // Identify the header character in each group
281 $headerChars = [];
282 $prevChar = "\000";
283 $tertiaryCollator = new Collator( 'root' );
284 $primaryCollator = new Collator( 'root' );
285 $primaryCollator->setStrength( Collator::PRIMARY );
286 $numOutOfOrder = 0;
287 foreach ( $this->groups as $weight => $group ) {
288 $uncomposedChars = [];
289 $goodChars = [];
290 foreach ( $group as $cp ) {
291 if ( isset( $goodTertiaryChars[$cp] ) ) {
292 $goodChars[] = $cp;
293 }
294 if ( !isset( $this->mappedChars[$cp] ) ) {
295 $uncomposedChars[] = $cp;
296 }
297 }
298 $x = array_intersect( $goodChars, $uncomposedChars );
299 if ( !$x ) {
300 $x = $uncomposedChars;
301 if ( !$x ) {
302 $x = $group;
303 }
304 }
305
306 // Use ICU to pick the lowest sorting character in the selection
307 $tertiaryCollator->sort( $x );
308 $cp = $x[0];
309
310 $char = UtfNormal\Utils::codepointToUtf8( $cp );
311 $headerChars[] = $char;
312 if ( $primaryCollator->compare( $char, $prevChar ) <= 0 ) {
313 $numOutOfOrder++;
314 }
315 $prevChar = $char;
316
317 if ( $this->debugOutFile ) {
318 fwrite( $this->debugOutFile, sprintf( "%05X %s %s (%s)\n", $cp, $weight, $char,
319 implode( ' ', array_map( 'UtfNormal\Utils::codepointToUtf8', $group ) ) ) );
320 }
321 }
322
323 print "Out of order: $numOutOfOrder / " . count( $headerChars ) . "\n";
324
325 global $IP;
326 $writer = new StaticArrayWriter();
327 file_put_contents(
328 "$IP/includes/collation/data/first-letters-root.php",
329 $writer->create( $headerChars, 'File created by generateCollationData.php' )
330 );
331 echo "first-letters-root: file written.\n";
332 }
333}
334
336 public $fileName;
337 public $callback;
339 public $xml;
340 public $blocks = [];
342
343 function __construct( $fileName ) {
344 $this->fileName = $fileName;
345 }
346
347 public function readChars( $callback ) {
348 $this->getBlocks();
349 $this->currentBlock = reset( $this->blocks );
350 $xml = $this->open();
351 $this->callback = $callback;
352
353 while ( $xml->name !== 'repertoire' && $xml->next() );
354
355 while ( $xml->read() ) {
356 if ( $xml->nodeType == XMLReader::ELEMENT ) {
357 if ( $xml->name === 'group' ) {
358 $this->groupAttrs = $this->readAttributes();
359 } elseif ( $xml->name === 'char' ) {
360 $this->handleChar();
361 }
362 } elseif ( $xml->nodeType === XMLReader::END_ELEMENT ) {
363 if ( $xml->name === 'group' ) {
364 $this->groupAttrs = [];
365 }
366 }
367 }
368 $xml->close();
369 }
370
371 protected function open() {
372 $this->xml = new XMLReader;
373 $this->xml->open( $this->fileName );
374 if ( !$this->xml ) {
375 throw new MWException( __METHOD__ . ": unable to open {$this->fileName}" );
376 }
377 while ( $this->xml->name !== 'ucd' && $this->xml->read() );
378 $this->xml->read();
379
380 return $this->xml;
381 }
382
388 protected function readAttributes() {
389 $attrs = [];
390 while ( $this->xml->moveToNextAttribute() ) {
391 $attrs[$this->xml->name] = $this->xml->value;
392 }
393
394 return $attrs;
395 }
396
397 protected function handleChar() {
398 $attrs = $this->readAttributes() + $this->groupAttrs;
399 if ( isset( $attrs['cp'] ) ) {
400 $first = $last = hexdec( $attrs['cp'] );
401 } else {
402 $first = hexdec( $attrs['first-cp'] );
403 $last = hexdec( $attrs['last-cp'] );
404 unset( $attrs['first-cp'] );
405 unset( $attrs['last-cp'] );
406 }
407
408 for ( $cp = $first; $cp <= $last; $cp++ ) {
409 $hexCp = sprintf( "%04X", $cp );
410 foreach ( [ 'na', 'na1' ] as $nameProp ) {
411 if ( isset( $attrs[$nameProp] ) ) {
412 $attrs[$nameProp] = str_replace( '#', $hexCp, $attrs[$nameProp] );
413 }
414 }
415
416 while ( $this->currentBlock ) {
417 if ( $cp < $this->currentBlock[0] ) {
418 break;
419 } elseif ( $cp <= $this->currentBlock[1] ) {
420 $attrs['block'] = key( $this->blocks );
421 break;
422 } else {
423 $this->currentBlock = next( $this->blocks );
424 }
425 }
426
427 $attrs['cp'] = $hexCp;
428 call_user_func( $this->callback, $attrs );
429 }
430 }
431
432 public function getBlocks() {
433 if ( $this->blocks ) {
434 return $this->blocks;
435 }
436
437 $xml = $this->open();
438 while ( $xml->name !== 'blocks' && $xml->read() );
439
440 while ( $xml->read() ) {
441 if ( $xml->nodeType == XMLReader::ELEMENT ) {
442 if ( $xml->name === 'block' ) {
443 $attrs = $this->readAttributes();
444 $first = hexdec( $attrs['first-cp'] );
445 $last = hexdec( $attrs['last-cp'] );
446 $this->blocks[$attrs['name']] = [ $first, $last ];
447 }
448 }
449 }
450 $xml->close();
451
452 return $this->blocks;
453 }
454}
455
456$maintClass = GenerateCollationData::class;
457require_once RUN_MAINTENANCE_IF_MAIN;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$IP
Definition WebStart.php:41
$line
Definition cdb.php:59
Generate first letter data files for Collation.php.
__construct()
Default constructor.
$weights
The primary weights, indexed by codepoint.
execute()
Do the actual work.
$dataDir
The directory with source data files in it.
$mappedChars
A hashtable keyed by codepoint, where presence indicates that a character has a decomposition mapping...
const NORMAL_UPPERCASE
Important tertiary weights from UTS #10 section 7.2.
static isCjk( $codepoint)
Test if a code point is a CJK (Chinese, Japanese, Korean) character.
static getUnicodeVersionForICU()
Return the version of Unicode appropriate for the version of ICU library currently in use,...
MediaWiki exception.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
static explode( $separator, $subject)
Workalike for explode() with limited memory usage.
readAttributes()
Read the attributes of the current element node and return them as an array.
Format a static PHP array to be written to a file.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
while(( $__line=Maintenance::readconsole()) !==false) print
Definition eval.php:64
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
Definition hooks.txt:2214
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing groups(accessed through $special->getFilterGroup)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
require_once RUN_MAINTENANCE_IF_MAIN
$last