Followup to r91608: reduce impact of bug 29784 (high jsmin+ memory usage during parsi...
[lhc/web/wiklou.git] / includes / resourceloader / ResourceLoaderFileModule.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Trevor Parscal
20 * @author Roan Kattouw
21 */
22
23 /**
24 * ResourceLoader module based on local JavaScript/CSS files.
25 */
26 class ResourceLoaderFileModule extends ResourceLoaderModule {
27
28 /* Protected Members */
29
30 /** String: Local base path, see __construct() */
31 protected $localBasePath = '';
32 /** String: Remote base path, see __construct() */
33 protected $remoteBasePath = '';
34 /**
35 * Array: List of paths to JavaScript files to always include
36 * @example array( [file-path], [file-path], ... )
37 */
38 protected $scripts = array();
39 /**
40 * Array: List of JavaScript files to include when using a specific language
41 * @example array( [language-code] => array( [file-path], [file-path], ... ), ... )
42 */
43 protected $languageScripts = array();
44 /**
45 * Array: List of JavaScript files to include when using a specific skin
46 * @example array( [skin-name] => array( [file-path], [file-path], ... ), ... )
47 */
48 protected $skinScripts = array();
49 /**
50 * Array: List of paths to JavaScript files to include in debug mode
51 * @example array( [skin-name] => array( [file-path], [file-path], ... ), ... )
52 */
53 protected $debugScripts = array();
54 /**
55 * Array: List of paths to JavaScript files to include in the startup module
56 * @example array( [file-path], [file-path], ... )
57 */
58 protected $loaderScripts = array();
59 /**
60 * Array: List of paths to CSS files to always include
61 * @example array( [file-path], [file-path], ... )
62 */
63 protected $styles = array();
64 /**
65 * Array: List of paths to CSS files to include when using specific skins
66 * @example array( [file-path], [file-path], ... )
67 */
68 protected $skinStyles = array();
69 /**
70 * Array: List of modules this module depends on
71 * @example array( [file-path], [file-path], ... )
72 */
73 protected $dependencies = array();
74 /**
75 * Array: List of message keys used by this module
76 * @example array( [message-key], [message-key], ... )
77 */
78 protected $messages = array();
79 /** String: Name of group to load this module in */
80 protected $group;
81 /** String: Position on the page to load this module at */
82 protected $position = 'bottom';
83 /** Boolean: Link to raw files in debug mode */
84 protected $debugRaw = true;
85 /**
86 * Array: Cache for mtime
87 * @example array( [hash] => [mtime], [hash] => [mtime], ... )
88 */
89 protected $modifiedTime = array();
90 /**
91 * Array: Place where readStyleFile() tracks file dependencies
92 * @example array( [file-path], [file-path], ... )
93 */
94 protected $localFileRefs = array();
95
96 /* Methods */
97
98 /**
99 * Constructs a new module from an options array.
100 *
101 * @param $options Array: List of options; if not given or empty, an empty module will be
102 * constructed
103 * @param $localBasePath String: Base path to prepend to all local paths in $options. Defaults
104 * to $IP
105 * @param $remoteBasePath String: Base path to prepend to all remote paths in $options. Defaults
106 * to $wgScriptPath
107 *
108 * Below is a description for the $options array:
109 * @code
110 * array(
111 * // Base path to prepend to all local paths in $options. Defaults to $IP
112 * 'localBasePath' => [base path],
113 * // Base path to prepend to all remote paths in $options. Defaults to $wgScriptPath
114 * 'remoteBasePath' => [base path],
115 * // Equivalent of remoteBasePath, but relative to $wgExtensionAssetsPath
116 * 'remoteExtPath' => [base path],
117 * // Scripts to always include
118 * 'scripts' => [file path string or array of file path strings],
119 * // Scripts to include in specific language contexts
120 * 'languageScripts' => array(
121 * [language code] => [file path string or array of file path strings],
122 * ),
123 * // Scripts to include in specific skin contexts
124 * 'skinScripts' => array(
125 * [skin name] => [file path string or array of file path strings],
126 * ),
127 * // Scripts to include in debug contexts
128 * 'debugScripts' => [file path string or array of file path strings],
129 * // Scripts to include in the startup module
130 * 'loaderScripts' => [file path string or array of file path strings],
131 * // Modules which must be loaded before this module
132 * 'dependencies' => [modile name string or array of module name strings],
133 * // Styles to always load
134 * 'styles' => [file path string or array of file path strings],
135 * // Styles to include in specific skin contexts
136 * 'skinStyles' => array(
137 * [skin name] => [file path string or array of file path strings],
138 * ),
139 * // Messages to always load
140 * 'messages' => [array of message key strings],
141 * // Group which this module should be loaded together with
142 * 'group' => [group name string],
143 * // Position on the page to load this module at
144 * 'position' => ['bottom' (default) or 'top']
145 * )
146 * @endcode
147 */
148 public function __construct( $options = array(), $localBasePath = null,
149 $remoteBasePath = null )
150 {
151 global $IP, $wgScriptPath;
152 $this->localBasePath = $localBasePath === null ? $IP : $localBasePath;
153 $this->remoteBasePath = $remoteBasePath === null ? $wgScriptPath : $remoteBasePath;
154
155 if ( isset( $options['remoteExtPath'] ) ) {
156 global $wgExtensionAssetsPath;
157 $this->remoteBasePath = $wgExtensionAssetsPath . '/' . $options['remoteExtPath'];
158 }
159
160 foreach ( $options as $member => $option ) {
161 switch ( $member ) {
162 // Lists of file paths
163 case 'scripts':
164 case 'debugScripts':
165 case 'loaderScripts':
166 case 'styles':
167 $this->{$member} = (array) $option;
168 break;
169 // Collated lists of file paths
170 case 'languageScripts':
171 case 'skinScripts':
172 case 'skinStyles':
173 if ( !is_array( $option ) ) {
174 throw new MWException(
175 "Invalid collated file path list error. " .
176 "'$option' given, array expected."
177 );
178 }
179 foreach ( $option as $key => $value ) {
180 if ( !is_string( $key ) ) {
181 throw new MWException(
182 "Invalid collated file path list key error. " .
183 "'$key' given, string expected."
184 );
185 }
186 $this->{$member}[$key] = (array) $value;
187 }
188 break;
189 // Lists of strings
190 case 'dependencies':
191 case 'messages':
192 $this->{$member} = (array) $option;
193 break;
194 // Single strings
195 case 'group':
196 case 'position':
197 case 'localBasePath':
198 case 'remoteBasePath':
199 $this->{$member} = (string) $option;
200 break;
201 // Single booleans
202 case 'debugRaw':
203 $this->{$member} = (bool) $option;
204 break;
205 }
206 }
207 // Make sure the remote base path is a complete valid url
208 $this->remoteBasePath = wfExpandUrl( $this->remoteBasePath );
209 }
210
211 /**
212 * Gets all scripts for a given context concatenated together.
213 *
214 * @param $context ResourceLoaderContext: Context in which to generate script
215 * @return String: JavaScript code for $context
216 */
217 public function getScript( ResourceLoaderContext $context ) {
218 $files = $this->getScriptFiles( $context );
219 if ( $context->getDebug() && $this->debugRaw ) {
220 $urls = array();
221 foreach ( $this->getScriptFiles( $context ) as $file ) {
222 $urls[] = $this->getRemotePath( $file );
223 }
224 return $urls;
225 }
226 return $this->readScriptFiles( $files );
227 }
228
229 /**
230 * Gets loader script.
231 *
232 * @return String: JavaScript code to be added to startup module
233 */
234 public function getLoaderScript() {
235 if ( count( $this->loaderScripts ) == 0 ) {
236 return false;
237 }
238 return $this->readScriptFiles( $this->loaderScripts );
239 }
240
241 /**
242 * Gets all styles for a given context concatenated together.
243 *
244 * @param $context ResourceLoaderContext: Context in which to generate styles
245 * @return String: CSS code for $context
246 */
247 public function getStyles( ResourceLoaderContext $context ) {
248 $styles = $this->readStyleFiles(
249 $this->getStyleFiles( $context ),
250 $this->getFlip( $context )
251 );
252 if ( !$context->getOnly() && $context->getDebug() && $this->debugRaw ) {
253 $urls = array();
254 foreach ( $this->getStyleFiles( $context ) as $mediaType => $list ) {
255 $urls[$mediaType] = array();
256 foreach ( $list as $file ) {
257 $urls[$mediaType][] = $this->getRemotePath( $file );
258 }
259 }
260 return $urls;
261 }
262 // Collect referenced files
263 $this->localFileRefs = array_unique( $this->localFileRefs );
264 // If the list has been modified since last time we cached it, update the cache
265 if ( $this->localFileRefs !== $this->getFileDependencies( $context->getSkin() ) ) {
266 $dbw = wfGetDB( DB_MASTER );
267 $dbw->replace( 'module_deps',
268 array( array( 'md_module', 'md_skin' ) ), array(
269 'md_module' => $this->getName(),
270 'md_skin' => $context->getSkin(),
271 'md_deps' => FormatJson::encode( $this->localFileRefs ),
272 )
273 );
274 }
275 return $styles;
276 }
277
278 /**
279 * Gets list of message keys used by this module.
280 *
281 * @return Array: List of message keys
282 */
283 public function getMessages() {
284 return $this->messages;
285 }
286
287 /**
288 * Gets the name of the group this module should be loaded in.
289 *
290 * @return String: Group name
291 */
292 public function getGroup() {
293 return $this->group;
294 }
295
296 /**
297 * @return string
298 */
299 public function getPosition() {
300 return $this->position;
301 }
302
303 /**
304 * Gets list of names of modules this module depends on.
305 *
306 * @return Array: List of module names
307 */
308 public function getDependencies() {
309 return $this->dependencies;
310 }
311
312 /**
313 * Get the last modified timestamp of this module.
314 *
315 * Last modified timestamps are calculated from the highest last modified
316 * timestamp of this module's constituent files as well as the files it
317 * depends on. This function is context-sensitive, only performing
318 * calculations on files relevant to the given language, skin and debug
319 * mode.
320 *
321 * @param $context ResourceLoaderContext: Context in which to calculate
322 * the modified time
323 * @return Integer: UNIX timestamp
324 * @see ResourceLoaderModule::getFileDependencies
325 */
326 public function getModifiedTime( ResourceLoaderContext $context ) {
327 if ( isset( $this->modifiedTime[$context->getHash()] ) ) {
328 return $this->modifiedTime[$context->getHash()];
329 }
330 wfProfileIn( __METHOD__ );
331
332 $files = array();
333
334 // Flatten style files into $files
335 $styles = self::collateFilePathListByOption( $this->styles, 'media', 'all' );
336 foreach ( $styles as $styleFiles ) {
337 $files = array_merge( $files, $styleFiles );
338 }
339 $skinFiles = self::tryForKey(
340 self::collateFilePathListByOption( $this->skinStyles, 'media', 'all' ),
341 $context->getSkin(),
342 'default'
343 );
344 foreach ( $skinFiles as $styleFiles ) {
345 $files = array_merge( $files, $styleFiles );
346 }
347
348 // Final merge, this should result in a master list of dependent files
349 $files = array_merge(
350 $files,
351 $this->scripts,
352 $context->getDebug() ? $this->debugScripts : array(),
353 self::tryForKey( $this->languageScripts, $context->getLanguage() ),
354 self::tryForKey( $this->skinScripts, $context->getSkin(), 'default' ),
355 $this->loaderScripts
356 );
357 $files = array_map( array( $this, 'getLocalPath' ), $files );
358 // File deps need to be treated separately because they're already prefixed
359 $files = array_merge( $files, $this->getFileDependencies( $context->getSkin() ) );
360
361 // If a module is nothing but a list of dependencies, we need to avoid
362 // giving max() an empty array
363 if ( count( $files ) === 0 ) {
364 wfProfileOut( __METHOD__ );
365 return $this->modifiedTime[$context->getHash()] = 1;
366 }
367
368 wfProfileIn( __METHOD__.'-filemtime' );
369 $filesMtime = max( array_map( 'filemtime', $files ) );
370 wfProfileOut( __METHOD__.'-filemtime' );
371 $this->modifiedTime[$context->getHash()] = max(
372 $filesMtime,
373 $this->getMsgBlobMtime( $context->getLanguage() ) );
374
375 wfProfileOut( __METHOD__ );
376 return $this->modifiedTime[$context->getHash()];
377 }
378
379 /* Protected Methods */
380
381 /**
382 * @param $path string
383 * @return string
384 */
385 protected function getLocalPath( $path ) {
386 return "{$this->localBasePath}/$path";
387 }
388
389 /**
390 * @param $path string
391 * @return string
392 */
393 protected function getRemotePath( $path ) {
394 return "{$this->remoteBasePath}/$path";
395 }
396
397 /**
398 * Collates file paths by option (where provided).
399 *
400 * @param $list Array: List of file paths in any combination of index/path
401 * or path/options pairs
402 * @param $option String: option name
403 * @param $default Mixed: default value if the option isn't set
404 * @return Array: List of file paths, collated by $option
405 */
406 protected static function collateFilePathListByOption( array $list, $option, $default ) {
407 $collatedFiles = array();
408 foreach ( (array) $list as $key => $value ) {
409 if ( is_int( $key ) ) {
410 // File name as the value
411 if ( !isset( $collatedFiles[$default] ) ) {
412 $collatedFiles[$default] = array();
413 }
414 $collatedFiles[$default][] = $value;
415 } elseif ( is_array( $value ) ) {
416 // File name as the key, options array as the value
417 $optionValue = isset( $value[$option] ) ? $value[$option] : $default;
418 if ( !isset( $collatedFiles[$optionValue] ) ) {
419 $collatedFiles[$optionValue] = array();
420 }
421 $collatedFiles[$optionValue][] = $key;
422 }
423 }
424 return $collatedFiles;
425 }
426
427 /**
428 * Gets a list of element that match a key, optionally using a fallback key.
429 *
430 * @param $list Array: List of lists to select from
431 * @param $key String: Key to look for in $map
432 * @param $fallback String: Key to look for in $list if $key doesn't exist
433 * @return Array: List of elements from $map which matched $key or $fallback,
434 * or an empty list in case of no match
435 */
436 protected static function tryForKey( array $list, $key, $fallback = null ) {
437 if ( isset( $list[$key] ) && is_array( $list[$key] ) ) {
438 return $list[$key];
439 } elseif ( is_string( $fallback )
440 && isset( $list[$fallback] )
441 && is_array( $list[$fallback] ) )
442 {
443 return $list[$fallback];
444 }
445 return array();
446 }
447
448 /**
449 * Gets a list of file paths for all scripts in this module, in order of propper execution.
450 *
451 * @param $context ResourceLoaderContext: Context
452 * @return Array: List of file paths
453 */
454 protected function getScriptFiles( ResourceLoaderContext $context ) {
455 $files = array_merge(
456 $this->scripts,
457 self::tryForKey( $this->languageScripts, $context->getLanguage() ),
458 self::tryForKey( $this->skinScripts, $context->getSkin(), 'default' )
459 );
460 if ( $context->getDebug() ) {
461 $files = array_merge( $files, $this->debugScripts );
462 }
463 return $files;
464 }
465
466 /**
467 * Gets a list of file paths for all styles in this module, in order of propper inclusion.
468 *
469 * @param $context ResourceLoaderContext: Context
470 * @return Array: List of file paths
471 */
472 protected function getStyleFiles( ResourceLoaderContext $context ) {
473 return array_merge_recursive(
474 self::collateFilePathListByOption( $this->styles, 'media', 'all' ),
475 self::collateFilePathListByOption(
476 self::tryForKey( $this->skinStyles, $context->getSkin(), 'default' ), 'media', 'all'
477 )
478 );
479 }
480
481 /**
482 * Gets the contents of a list of JavaScript files.
483 *
484 * @param $scripts Array: List of file paths to scripts to read, remap and concetenate
485 * @return String: Concatenated and remapped JavaScript data from $scripts
486 */
487 protected function readScriptFiles( array $scripts ) {
488 global $wgResourceLoaderValidateStaticJS;
489 if ( empty( $scripts ) ) {
490 return '';
491 }
492 $js = '';
493 foreach ( array_unique( $scripts ) as $fileName ) {
494 $localPath = $this->getLocalPath( $fileName );
495 $contents = file_get_contents( $localPath );
496 if ( $contents === false ) {
497 throw new MWException( __METHOD__.": script file not found: \"$localPath\"" );
498 }
499 if ( $wgResourceLoaderValidateStaticJS ) {
500 // Static files don't really need to be checked as often; unlike
501 // on-wiki module they shouldn't change unexpectedly without
502 // admin interference.
503 $contents = $this->validateScriptFile( $fileName, $contents );
504 }
505 $js .= $contents . "\n";
506 }
507 return $js;
508 }
509
510 /**
511 * Gets the contents of a list of CSS files.
512 *
513 * @param $styles Array: List of media type/list of file paths pairs, to read, remap and
514 * concetenate
515 *
516 * @param $flip bool
517 *
518 * @return Array: List of concatenated and remapped CSS data from $styles,
519 * keyed by media type
520 */
521 protected function readStyleFiles( array $styles, $flip ) {
522 if ( empty( $styles ) ) {
523 return array();
524 }
525 foreach ( $styles as $media => $files ) {
526 $uniqueFiles = array_unique( $files );
527 $styles[$media] = implode(
528 "\n",
529 array_map(
530 array( $this, 'readStyleFile' ),
531 $uniqueFiles,
532 array_fill( 0, count( $uniqueFiles ), $flip )
533 )
534 );
535 }
536 return $styles;
537 }
538
539 /**
540 * Reads a style file.
541 *
542 * This method can be used as a callback for array_map()
543 *
544 * @param $path String: File path of script file to read
545 * @param $flip bool
546 *
547 * @return String: CSS data in script file
548 */
549 protected function readStyleFile( $path, $flip ) {
550 $localPath = $this->getLocalPath( $path );
551 $style = file_get_contents( $localPath );
552 if ( $style === false ) {
553 throw new MWException( __METHOD__.": style file not found: \"$localPath\"" );
554 }
555 if ( $flip ) {
556 $style = CSSJanus::transform( $style, true, false );
557 }
558 $dirname = dirname( $path );
559 if ( $dirname == '.' ) {
560 // If $path doesn't have a directory component, don't prepend a dot
561 $dirname = '';
562 }
563 $dir = $this->getLocalPath( $dirname );
564 $remoteDir = $this->getRemotePath( $dirname );
565 // Get and register local file references
566 $this->localFileRefs = array_merge(
567 $this->localFileRefs,
568 CSSMin::getLocalFileReferences( $style, $dir ) );
569 return CSSMin::remap(
570 $style, $dir, $remoteDir, true
571 );
572 }
573
574 /**
575 * Get whether CSS for this module should be flipped
576 * @param $context ResourceLoaderContext
577 * @return bool
578 */
579 public function getFlip( $context ) {
580 return $context->getDirection() === 'rtl';
581 }
582 }