48 $this->mFilename = $filename;
58 return $info !==
false;
68 if ( $data !==
false ) {
69 $width = $data[
'width'];
70 $height = $data[
'height'];
72 return [ $width, $height,
'DjVu',
73 "width=\"$width\" height=\"$height\"" ];
85 $file = fopen( $this->mFilename,
'rb' );
86 $header = fread( $file, 12 );
89 extract( unpack(
'a4magic/a4chunk/NchunkLength', $header ) );
92 echo
"$chunk $chunkLength\n";
93 $this->
dumpForm( $file, $chunkLength, 1 );
97 private function dumpForm( $file, $length, $indent ) {
98 $start = ftell( $file );
99 $secondary = fread( $file, 4 );
100 echo str_repeat(
' ', $indent * 4 ) .
"($secondary)\n";
101 while ( ftell( $file ) - $start < $length ) {
102 $chunkHeader = fread( $file, 8 );
103 if ( $chunkHeader ==
'' ) {
108 extract( unpack(
'a4chunk/NchunkLength', $chunkHeader ) );
111 echo str_repeat(
' ', $indent * 4 ) .
"$chunk $chunkLength\n";
113 if ( $chunk ==
'FORM' ) {
114 $this->
dumpForm( $file, $chunkLength, $indent + 1 );
116 fseek( $file, $chunkLength, SEEK_CUR );
117 if ( $chunkLength & 1 == 1 ) {
119 fseek( $file, 1, SEEK_CUR );
126 MediaWiki\suppressWarnings();
127 $file = fopen( $this->mFilename,
'rb' );
128 MediaWiki\restoreWarnings();
129 if ( $file ===
false ) {
130 wfDebug( __METHOD__ .
": missing or failed file read\n" );
135 $header = fread( $file, 16 );
138 if ( strlen( $header ) < 16 ) {
139 wfDebug( __METHOD__ .
": too short file header\n" );
143 extract( unpack(
'a4magic/a4form/NformLength/a4subtype', $header ) );
149 if ( $magic !=
'AT&T' ) {
150 wfDebug( __METHOD__ .
": not a DjVu file\n" );
151 } elseif ( $subtype ==
'DJVU' ) {
154 } elseif ( $subtype ==
'DJVM' ) {
158 wfDebug( __METHOD__ .
": unrecognized DJVU file type '$formType'\n" );
167 $header = fread( $file, 8 );
168 if ( strlen( $header ) < 8 ) {
173 extract( unpack(
'a4chunk/Nlength', $header ) );
177 return [ $chunk, $length ];
182 fseek( $file, $chunkLength, SEEK_CUR );
184 if ( $chunkLength & 0x01 == 1 && !feof( $file ) ) {
186 fseek( $file, 1, SEEK_CUR );
193 $start = ftell( $file );
200 if ( $chunk ==
'FORM' ) {
201 $subtype = fread( $file, 4 );
202 if ( $subtype ==
'DJVU' ) {
203 wfDebug( __METHOD__ .
": found first subpage\n" );
209 wfDebug( __METHOD__ .
": skipping '$chunk' chunk\n" );
212 }
while ( $length != 0 && !feof( $file ) && ftell( $file ) - $start < $formLength );
214 wfDebug( __METHOD__ .
": multi-page DJVU file contained no pages\n" );
221 if ( $chunk !=
'INFO' ) {
222 wfDebug( __METHOD__ .
": expected INFO chunk, got '$chunk'\n" );
228 wfDebug( __METHOD__ .
": INFO should be 9 or 10 bytes, found $length\n" );
232 $data = fread( $file, $length );
233 if ( strlen( $data ) < $length ) {
234 wfDebug( __METHOD__ .
": INFO chunk cut off\n" );
249 # Newer files have rotation info in byte 10, but we don't use it yet.
261 'version' =>
"$major.$minor",
262 'resolution' => $resolution,
263 'gamma' => $gamma / 10.0 ];
277 if ( isset( $wgDjvuDump ) ) {
278 # djvudump is faster as of version 3.5
279 # http://sourceforge.net/tracker/index.php?func=detail&aid=1704049&group_id=32953&atid=406583
283 } elseif ( isset( $wgDjvuToXML ) ) {
284 $cmd =
wfEscapeShellArg( $wgDjvuToXML ) .
' --without-anno --without-text ' .
291 if ( isset( $wgDjvuTxt ) ) {
293 wfDebug( __METHOD__ .
": $cmd\n" );
297 # Strip some control characters
298 $txt = preg_replace(
"/[\013\035\037]/",
"", $txt );
300 /\(page\s[\d-]*\s[\d-]*\s[\d-]*\s[\d-]*\s*
"
301 ((?> # Text to match is composed of atoms of either:
302 \\\\. # - any escaped character
303 | # - any character different from " and \
307 | # Or
page can be empty ;
in this case, djvutxt dumps ()
310 $txt = preg_replace_callback( $reg, [ $this,
'pageTextCallback' ], $txt );
311 $txt =
"<DjVuTxt>\n<HEAD></HEAD>\n<BODY>\n" . $txt .
"</BODY>\n</DjVuTxt>\n";
312 $xml = preg_replace(
"/<DjVuXML>/",
"<mw-djvu><DjVuXML>", $xml, 1 );
313 $xml = $xml . $txt .
'</mw-djvu>';
321 # Get rid of invalid UTF-8, strip control characters
322 $val = htmlspecialchars(
UtfNormal\Validator::cleanUp( stripcslashes(
$matches[1] ) ) );
323 $val = str_replace( [
"\n",
'�' ], [
' ',
'' ], $val );
324 return '<PAGE value="' . $val .
'" />';
333 if ( strval( $dump ) ==
'' ) {
339 <!DOCTYPE DjVuXML PUBLIC
"-//W3C//DTD DjVuXML 1.1//EN" "pubtext/DjVuXML-s.dtd">
345 $dump = str_replace(
"\r",
'', $dump );
346 $line = strtok( $dump,
"\n" );
349 if ( preg_match(
'/^( *)FORM:DJVU/',
$line, $m ) ) {
356 } elseif ( preg_match(
'/^( *)FORM:DJVM/',
$line, $m ) ) {
358 $parentLevel = strlen( $m[1] );
360 $line = strtok(
"\n" );
361 while (
$line !==
false ) {
362 $childLevel = strspn(
$line,
' ' );
363 if ( $childLevel <= $parentLevel ) {
368 if ( preg_match(
'/^ *DIRM.*indirect/',
$line ) ) {
369 wfDebug(
"Indirect multi-page DjVu document, bad for server!\n" );
373 if ( preg_match(
'/^ *FORM:DJVU/',
$line ) ) {
381 $line = strtok(
"\n" );
388 $xml .=
"</BODY>\n</DjVuXML>\n";
394 $parentLevel = strspn(
$line,
' ' );
395 $line = strtok(
"\n" );
398 while (
$line !==
false ) {
399 $childLevel = strspn(
$line,
' ' );
400 if ( $childLevel <= $parentLevel ) {
406 '/^ *INFO *\[\d*\] *DjVu *(\d+)x(\d+), *\w*, *(\d+) *dpi, *gamma=([0-9.-]+)/',
414 #
'type' =>
'image/x.djvu',
420 Xml::element(
'PARAM', [
'name' =>
'DPI',
'value' => $m[3] ] ) .
"\n" .
421 Xml::element(
'PARAM', [
'name' =>
'GAMMA',
'value' => $m[4] ] ) .
"\n"
426 $line = strtok(
"\n" );
dumpForm($file, $length, $indent)
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
static element($element, $attribs=null, $contents= '', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
null for the local wiki Added in
$wgDjvuTxt
Path of the djvutxt DJVU text extraction utility Enable this and $wgDjvuDump to enable text layer ext...
convertDumpToXML($dump)
Hack to temporarily work around djvutoxml bug.
wfShellExec($cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
when a variable name is used in a it is silently declared as a new local masking the global
pageTextCallback($matches)
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
getImageSize()
Return data in the style of getimagesize()
Support for detecting/validating DjVu image files and getting some basic file metadata (resolution et...
Unicode normalization routines for working with UTF-8 strings.
dump()
For debugging; dump the IFF chunk structure.
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
__construct($filename)
Constructor.
const DJVUTXT_MEMORY_LIMIT
DJVUTXT_MEMORY_LIMIT Memory limit for the DjVu description software
parseFormDjvu($line, &$xml)
skipChunk($file, $chunkLength)
$wgDjvuDump
Path of the djvudump executable Enable this and $wgDjvuRenderer to enable djvu rendering example: $wg...
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
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
isValid()
Check if the given file is indeed a valid DjVu image file.
$wgDjvuToXML
Path of the djvutoxml executable This works like djvudump except much, much slower as of version 3...
wfEscapeShellArg()
Windows-compatible version of escapeshellarg() Windows doesn't recognise single-quotes in the shell...
retrieveMetaData()
Return an XML string describing the DjVu image.
getMultiPageInfo($file, $formLength)
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 local account incomplete not yet checked for validity & $retval
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk page