3 * Handler for DjVu images.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * Handler for DjVu images
29 class DjVuHandler
extends ImageHandler
{
34 function isEnabled() {
35 global $wgDjvuRenderer, $wgDjvuDump, $wgDjvuToXML;
36 if ( !$wgDjvuRenderer ||
( !$wgDjvuDump && !$wgDjvuToXML ) ) {
37 wfDebug( "DjVu is disabled, please set \$wgDjvuRenderer and \$wgDjvuDump\n" );
48 function mustRender( $file ) {
56 function isMultiPage( $file ) {
63 function getParamMap() {
65 'img_width' => 'width',
75 function validateParam( $name, $value ) {
76 if ( in_array( $name, array( 'width', 'height', 'page' ) ) ) {
91 function makeParamString( $params ) {
92 $page = isset( $params['page'] ) ?
$params['page'] : 1;
93 if ( !isset( $params['width'] ) ) {
96 return "page{$page}-{$params['width']}px";
103 function parseParamString( $str ) {
105 if ( preg_match( '/^page(\d+)-(\d+)px$/', $str, $m ) ) {
106 return array( 'width' => $m[2], 'page' => $m[1] );
116 function getScriptParams( $params ) {
118 'width' => $params['width'],
119 'page' => $params['page'],
129 * @return MediaTransformError|ThumbnailImage|TransformParameterError
131 function doTransform( $image, $dstPath, $dstUrl, $params, $flags = 0 ) {
132 global $wgDjvuRenderer, $wgDjvuPostProcessor;
134 // Fetch XML and check it, to give a more informative error message than the one which
135 // normaliseParams will inevitably give.
136 $xml = $image->getMetadata();
138 $width = isset( $params['width'] ) ?
$params['width'] : 0;
139 $height = isset( $params['height'] ) ?
$params['height'] : 0;
140 return new MediaTransformError( 'thumbnail_error', $width, $height,
141 wfMessage( 'djvu_no_xml' )->text() );
144 if ( !$this->normaliseParams( $image, $params ) ) {
145 return new TransformParameterError( $params );
147 $width = $params['width'];
148 $height = $params['height'];
149 $page = $params['page'];
150 if ( $page > $this->pageCount( $image ) ) {
151 return new MediaTransformError(
155 wfMessage( 'djvu_page_error' )->text()
159 if ( $flags & self
::TRANSFORM_LATER
) {
165 return new ThumbnailImage( $image, $dstUrl, $dstPath, $params );
168 if ( !wfMkdirParents( dirname( $dstPath ), null, __METHOD__
) ) {
169 return new MediaTransformError(
173 wfMessage( 'thumbnail_dest_directory' )->text()
177 $srcPath = $image->getLocalRefPath();
178 # Use a subshell (brackets) to aggregate stderr from both pipeline commands
179 # before redirecting it to the overall stdout. This works in both Linux and Windows XP.
180 $cmd = '(' . wfEscapeShellArg( $wgDjvuRenderer ) . " -format=ppm -page={$page}" .
181 " -size={$params['physicalWidth']}x{$params['physicalHeight']} " .
182 wfEscapeShellArg( $srcPath );
183 if ( $wgDjvuPostProcessor ) {
184 $cmd .= " | {$wgDjvuPostProcessor}";
186 $cmd .= ' > ' . wfEscapeShellArg( $dstPath ) . ') 2>&1';
187 wfProfileIn( 'ddjvu' );
188 wfDebug( __METHOD__
. ": $cmd\n" );
190 $err = wfShellExec( $cmd, $retval );
191 wfProfileOut( 'ddjvu' );
193 $removed = $this->removeBadFile( $dstPath, $retval );
194 if ( $retval != 0 ||
$removed ) {
195 wfDebugLog( 'thumbnail',
196 sprintf( 'thumbnail failed on %s: error %d "%s" from "%s"',
197 wfHostname(), $retval, trim( $err ), $cmd ) );
198 return new MediaTransformError( 'thumbnail_error', $width, $height, $err );
205 return new ThumbnailImage( $image, $dstUrl, $dstPath, $params );
210 * Cache an instance of DjVuImage in an Image object, return that instance
214 function getDjVuImage( $image, $path ) {
216 $deja = new DjVuImage( $path );
217 } elseif ( !isset( $image->dejaImage
) ) {
218 $deja = $image->dejaImage
= new DjVuImage( $path );
220 $deja = $image->dejaImage
;
226 * Cache a document tree for the DjVu XML metadata
228 * @param $gettext Boolean: DOCUMENT (Default: false)
231 function getMetaTree( $image, $gettext = false ) {
232 if ( isset( $image->dejaMetaTree
) ) {
233 return $image->dejaMetaTree
;
236 $metadata = $image->getMetadata();
237 if ( !$this->isMetadataValid( $image, $metadata ) ) {
238 wfDebug( "DjVu XML metadata is invalid or missing, should have been fixed in upgradeRow\n" );
241 wfProfileIn( __METHOD__
);
243 wfSuppressWarnings();
245 // Set to false rather than null to avoid further attempts
246 $image->dejaMetaTree
= false;
247 $image->djvuTextTree
= false;
248 $tree = new SimpleXMLElement( $metadata );
249 if ( $tree->getName() == 'mw-djvu' ) {
250 foreach ( $tree->children() as $b ) {
251 if ( $b->getName() == 'DjVuTxt' ) {
252 $image->djvuTextTree
= $b;
253 } elseif ( $b->getName() == 'DjVuXML' ) {
254 $image->dejaMetaTree
= $b;
258 $image->dejaMetaTree
= $tree;
260 } catch ( Exception
$e ) {
261 wfDebug( "Bogus multipage XML metadata on '{$image->getName()}'\n" );
264 wfProfileOut( __METHOD__
);
266 return $image->djvuTextTree
;
268 return $image->dejaMetaTree
;
272 function getImageSize( $image, $path ) {
273 return $this->getDjVuImage( $image, $path )->getImageSize();
276 function getThumbType( $ext, $mime, $params = null ) {
277 global $wgDjvuOutputExtension;
279 if ( !isset( $mime ) ) {
280 $magic = MimeMagic
::singleton();
281 $mime = $magic->guessTypesForExtension( $wgDjvuOutputExtension );
283 return array( $wgDjvuOutputExtension, $mime );
286 function getMetadata( $image, $path ) {
287 wfDebug( "Getting DjVu metadata for $path\n" );
288 return $this->getDjVuImage( $image, $path )->retrieveMetaData();
291 function getMetadataType( $image ) {
295 function isMetadataValid( $image, $metadata ) {
296 return !empty( $metadata ) && $metadata != serialize( array() );
299 function pageCount( $image ) {
300 $tree = $this->getMetaTree( $image );
304 return count( $tree->xpath( '//OBJECT' ) );
307 function getPageDimensions( $image, $page ) {
308 $tree = $this->getMetaTree( $image );
313 $o = $tree->BODY
[0]->OBJECT[$page - 1];
316 'width' => intval( $o['width'] ),
317 'height' => intval( $o['height'] )
324 function getPageText( $image, $page ) {
325 $tree = $this->getMetaTree( $image, true );
330 $o = $tree->BODY
[0]->PAGE
[$page - 1];