7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
17 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
18 * @license http://framework.zend.com/license/new-bsd New BSD License
25 require_once 'Zend/Json.php';
28 * Decode JSON encoded string to PHP variable constructs
32 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
33 * @license http://framework.zend.com/license/new-bsd New BSD License
35 class Zend_Json_Decoder
38 * Parse tokens used to decode the JSON object. These are not
39 * for public consumption, they are just used internally to the
52 * Use to maintain a "pointer" to the source being decoded
59 * Caches the source length
63 protected $_sourceLength;
66 * The offset within the souce being decoded
74 * The current token being considered in the parser cycle
81 * Flag indicating how objects should be decoded
86 protected $_decodeType;
91 * @param string $source String source to decode
92 * @param int $decodeType How objects should be decoded -- see
93 * {@link Zend_Json::TYPE_ARRAY} and {@link Zend_Json::TYPE_OBJECT} for
97 protected function __construct($source, $decodeType)
100 $this->_source
= self
::decodeUnicodeString($source);
101 $this->_sourceLength
= strlen($this->_source
);
102 $this->_token
= self
::EOF
;
105 // Normalize and set $decodeType
106 if (!in_array($decodeType, array(Zend_Json
::TYPE_ARRAY
, Zend_Json
::TYPE_OBJECT
)))
108 $decodeType = Zend_Json
::TYPE_ARRAY
;
110 $this->_decodeType
= $decodeType;
112 // Set pointer at first token
113 $this->_getNextToken();
117 * Decode a JSON source string
119 * Decodes a JSON encoded string. The value returned will be one of the
127 * - array of one or more of the above types
129 * By default, decoded objects will be returned as associative arrays; to
130 * return a StdClass object instead, pass {@link Zend_Json::TYPE_OBJECT} to
131 * the $objectDecodeType parameter.
133 * Throws a Zend_Json_Exception if the source string is null.
137 * @param string $source String to be decoded
138 * @param int $objectDecodeType How objects should be decoded; should be
139 * either or {@link Zend_Json::TYPE_ARRAY} or
140 * {@link Zend_Json::TYPE_OBJECT}; defaults to TYPE_ARRAY
142 * @throws Zend_Json_Exception
144 public static function decode($source = null, $objectDecodeType = Zend_Json
::TYPE_ARRAY
)
146 if (null === $source) {
147 require_once 'Zend/Json/Exception.php';
148 throw new Zend_Json_Exception('Must specify JSON encoded source for decoding');
149 } elseif (!is_string($source)) {
150 require_once 'Zend/Json/Exception.php';
151 throw new Zend_Json_Exception('Can only decode JSON encoded strings');
154 $decoder = new self($source, $objectDecodeType);
156 return $decoder->_decodeValue();
161 * Recursive driving rountine for supported toplevel tops
165 protected function _decodeValue()
167 switch ($this->_token
) {
169 $result = $this->_tokenValue
;
170 $this->_getNextToken();
174 return($this->_decodeObject());
177 return($this->_decodeArray());
186 * Decodes an object of the form:
187 * { "attribute: value, "attribute2" : value,...}
189 * If Zend_Json_Encoder was used to encode the original object then
190 * a special attribute called __className which specifies a class
191 * name that should wrap the data contained within the encoded source.
193 * Decodes to either an array or StdClass object, based on the value of
194 * {@link $_decodeType}. If invalid $_decodeType present, returns as an
197 * @return array|StdClass
199 protected function _decodeObject()
202 $tok = $this->_getNextToken();
204 while ($tok && $tok != self
::RBRACE
) {
205 if ($tok != self
::DATUM ||
! is_string($this->_tokenValue
)) {
206 require_once 'Zend/Json/Exception.php';
207 throw new Zend_Json_Exception('Missing key in object encoding: ' . $this->_source
);
210 $key = $this->_tokenValue
;
211 $tok = $this->_getNextToken();
213 if ($tok != self
::COLON
) {
214 require_once 'Zend/Json/Exception.php';
215 throw new Zend_Json_Exception('Missing ":" in object encoding: ' . $this->_source
);
218 $tok = $this->_getNextToken();
219 $members[$key] = $this->_decodeValue();
220 $tok = $this->_token
;
222 if ($tok == self
::RBRACE
) {
226 if ($tok != self
::COMMA
) {
227 require_once 'Zend/Json/Exception.php';
228 throw new Zend_Json_Exception('Missing "," in object encoding: ' . $this->_source
);
231 $tok = $this->_getNextToken();
234 switch ($this->_decodeType
) {
235 case Zend_Json
::TYPE_OBJECT
:
236 // Create new StdClass and populate with $members
237 $result = new StdClass();
238 foreach ($members as $key => $value) {
239 $result->$key = $value;
242 case Zend_Json
::TYPE_ARRAY
:
248 $this->_getNextToken();
253 * Decodes a JSON array format:
254 * [element, element2,...,elementN]
258 protected function _decodeArray()
261 $starttok = $tok = $this->_getNextToken(); // Move past the '['
264 while ($tok && $tok != self
::RBRACKET
) {
265 $result[$index++
] = $this->_decodeValue();
267 $tok = $this->_token
;
269 if ($tok == self
::RBRACKET ||
!$tok) {
273 if ($tok != self
::COMMA
) {
274 require_once 'Zend/Json/Exception.php';
275 throw new Zend_Json_Exception('Missing "," in array encoding: ' . $this->_source
);
278 $tok = $this->_getNextToken();
281 $this->_getNextToken();
287 * Removes whitepsace characters from the source input
289 protected function _eatWhitespace()
292 '/([\t\b\f\n\r ])*/s',
297 && $matches[0][1] == $this->_offset
)
299 $this->_offset +
= strlen($matches[0][0]);
305 * Retrieves the next token from the source stream
307 * @return int Token constant value specified in class definition
309 protected function _getNextToken()
311 $this->_token
= self
::EOF
;
312 $this->_tokenValue
= null;
313 $this->_eatWhitespace();
315 if ($this->_offset
>= $this->_sourceLength
) {
319 $str = $this->_source
;
320 $str_length = $this->_sourceLength
;
326 $this->_token
= self
::LBRACE
;
329 $this->_token
= self
::RBRACE
;
332 $this->_token
= self
::LBRACKET
;
335 $this->_token
= self
::RBRACKET
;
338 $this->_token
= self
::COMMA
;
341 $this->_token
= self
::COLON
;
347 if ($i >= $str_length) {
355 if ($i >= $str_length) {
388 require_once 'Zend/Json/Exception.php';
389 throw new Zend_Json_Exception("Illegal escape "
390 . "sequence '" . $chr . "'");
392 } elseif($chr == '"') {
397 } while ($i < $str_length);
399 $this->_token
= self
::DATUM
;
400 //$this->_tokenValue = substr($str, $start + 1, $i - $start - 1);
401 $this->_tokenValue
= $result;
404 if (($i+
3) < $str_length && substr($str, $start, 4) == "true") {
405 $this->_token
= self
::DATUM
;
407 $this->_tokenValue
= true;
411 if (($i+
4) < $str_length && substr($str, $start, 5) == "false") {
412 $this->_token
= self
::DATUM
;
414 $this->_tokenValue
= false;
418 if (($i+
3) < $str_length && substr($str, $start, 4) == "null") {
419 $this->_token
= self
::DATUM
;
421 $this->_tokenValue
= NULL;
426 if ($this->_token
!= self
::EOF
) {
427 $this->_offset
= $i +
1; // Consume the last token character
428 return($this->_token
);
432 if ($chr == '-' ||
$chr == '.' ||
($chr >= '0' && $chr <= '9')) {
433 if (preg_match('/-?([0-9])*(\.[0-9]*)?((e|E)((-|\+)?)[0-9]+)?/s',
434 $str, $matches, PREG_OFFSET_CAPTURE
, $start) && $matches[0][1] == $start) {
436 $datum = $matches[0][0];
438 if (is_numeric($datum)) {
439 if (preg_match('/^0\d+$/', $datum)) {
440 require_once 'Zend/Json/Exception.php';
441 throw new Zend_Json_Exception("Octal notation not supported by JSON (value: $datum)");
443 $val = intval($datum);
444 $fVal = floatval($datum);
445 $this->_tokenValue
= ($val == $fVal ?
$val : $fVal);
448 require_once 'Zend/Json/Exception.php';
449 throw new Zend_Json_Exception("Illegal number format: $datum");
452 $this->_token
= self
::DATUM
;
453 $this->_offset
= $start +
strlen($datum);
456 require_once 'Zend/Json/Exception.php';
457 throw new Zend_Json_Exception('Illegal Token');
460 return($this->_token
);
464 * Decode Unicode Characters from \u0000 ASCII syntax.
466 * This algorithm was originally developed for the
467 * Solar Framework by Paul M. Jones
469 * @link http://solarphp.com/
470 * @link http://svn.solarphp.com/core/trunk/Solar/Json.php
471 * @param string $value
474 public static function decodeUnicodeString($chrs)
476 $delim = substr($chrs, 0, 1);
478 $strlen_chrs = strlen($chrs);
480 for($i = 0; $i < $strlen_chrs; $i++
) {
482 $substr_chrs_c_2 = substr($chrs, $i, 2);
483 $ord_chrs_c = ord($chrs[$i]);
486 case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $i, 6)):
487 // single, escaped unicode character
488 $utf16 = chr(hexdec(substr($chrs, ($i +
2), 2)))
489 . chr(hexdec(substr($chrs, ($i +
4), 2)));
490 $utf8 .= self
::_utf162utf8($utf16);
493 case ($ord_chrs_c >= 0x20) && ($ord_chrs_c <= 0x7F):
496 case ($ord_chrs_c & 0xE0) == 0xC0:
497 // characters U-00000080 - U-000007FF, mask 110XXXXX
498 //see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
499 $utf8 .= substr($chrs, $i, 2);
502 case ($ord_chrs_c & 0xF0) == 0xE0:
503 // characters U-00000800 - U-0000FFFF, mask 1110XXXX
504 // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
505 $utf8 .= substr($chrs, $i, 3);
508 case ($ord_chrs_c & 0xF8) == 0xF0:
509 // characters U-00010000 - U-001FFFFF, mask 11110XXX
510 // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
511 $utf8 .= substr($chrs, $i, 4);
514 case ($ord_chrs_c & 0xFC) == 0xF8:
515 // characters U-00200000 - U-03FFFFFF, mask 111110XX
516 // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
517 $utf8 .= substr($chrs, $i, 5);
520 case ($ord_chrs_c & 0xFE) == 0xFC:
521 // characters U-04000000 - U-7FFFFFFF, mask 1111110X
522 // see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
523 $utf8 .= substr($chrs, $i, 6);
533 * Convert a string from one UTF-16 char to one UTF-8 char.
535 * Normally should be handled by mb_convert_encoding, but
536 * provides a slower PHP-only method for installations
537 * that lack the multibye string extension.
539 * This method is from the Solar Framework by Paul M. Jones
541 * @link http://solarphp.com
542 * @param string $utf16 UTF-16 character
543 * @return string UTF-8 character
545 protected static function _utf162utf8($utf16)
547 // Check for mb extension otherwise do by hand.
548 if( function_exists('mb_convert_encoding') ) {
549 return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16');
552 $bytes = (ord($utf16{0}) << 8) |
ord($utf16{1});
555 case ((0x7F & $bytes) == $bytes):
556 // this case should never be reached, because we are in ASCII range
557 // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
558 return chr(0x7F & $bytes);
560 case (0x07FF & $bytes) == $bytes:
561 // return a 2-byte UTF-8 character
562 // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
563 return chr(0xC0 |
(($bytes >> 6) & 0x1F))
564 . chr(0x80 |
($bytes & 0x3F));
566 case (0xFFFF & $bytes) == $bytes:
567 // return a 3-byte UTF-8 character
568 // see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
569 return chr(0xE0 |
(($bytes >> 12) & 0x0F))
570 . chr(0x80 |
(($bytes >> 6) & 0x3F))
571 . chr(0x80 |
($bytes & 0x3F));
574 // ignoring UTF-32 for now, sorry