Go to the documentation of this file.
38 wfDebug(
"DjVu is disabled, please set \$wgDjvuRenderer and \$wgDjvuDump\n" );
60 return $file->getSize() > static::EXPENSIVE_SIZE_LIMIT;
76 'img_width' =>
'width',
92 if ( in_array(
$name, [
'width',
'height',
'page' ] ) ) {
109 if ( !isset(
$params[
'width'] ) ) {
113 return "page{$page}-{$params['width']}px";
122 if ( preg_match(
'/^page(\d+)-(\d+)px$/', $str, $m ) ) {
123 return [
'width' => $m[2],
'page' => $m[1] ];
158 if (
$flags & self::TRANSFORM_LATER ) {
180 if (
$image->getSize() >= 1e7 ) {
184 return $image->getLocalRefPath();
190 $srcPath =
$image->getLocalRefPath();
193 if ( $srcPath ===
false ) {
195 sprintf(
'Thumbnail failed on %s: could not get local copy of "%s"',
204 # Use a subshell (brackets) to aggregate stderr from both pipeline commands
205 # before redirecting it to the overall stdout. This works in both Linux and Windows XP.
210 "-size={$params['physicalWidth']}x{$params['physicalHeight']}",
213 $cmd .=
" | {$wgDjvuPostProcessor}";
216 wfDebug( __METHOD__ .
": $cmd\n" );
221 if (
$retval != 0 || $removed ) {
244 $deja =
new DjVuImage(
$path );
245 } elseif ( !isset(
$image->dejaImage ) ) {
246 $deja =
$image->dejaImage =
new DjVuImage(
$path );
248 $deja =
$image->dejaImage;
263 if ( substr( $metadata, 0, 3 ) ===
'<?xml' ) {
268 MediaWiki\suppressWarnings();
270 MediaWiki\restoreWarnings();
271 if ( is_array( $unser ) ) {
272 if ( isset( $unser[
'error'] ) ) {
274 } elseif ( isset( $unser[
'xml'] ) ) {
275 return $unser[
'xml'];
278 throw new MWException(
"Error unserializing DjVu metadata." );
293 if ( $gettext && isset(
$image->djvuTextTree ) ) {
294 return $image->djvuTextTree;
296 if ( !$gettext && isset(
$image->dejaMetaTree ) ) {
297 return $image->dejaMetaTree;
302 wfDebug(
"DjVu XML metadata is invalid or missing, should have been fixed in upgradeRow\n" );
308 $image->djvuTextTree = $trees[
'TextTree'];
309 $image->dejaMetaTree = $trees[
'MetaTree'];
312 return $image->djvuTextTree;
314 return $image->dejaMetaTree;
324 MediaWiki\suppressWarnings();
329 $tree =
new SimpleXMLElement( $metadata, LIBXML_PARSEHUGE );
330 if ( $tree->getName() ==
'mw-djvu' ) {
332 foreach ( $tree->children()
as $b ) {
333 if ( $b->getName() ==
'DjVuTxt' ) {
337 } elseif ( $b->getName() ==
'DjVuXML' ) {
344 }
catch ( Exception
$e ) {
345 wfDebug(
"Bogus multipage XML metadata\n" );
347 MediaWiki\restoreWarnings();
349 return [
'MetaTree' => $metaTree,
'TextTree' => $textTree ];
359 if ( !isset(
$mime ) ) {
368 wfDebug(
"Getting DjVu metadata for $path\n" );
371 if ( $xml ===
false ) {
373 return serialize( [
'error' =>
'Error extracting metadata' ] );
384 return !empty( $metadata ) && $metadata !=
serialize( [] );
390 return $info ? $info[
'pageCount'] :
false;
397 if ( $info && isset( $info[
'dimensionsByPage'][$index] ) ) {
398 return $info[
'dimensionsByPage'][$index];
406 return $cache->getWithSetCallback(
407 $cache->makeKey(
'file-djvu',
'dimensions', $file->
getSha1() ),
408 $cache::TTL_INDEFINITE,
409 function ()
use ( $file ) {
413 [
'pcTTL' => $cache::TTL_INDEFINITE ]
428 $count =
count( $metatree->xpath(
'//OBJECT' ) );
429 for ( $i = 0; $i < $count; $i++ ) {
430 $o = $metatree->BODY[0]->OBJECT[$i];
433 'width' => (int)$o[
'width'],
434 'height' => (
int)$o[
'height'],
437 $dimsByPage[$i] =
false;
441 return [
'pageCount' => $count,
'dimensionsByPage' => $dimsByPage ];
455 $o = $tree->BODY[0]->PAGE[$page - 1];
isMetadataValid( $image, $metadata)
Check if the metadata string is valid for this handler.
Media transform output for images.
getDimensionInfoFromMetaTree( $metatree)
Given an XML metadata tree, returns dimension information about the document.
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
getMetadata()
Get handler-specific metadata Overridden by LocalFile, UnregisteredLocalFile STUB.
extractTreesFromMetadata( $metadata)
Extracts metadata and text trees from metadata XML in string form.
$wgDjvuPostProcessor
Shell command for the DJVU post processor Default: pnmtojpeg, since ddjvu generates ppm output Set th...
getUnserializedMetadata(File $file)
Get metadata, unserializing it if neccessary.
pageCount(File $image)
Page count for a multi-page document, false if unsupported or unknown.
getSha1()
Get the SHA-1 base 36 hash of the file.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
unserialize( $serialized)
wfHostname()
Fetch server name for use in error reporting etc.
Allows to change the fields on the form that will be generated $name
Convenience class for dealing with PoolCounters using callbacks.
makeParamString( $params)
$wgDjvuRenderer
Path of the ddjvu DJVU renderer Enable this and $wgDjvuDump to enable djvu rendering example: $wgDjvu...
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
const EXPENSIVE_SIZE_LIMIT
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
getMetadata( $image, $path)
Get handler-specific metadata which will be saved in the img_metadata field.
getDjVuImage( $image, $path)
Cache an instance of DjVuImage in an Image object, return that instance.
Implements some public methods and some protected utility functions which are required by multiple ch...
execute( $skipcache=false)
Get the result of the work (whatever it is), or the result of the error() function.
$wgDjvuToXML
Path of the djvutoxml executable This works like djvudump except much, much slower as of version 3....
getPageDimensions(File $image, $page)
Get an associative array of page dimensions Currently "width" and "height" are understood,...
Media handler abstract base class for images.
isExpensiveToThumbnail( $file)
True if creating thumbnails from the file is large or otherwise resource-intensive.
validateParam( $name, $value)
when a variable name is used in a it is silently declared as a new masking the global
$wgDjvuOutputExtension
File extension for the DJVU post processor output.
static singleton()
Get an instance of this class.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
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 modifiable after all normalizations have been except for the $wgMaxImageArea check $image
normaliseParams( $image, &$params)
if( $ext=='php'|| $ext=='php5') $mime
getImageSize( $image, $path)
Get an image size array like that returned by getimagesize(), or false if it can't be determined.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account incomplete not yet checked for validity & $retval
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
getMetadataType( $image)
Get a string describing the type of metadata, for display purposes.
getScriptParams( $params)
static getMainWANInstance()
Get the main WAN cache object.
getThumbType( $ext, $mime, $params=null)
Get the thumbnail extension and MIME type for a given source MIME type.
doTransform( $image, $dstPath, $dstUrl, $params, $flags=0)
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
getMetaTree( $image, $gettext=false)
Cache a document tree for the DjVu XML metadata.
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 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 additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<
$wgDjvuDump
Path of the djvudump executable Enable this and $wgDjvuRenderer to enable djvu rendering example: $wg...
getPageText(File $image, $page)
getDimensionInfo(File $file)
it s the revision text itself In either if gzip is the revision text is gzipped $flags
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...