MediaWiki REL1_31
generateNormalizerDataAr.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/../Maintenance.php';
25
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Generate the normalizer data file for Arabic' );
37 $this->addOption( 'unicode-data-file', 'The local location of the data file ' .
38 'from http://unicode.org/Public/UNIDATA/UnicodeData.txt', false, true );
39 }
40
41 public function getDbType() {
43 }
44
45 public function execute() {
46 if ( !$this->hasOption( 'unicode-data-file' ) ) {
47 $dataFile = 'UnicodeData.txt';
48 if ( !file_exists( $dataFile ) ) {
49 $this->fatalError( "Unable to find UnicodeData.txt. Please specify " .
50 "its location with --unicode-data-file=<FILE>" );
51 }
52 } else {
53 $dataFile = $this->getOption( 'unicode-data-file' );
54 if ( !file_exists( $dataFile ) ) {
55 $this->fatalError( 'Unable to find the specified data file.' );
56 }
57 }
58
59 $file = fopen( $dataFile, 'r' );
60 if ( !$file ) {
61 $this->fatalError( 'Unable to open the data file.' );
62 }
63
64 // For the file format, see http://www.unicode.org/reports/tr44/
65 $fieldNames = [
66 'Code',
67 'Name',
68 'General_Category',
69 'Canonical_Combining_Class',
70 'Bidi_Class',
71 'Decomposition_Type_Mapping',
72 'Numeric_Type_Value_6',
73 'Numeric_Type_Value_7',
74 'Numeric_Type_Value_8',
75 'Bidi_Mirrored',
76 'Unicode_1_Name',
77 'ISO_Comment',
78 'Simple_Uppercase_Mapping',
79 'Simple_Lowercase_Mapping',
80 'Simple_Titlecase_Mapping'
81 ];
82
83 $pairs = [];
84
85 $lineNum = 0;
86 while ( false !== ( $line = fgets( $file ) ) ) {
87 ++$lineNum;
88
89 # Strip comments
90 $line = trim( substr( $line, 0, strcspn( $line, '#' ) ) );
91 if ( $line === '' ) {
92 continue;
93 }
94
95 # Split fields
96 $numberedData = explode( ';', $line );
97 $data = [];
98 foreach ( $fieldNames as $number => $name ) {
99 $data[$name] = $numberedData[$number];
100 }
101
102 $code = base_convert( $data['Code'], 16, 10 );
103 if ( ( $code >= 0xFB50 && $code <= 0xFDFF ) # Arabic presentation forms A
104 || ( $code >= 0xFE70 && $code <= 0xFEFF ) # Arabic presentation forms B
105 ) {
106 if ( $data['Decomposition_Type_Mapping'] === '' ) {
107 // No decomposition
108 continue;
109 }
110 if ( !preg_match( '/^ *(<\w*>) +([0-9A-F ]*)$/',
111 $data['Decomposition_Type_Mapping'], $m )
112 ) {
113 $this->error( "Can't parse Decomposition_Type/Mapping on line $lineNum" );
114 $this->error( $line );
115 continue;
116 }
117
118 $source = UtfNormal\Utils::hexSequenceToUtf8( $data['Code'] );
119 $dest = UtfNormal\Utils::hexSequenceToUtf8( $m[2] );
120 $pairs[$source] = $dest;
121 }
122 }
123
124 global $IP;
125 file_put_contents( "$IP/serialized/normalize-ar.ser", serialize( $pairs ) );
126 echo "ar: " . count( $pairs ) . " pairs written.\n";
127 }
128}
129
130$maintClass = GenerateNormalizerDataAr::class;
131require_once RUN_MAINTENANCE_IF_MAIN;
serialize()
$line
Definition cdb.php:59
Generates the normalizer data file for Arabic.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
const DB_NONE
Constants for DB access type.
hasOption( $name)
Checks to see if a particular param exists.
addDescription( $text)
Set the description text.
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.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2612
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:865
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:302
$IP
Definition update.php:3
require_once RUN_MAINTENANCE_IF_MAIN
$source