Support i8 type
[plcapi.git] / src / Value.php
1 <?php
2
3 namespace PhpXmlRpc;
4
5 use PhpXmlRpc\Helper\Charset;
6
7 /**
8  * This class enables the creation of values for XML-RPC, by encapsulating plain php values.
9  */
10 class Value implements \Countable, \IteratorAggregate, \ArrayAccess
11 {
12     public static $xmlrpcI4 = "i4";
13     public static $xmlrpcI8 = "i8";
14     public static $xmlrpcInt = "int";
15     public static $xmlrpcBoolean = "boolean";
16     public static $xmlrpcDouble = "double";
17     public static $xmlrpcString = "string";
18     public static $xmlrpcDateTime = "dateTime.iso8601";
19     public static $xmlrpcBase64 = "base64";
20     public static $xmlrpcArray = "array";
21     public static $xmlrpcStruct = "struct";
22     public static $xmlrpcValue = "undefined";
23     public static $xmlrpcNull = "null";
24
25     public static $xmlrpcTypes = array(
26         "i4" => 1,
27         "i8" => 1,
28         "int" => 1,
29         "boolean" => 1,
30         "double" => 1,
31         "string" => 1,
32         "dateTime.iso8601" => 1,
33         "base64" => 1,
34         "array" => 2,
35         "struct" => 3,
36         "null" => 1,
37     );
38
39     /// @todo: do these need to be public?
40     public $me = array();
41     public $mytype = 0;
42     public $_php_class = null;
43
44     /**
45      * Build an xmlrpc value.
46      *
47      * When no value or type is passed in, the value is left uninitialized, and the value can be added later.
48      *
49      * @param mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves
50      * @param string $type any valid xmlrpc type name (lowercase): i4, int, boolean, string, double, dateTime.iso8601,
51      *                     base64, array, struct, null.
52      *                     If null, 'string' is assumed.
53      *                     You should refer to http://www.xmlrpc.com/spec for more information on what each of these mean.
54      */
55     public function __construct($val = -1, $type = '')
56     {
57         // optimization creep - do not call addXX, do it all inline.
58         // downside: booleans will not be coerced anymore
59         if ($val !== -1 || $type != '') {
60             switch ($type) {
61                 case '':
62                     $this->mytype = 1;
63                     $this->me['string'] = $val;
64                     break;
65                 case 'i4':
66                 case 'i8':
67                 case 'int':
68                 case 'double':
69                 case 'string':
70                 case 'boolean':
71                 case 'dateTime.iso8601':
72                 case 'base64':
73                 case 'null':
74                     $this->mytype = 1;
75                     $this->me[$type] = $val;
76                     break;
77                 case 'array':
78                     $this->mytype = 2;
79                     $this->me['array'] = $val;
80                     break;
81                 case 'struct':
82                     $this->mytype = 3;
83                     $this->me['struct'] = $val;
84                     break;
85                 default:
86                     error_log("XML-RPC: " . __METHOD__ . ": not a known type ($type)");
87             }
88         }
89     }
90
91     /**
92      * Add a single php value to an xmlrpc value.
93      *
94      * If the xmlrpc value is an array, the php value is added as its last element.
95      * If the xmlrpc value is empty (uninitialized), this method makes it a scalar value, and sets that value.
96      * Fails if the xmlrpc value is not an array and already initialized.
97      *
98      * @param mixed $val
99      * @param string $type allowed values: i4, i8, int, boolean, string, double, dateTime.iso8601, base64, null.
100      *
101      * @return int 1 or 0 on failure
102      */
103     public function addScalar($val, $type = 'string')
104     {
105         $typeOf = null;
106         if (isset(static::$xmlrpcTypes[$type])) {
107             $typeOf = static::$xmlrpcTypes[$type];
108         }
109
110         if ($typeOf !== 1) {
111             error_log("XML-RPC: " . __METHOD__ . ": not a scalar type ($type)");
112             return 0;
113         }
114
115         // coerce booleans into correct values
116         // NB: we should either do it for datetimes, integers and doubles, too,
117         // or just plain remove this check, implemented on booleans only...
118         if ($type == static::$xmlrpcBoolean) {
119             if (strcasecmp($val, 'true') == 0 || $val == 1 || ($val == true && strcasecmp($val, 'false'))) {
120                 $val = true;
121             } else {
122                 $val = false;
123             }
124         }
125
126         switch ($this->mytype) {
127             case 1:
128                 error_log('XML-RPC: ' . __METHOD__ . ': scalar xmlrpc value can have only one value');
129                 return 0;
130             case 3:
131                 error_log('XML-RPC: ' . __METHOD__ . ': cannot add anonymous scalar to struct xmlrpc value');
132                 return 0;
133             case 2:
134                 // we're adding a scalar value to an array here
135                 $this->me['array'][] = new Value($val, $type);
136
137                 return 1;
138             default:
139                 // a scalar, so set the value and remember we're scalar
140                 $this->me[$type] = $val;
141                 $this->mytype = $typeOf;
142
143                 return 1;
144         }
145     }
146
147     /**
148      * Add an array of xmlrpc value objects to an xmlrpc value.
149      *
150      * If the xmlrpc value is an array, the elements are appended to the existing ones.
151      * If the xmlrpc value is empty (uninitialized), this method makes it an array value, and sets that value.
152      * Fails otherwise.
153      *
154      * @param Value[] $values
155      *
156      * @return int 1 or 0 on failure
157      *
158      * @todo add some checking for $values to be an array of xmlrpc values?
159      */
160     public function addArray($values)
161     {
162         if ($this->mytype == 0) {
163             $this->mytype = static::$xmlrpcTypes['array'];
164             $this->me['array'] = $values;
165
166             return 1;
167         } elseif ($this->mytype == 2) {
168             // we're adding to an array here
169             $this->me['array'] = array_merge($this->me['array'], $values);
170
171             return 1;
172         } else {
173             error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
174             return 0;
175         }
176     }
177
178     /**
179      * Merges an array of named xmlrpc value objects into an xmlrpc value.
180      *
181      * If the xmlrpc value is a struct, the elements are merged with the existing ones (overwriting existing ones).
182      * If the xmlrpc value is empty (uninitialized), this method makes it a struct value, and sets that value.
183      * Fails otherwise.
184      *
185      * @param Value[] $values
186      *
187      * @return int 1 or 0 on failure
188      *
189      * @todo add some checking for $values to be an array?
190      */
191     public function addStruct($values)
192     {
193         if ($this->mytype == 0) {
194             $this->mytype = static::$xmlrpcTypes['struct'];
195             $this->me['struct'] = $values;
196
197             return 1;
198         } elseif ($this->mytype == 3) {
199             // we're adding to a struct here
200             $this->me['struct'] = array_merge($this->me['struct'], $values);
201
202             return 1;
203         } else {
204             error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']');
205             return 0;
206         }
207     }
208
209     /**
210      * Returns a string containing either "struct", "array", "scalar" or "undef", describing the base type of the value.
211      *
212      * @return string
213      */
214     public function kindOf()
215     {
216         switch ($this->mytype) {
217             case 3:
218                 return 'struct';
219                 break;
220             case 2:
221                 return 'array';
222                 break;
223             case 1:
224                 return 'scalar';
225                 break;
226             default:
227                 return 'undef';
228         }
229     }
230
231     protected function serializedata($typ, $val, $charsetEncoding = '')
232     {
233         $rs = '';
234
235         if (!isset(static::$xmlrpcTypes[$typ])) {
236             return $rs;
237         }
238
239         switch (static::$xmlrpcTypes[$typ]) {
240             case 1:
241                 switch ($typ) {
242                     case static::$xmlrpcBase64:
243                         $rs .= "<${typ}>" . base64_encode($val) . "</${typ}>";
244                         break;
245                     case static::$xmlrpcBoolean:
246                         $rs .= "<${typ}>" . ($val ? '1' : '0') . "</${typ}>";
247                         break;
248                     case static::$xmlrpcString:
249                         // G. Giunta 2005/2/13: do NOT use htmlentities, since
250                         // it will produce named html entities, which are invalid xml
251                         $rs .= "<${typ}>" . Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</${typ}>";
252                         break;
253                     case static::$xmlrpcInt:
254                     case static::$xmlrpcI4:
255                     case static::$xmlrpcI8:
256                         $rs .= "<${typ}>" . (int)$val . "</${typ}>";
257                         break;
258                     case static::$xmlrpcDouble:
259                         // avoid using standard conversion of float to string because it is locale-dependent,
260                         // and also because the xmlrpc spec forbids exponential notation.
261                         // sprintf('%F') could be most likely ok but it fails eg. on 2e-14.
262                         // The code below tries its best at keeping max precision while avoiding exp notation,
263                         // but there is of course no limit in the number of decimal places to be used...
264                         $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, 128, '.', '')) . "</${typ}>";
265                         break;
266                     case static::$xmlrpcDateTime:
267                         if (is_string($val)) {
268                             $rs .= "<${typ}>${val}</${typ}>";
269                         } elseif (is_a($val, 'DateTime')) {
270                             $rs .= "<${typ}>" . $val->format('Ymd\TH:i:s') . "</${typ}>";
271                         } elseif (is_int($val)) {
272                             $rs .= "<${typ}>" . strftime("%Y%m%dT%H:%M:%S", $val) . "</${typ}>";
273                         } else {
274                             // not really a good idea here: but what shall we output anyway? left for backward compat...
275                             $rs .= "<${typ}>${val}</${typ}>";
276                         }
277                         break;
278                     case static::$xmlrpcNull:
279                         if (PhpXmlRpc::$xmlrpc_null_apache_encoding) {
280                             $rs .= "<ex:nil/>";
281                         } else {
282                             $rs .= "<nil/>";
283                         }
284                         break;
285                     default:
286                         // no standard type value should arrive here, but provide a possibility
287                         // for xmlrpc values of unknown type...
288                         $rs .= "<${typ}>${val}</${typ}>";
289                 }
290                 break;
291             case 3:
292                 // struct
293                 if ($this->_php_class) {
294                     $rs .= '<struct php_class="' . $this->_php_class . "\">\n";
295                 } else {
296                     $rs .= "<struct>\n";
297                 }
298                 $charsetEncoder = Charset::instance();
299                 foreach ($val as $key2 => $val2) {
300                     $rs .= '<member><name>' . $charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</name>\n";
301                     //$rs.=$this->serializeval($val2);
302                     $rs .= $val2->serialize($charsetEncoding);
303                     $rs .= "</member>\n";
304                 }
305                 $rs .= '</struct>';
306                 break;
307             case 2:
308                 // array
309                 $rs .= "<array>\n<data>\n";
310                 foreach ($val as $element) {
311                     //$rs.=$this->serializeval($val[$i]);
312                     $rs .= $element->serialize($charsetEncoding);
313                 }
314                 $rs .= "</data>\n</array>";
315                 break;
316             default:
317                 break;
318         }
319
320         return $rs;
321     }
322
323     /**
324      * Returns the xml representation of the value. XML prologue not included.
325      *
326      * @param string $charsetEncoding the charset to be used for serialization. if null, US-ASCII is assumed
327      *
328      * @return string
329      */
330     public function serialize($charsetEncoding = '')
331     {
332         // add check? slower, but helps to avoid recursion in serializing broken xmlrpc values...
333         //if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval')))
334         //{
335         reset($this->me);
336         list($typ, $val) = each($this->me);
337
338         return '<value>' . $this->serializedata($typ, $val, $charsetEncoding) . "</value>\n";
339         //}
340     }
341
342     /**
343      * Checks whether a struct member with a given name is present.
344      *
345      * Works only on xmlrpc values of type struct.
346      *
347      * @param string $key the name of the struct member to be looked up
348      *
349      * @return boolean
350      *
351      * @deprecated use array access, e.g. isset($val[$key])
352      */
353     public function structmemexists($key)
354     {
355         return array_key_exists($key, $this->me['struct']);
356     }
357
358     /**
359      * Returns the value of a given struct member (an xmlrpc value object in itself).
360      * Will raise a php warning if struct member of given name does not exist.
361      *
362      * @param string $key the name of the struct member to be looked up
363      *
364      * @return Value
365      *
366      * @deprecated use array access, e.g. $val[$key]
367      */
368     public function structmem($key)
369     {
370         return $this->me['struct'][$key];
371     }
372
373     /**
374      * Reset internal pointer for xmlrpc values of type struct.
375      * @deprecated iterate directly over the object using foreach instead
376      */
377     public function structreset()
378     {
379         reset($this->me['struct']);
380     }
381
382     /**
383      * Return next member element for xmlrpc values of type struct.
384      *
385      * @return Value
386      *
387      * @deprecated iterate directly over the object using foreach instead
388      */
389     public function structeach()
390     {
391         return each($this->me['struct']);
392     }
393
394     /**
395      * Returns the value of a scalar xmlrpc value (base 64 decoding is automatically handled here)
396      *
397      * @return mixed
398      */
399     public function scalarval()
400     {
401         reset($this->me);
402         list(, $b) = each($this->me);
403
404         return $b;
405     }
406
407     /**
408      * Returns the type of the xmlrpc value.
409      *
410      * For integers, 'int' is always returned in place of 'i4' or 'i8'.
411      *
412      * @return string
413      */
414     public function scalartyp()
415     {
416         reset($this->me);
417         list($a,) = each($this->me);
418         if ($a == static::$xmlrpcI4 || $a == static::$xmlrpcI8) {
419             $a = static::$xmlrpcInt;
420         }
421
422         return $a;
423     }
424
425     /**
426      * Returns the m-th member of an xmlrpc value of array type.
427      *
428      * @param integer $key the index of the value to be retrieved (zero based)
429      *
430      * @return Value
431      *
432      * @deprecated use array access, e.g. $val[$key]
433      */
434     public function arraymem($key)
435     {
436         return $this->me['array'][$key];
437     }
438
439     /**
440      * Returns the number of members in an xmlrpc value of array type.
441      *
442      * @return integer
443      *
444      * @deprecated use count() instead
445      */
446     public function arraysize()
447     {
448         return count($this->me['array']);
449     }
450
451     /**
452      * Returns the number of members in an xmlrpc value of struct type.
453      *
454      * @return integer
455      *
456      * @deprecated use count() instead
457      */
458     public function structsize()
459     {
460         return count($this->me['struct']);
461     }
462
463     /**
464      * Returns the number of members in an xmlrpc value:
465      * - 0 for uninitialized values
466      * - 1 for scalar values
467      * - the number of elements for struct and array values
468      *
469      * @return integer
470      */
471     public function count()
472     {
473         switch ($this->mytype) {
474             case 3:
475                 return count($this->me['struct']);
476             case 2:
477                 return count($this->me['array']);
478             case 1:
479                 return 1;
480             default:
481                 return 0;
482         }
483     }
484
485     /**
486      * Implements the IteratorAggregate interface
487      *
488      * @return ArrayIterator
489      */
490     public function getIterator() {
491         switch ($this->mytype) {
492             case 3:
493                 return new \ArrayIterator($this->me['struct']);
494             case 2:
495                 return new \ArrayIterator($this->me['array']);
496             case 1:
497                 return new \ArrayIterator($this->me);
498             default:
499                 return new \ArrayIterator();
500         }
501         return new \ArrayIterator();
502     }
503
504
505     public function offsetSet($offset, $value) {
506
507         switch ($this->mytype) {
508             case 3:
509                 if (!($value instanceof \PhpXmlRpc\Value)) {
510                     throw new \Exception('It is only possible to add Value objects to an XML-RPC Struct');
511                 }
512                 if (is_null($offset)) {
513                     // disallow struct members with empty names
514                     throw new \Exception('It is not possible to add anonymous members to an XML-RPC Struct');
515                 } else {
516                     $this->me['struct'][$offset] = $value;
517                 }
518                 return;
519             case 2:
520                 if (!($value instanceof \PhpXmlRpc\Value)) {
521                     throw new \Exception('It is only possible to add Value objects to an XML-RPC Array');
522                 }
523                 if (is_null($offset)) {
524                     $this->me['array'][] = $value;
525                 } else {
526                     // nb: we are not checking that $offset is above the existing array range...
527                     $this->me['array'][$offset] = $value;
528                 }
529                 return;
530             case 1:
531 // todo: handle i4/i8 vs int
532                 reset($this->me);
533                 list($type,) = each($this->me);
534                 if ($type != $offset) {
535                     throw new \Exception('');
536                 }
537                 $this->me[$type] = $value;
538                 return;
539             default:
540                 // it would be nice to allow empty values to be be turned into non-empty ones this way, but we miss info to do so
541                 throw new \Exception("XML-RPC Value is of type 'undef' and its value can not be set using array index");
542         }
543     }
544
545     public function offsetExists($offset) {
546         switch ($this->mytype) {
547             case 3:
548                 return isset($this->me['struct'][$offset]);
549             case 2:
550                 return isset($this->me['array'][$offset]);
551             case 1:
552 // todo: handle i4/i8 vs int
553                 return $offset == $this->scalartyp();
554             default:
555                 return false;
556         }
557     }
558
559     public function offsetUnset($offset) {
560         switch ($this->mytype) {
561             case 3:
562                 unset($this->me['struct'][$offset]);
563                 return;
564             case 2:
565                 unset($this->me['array'][$offset]);
566                 return;
567             case 1:
568                 // can not remove value from a scalar
569                 throw new \Exception("XML-RPC Value is of type 'scalar' and its value can not be unset using array index");
570             default:
571                 throw new \Exception("XML-RPC Value is of type 'undef' and its value can not be unset using array index");
572         }
573     }
574
575     public function offsetGet($offset) {
576         switch ($this->mytype) {
577             case 3:
578                 return isset($this->me['struct'][$offset]) ? $this->me['struct'][$offset] : null;
579             case 2:
580                 return isset($this->me['array'][$offset]) ? $this->me['array'][$offset] : null;
581             case 1:
582 // on bad type: null or exception?
583                 reset($this->me);
584                 list($type, $value) = each($this->me);
585                 return $type == $offset ? $value : null;
586             default:
587 // return null or exception?
588                 throw new \Exception("XML-RPC Value is of type 'undef' and can not be accessed using array index");
589         }
590     }
591 }