Skip comments and stuff before the <svg> element.
[lhc/web/wiklou.git] / includes / media / SVGMetadataExtractor.php
1 <?php
2 /**
3 * SVGMetadataExtractor.php
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Media
22 * @author Derk-Jan Hartman <hartman _at_ videolan d0t org>
23 * @author Brion Vibber
24 * @copyright Copyright © 2010-2010 Brion Vibber, Derk-Jan Hartman
25 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
26 */
27
28 class SVGMetadataExtractor {
29 static function getMetadata( $filename ) {
30 $svg = new SVGReader( $filename );
31 return $svg->getMetadata();
32 }
33 }
34
35 class SVGReader {
36 const DEFAULT_WIDTH = 512;
37 const DEFAULT_HEIGHT = 512;
38
39 private $reader = null;
40 private $mDebug = false;
41 private $metadata = Array();
42
43 /**
44 * Constructor
45 *
46 * Creates an SVGReader drawing from the source provided
47 * @param $source String: URI from which to read
48 */
49 function __construct( $source ) {
50 $this->reader = new XMLReader();
51 $this->reader->open( $source );
52
53 $this->metadata['width'] = self::DEFAULT_WIDTH;
54 $this->metadata['height'] = self::DEFAULT_HEIGHT;
55
56 $this->read();
57 }
58
59 /*
60 * @return Array with the known metadata
61 */
62 public function getMetadata() {
63 return $this->metadata;
64 }
65
66 /*
67 * Read the SVG
68 */
69 public function read() {
70 $keepReading = $this->reader->read();
71
72 /* Skip until first element */
73 while( $keepReading && $this->reader->nodeType != XmlReader::ELEMENT ) {
74 $keepReading = $this->reader->read();
75 }
76
77 if ( $this->reader->name != 'svg' ) {
78 throw new MWException( "Expected <svg> tag, got ".
79 $this->reader->name );
80 }
81 $this->debug( "<svg> tag is correct." );
82 $this->handleSVGAttribs();
83
84 $exitDepth = $this->reader->depth;
85 $keepReading = $this->reader->read();
86 $skip = false;
87 while ( $keepReading ) {
88 $tag = $this->reader->name;
89 $type = $this->reader->nodeType;
90
91 $this->debug( "$tag" );
92
93 if ( $tag == 'svg' && $type == XmlReader::END_ELEMENT && $this->reader->depth <= $exitDepth ) {
94 break;
95 } elseif ( $tag == 'title' ) {
96 $this->readField( $tag, 'title' );
97 } elseif ( $tag == 'desc' ) {
98 $this->readField( $tag, 'description' );
99 } elseif ( $tag == 'metadata' && $type == XmlReader::ELEMENT ) {
100 $this->readXml( $tag, 'metadata' );
101 } elseif ( $tag !== '#text' ) {
102 $this->debug( "Unhandled top-level XML tag $tag" );
103 $this->animateFilter( $tag );
104 //$skip = true;
105 }
106
107 if ($skip) {
108 $keepReading = $this->reader->next();
109 $skip = false;
110 $this->debug( "Skip" );
111 } else {
112 $keepReading = $this->reader->read();
113 }
114 }
115
116 return true;
117 }
118
119 /*
120 * Read a textelement from an element
121 *
122 * @param String $name of the element that we are reading from
123 * @param String $metafield that we will fill with the result
124 */
125 private function readField( $name, $metafield=null ) {
126 $this->debug ( "Read field $metafield" );
127 if( !$metafield || $this->reader->nodeType != XmlReader::ELEMENT ) {
128 return;
129 }
130 $keepReading = $this->reader->read();
131 while( $keepReading ) {
132 if( $this->reader->name == $name && $this->reader->nodeType == XmlReader::END_ELEMENT ) {
133 $keepReading = false;
134 break;
135 } elseif( $this->reader->nodeType == XmlReader::TEXT ){
136 $this->metadata[$metafield] = $this->reader->value;
137 }
138 $keepReading = $this->reader->read();
139 }
140 }
141
142 /*
143 * Read an XML snippet from an element
144 *
145 * @param String $metafield that we will fill with the result
146 */
147 private function readXml( $metafield=null ) {
148 $this->debug ( "Read top level metadata" );
149 if( !$metafield || $this->reader->nodeType != XmlReader::ELEMENT ) {
150 return;
151 }
152 // TODO: find and store type of xml snippet. metadata['metadataType'] = "rdf"
153 $this->metadata[$metafield] = $this->reader->readInnerXML();
154 $this->reader->next();
155 }
156
157 /*
158 * Filter all children, looking for animate elements
159 *
160 * @param String $name of the element that we are reading from
161 */
162 private function animateFilter( $name ) {
163 $this->debug ( "animate filter" );
164 if( $this->reader->nodeType != XmlReader::ELEMENT ) {
165 return;
166 }
167 $exitDepth = $this->reader->depth;
168 $keepReading = $this->reader->read();
169 while( $keepReading ) {
170 if( $this->reader->name == $name && $this->reader->depth <= $exitDepth
171 && $this->reader->nodeType == XmlReader::END_ELEMENT ) {
172 $keepReading = false;
173 break;
174 } elseif( $this->reader->nodeType == XmlReader::ELEMENT ){
175 switch( $this->reader->name ) {
176 case 'animate':
177 case 'set':
178 case 'animateMotion':
179 case 'animateColor':
180 case 'animateTransform':
181 $this->debug( "HOUSTON WE HAVE ANIMATION" );
182 $this->metadata['animated'] = true;
183 break;
184 }
185 }
186 $keepReading = $this->reader->read();
187 }
188 }
189
190 private function throwXmlError( $err ) {
191 $this->debug( "FAILURE: $err" );
192 wfDebug( "SVGReader XML error: $err\n" );
193 }
194
195 private function debug( $data ) {
196 if( $this->mDebug ) {
197 wfDebug( "SVGReader: $data\n" );
198 }
199 }
200
201 private function warn( $data ) {
202 wfDebug( "SVGReader: $data\n" );
203 }
204
205 private function notice( $data ) {
206 wfDebug( "SVGReader WARN: $data\n" );
207 }
208
209 /*
210 * Parse the attributes of an SVG element
211 *
212 * The parser has to be in the start element of <svg>
213 */
214 private function handleSVGAttribs( ) {
215 $defaultWidth = self::DEFAULT_WIDTH;
216 $defaultHeight = self::DEFAULT_HEIGHT;
217 $aspect = 1.0;
218 $width = null;
219 $height = null;
220
221 if( $this->reader->getAttribute('viewBox') ) {
222 // min-x min-y width height
223 $viewBox = preg_split( '/\s+/', trim( $this->reader->getAttribute('viewBox') ) );
224 if( count( $viewBox ) == 4 ) {
225 $viewWidth = $this->scaleSVGUnit( $viewBox[2] );
226 $viewHeight = $this->scaleSVGUnit( $viewBox[3] );
227 if( $viewWidth > 0 && $viewHeight > 0 ) {
228 $aspect = $viewWidth / $viewHeight;
229 $defaultHeight = $defaultWidth / $aspect;
230 }
231 }
232 }
233 if( $this->reader->getAttribute('width') ) {
234 $width = $this->scaleSVGUnit( $this->reader->getAttribute('width'), $defaultWidth );
235 }
236 if( $this->reader->getAttribute('height') ) {
237 $height = $this->scaleSVGUnit( $this->reader->getAttribute('height'), $defaultHeight );
238 }
239
240 if( !isset( $width ) && !isset( $height ) ) {
241 $width = $defaultWidth;
242 $height = $width / $aspect;
243 } elseif( isset( $width ) && !isset( $height ) ) {
244 $height = $width / $aspect;
245 } elseif( isset( $height ) && !isset( $width ) ) {
246 $width = $height * $aspect;
247 }
248
249 if( $width > 0 && $height > 0 ) {
250 $this->metadata['width'] = intval( round( $width ) );
251 $this->metadata['height'] = intval( round( $height ) );
252 }
253 }
254
255 /**
256 * Return a rounded pixel equivalent for a labeled CSS/SVG length.
257 * http://www.w3.org/TR/SVG11/coords.html#UnitIdentifiers
258 *
259 * @param $length String: CSS/SVG length.
260 * @param $viewportSize: Float optional scale for percentage units...
261 * @return float: length in pixels
262 */
263 static function scaleSVGUnit( $length, $viewportSize=512 ) {
264 static $unitLength = array(
265 'px' => 1.0,
266 'pt' => 1.25,
267 'pc' => 15.0,
268 'mm' => 3.543307,
269 'cm' => 35.43307,
270 'in' => 90.0,
271 'em' => 16.0, // fake it?
272 'ex' => 12.0, // fake it?
273 '' => 1.0, // "User units" pixels by default
274 );
275 $matches = array();
276 if( preg_match( '/^\s*(\d+(?:\.\d+)?)(em|ex|px|pt|pc|cm|mm|in|%|)\s*$/', $length, $matches ) ) {
277 $length = floatval( $matches[1] );
278 $unit = $matches[2];
279 if( $unit == '%' ) {
280 return $length * 0.01 * $viewportSize;
281 } else {
282 return $length * $unitLength[$unit];
283 }
284 } else {
285 // Assume pixels
286 return floatval( $length );
287 }
288 }
289 }