X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FValue.php;h=6e8d7efa6f12d46f62b166659a9012b30f439186;hb=751f9c979bd0d3ca2198ad31009d4cb4cff691cc;hp=76d3a029e44a2288767376e2daa85ecdd449e42b;hpb=35d2340eea9a168983b8f20d54c399422790f816;p=plcapi.git diff --git a/src/Value.php b/src/Value.php index 76d3a02..6e8d7ef 100644 --- a/src/Value.php +++ b/src/Value.php @@ -4,7 +4,7 @@ namespace PhpXmlRpc; use PhpXmlRpc\Helper\Charset; -class Value +class Value implements \Countable, \IteratorAggregate { public static $xmlrpcI4 = "i4"; public static $xmlrpcInt = "int"; @@ -31,21 +31,23 @@ class Value "null" => 1, ); - /// @todo: does these need to be public? + /// @todo: do these need to be public? public $me = array(); public $mytype = 0; public $_php_class = null; /** + * Build an xmlrpc value. + * When no value or type is passed in, the value is left uninitialized, and the value can be added later + * * @param mixed $val * @param string $type any valid xmlrpc type name (lowercase). If null, 'string' is assumed */ public function __construct($val = -1, $type = '') { - /// @todo: optimization creep - do not call addXX, do it all inline. - /// downside: booleans will not be coerced anymore + // optimization creep - do not call addXX, do it all inline. + // downside: booleans will not be coerced anymore if ($val !== -1 || $type != '') { - // optimization creep: inlined all work done by constructor switch ($type) { case '': $this->mytype = 1; @@ -73,27 +75,11 @@ class Value default: error_log("XML-RPC: " . __METHOD__ . ": not a known type ($type)"); } - /*if($type=='') - { - $type='string'; - } - if(static::$xmlrpcTypes[$type]==1) - { - $this->addScalar($val,$type); - } - elseif(static::$xmlrpcTypes[$type]==2) - { - $this->addArray($val); - } - elseif(static::$xmlrpcTypes[$type]==3) - { - $this->addStruct($val); - }*/ } } /** - * Add a single php value to an (unitialized) xmlrpcval. + * Add a single php value to an (uninitialized) xmlrpc value. * * @param mixed $val * @param string $type @@ -102,14 +88,13 @@ class Value */ public function addScalar($val, $type = 'string') { - $typeof = null; + $typeOf = null; if (isset(static::$xmlrpcTypes[$type])) { - $typeof = static::$xmlrpcTypes[$type]; + $typeOf = static::$xmlrpcTypes[$type]; } - if ($typeof != 1) { + if ($typeOf !== 1) { error_log("XML-RPC: " . __METHOD__ . ": not a scalar type ($type)"); - return 0; } @@ -127,88 +112,80 @@ class Value switch ($this->mytype) { case 1: error_log('XML-RPC: ' . __METHOD__ . ': scalar xmlrpc value can have only one value'); - return 0; case 3: error_log('XML-RPC: ' . __METHOD__ . ': cannot add anonymous scalar to struct xmlrpc value'); - return 0; case 2: // we're adding a scalar value to an array here - //$ar=$this->me['array']; - //$ar[]=new Value($val, $type); - //$this->me['array']=$ar; - // Faster (?) avoid all the costly array-copy-by-val done here... $this->me['array'][] = new Value($val, $type); return 1; default: // a scalar, so set the value and remember we're scalar $this->me[$type] = $val; - $this->mytype = $typeof; + $this->mytype = $typeOf; return 1; } } /** - * Add an array of xmlrpcval objects to an xmlrpcval. + * Add an array of xmlrpc values objects to an xmlrpc value. * - * @param array $vals + * @param Value[] $values * * @return int 1 or 0 on failure * - * @todo add some checking for $vals to be an array of xmlrpcvals? + * @todo add some checking for $values to be an array of xmlrpc values? */ - public function addArray($vals) + public function addArray($values) { if ($this->mytype == 0) { $this->mytype = static::$xmlrpcTypes['array']; - $this->me['array'] = $vals; + $this->me['array'] = $values; return 1; } elseif ($this->mytype == 2) { // we're adding to an array here - $this->me['array'] = array_merge($this->me['array'], $vals); + $this->me['array'] = array_merge($this->me['array'], $values); return 1; } else { error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']'); - return 0; } } /** - * Add an array of named xmlrpcval objects to an xmlrpcval. + * Add an array of named xmlrpc value objects to an xmlrpc value. * - * @param array $vals + * @param Value[] $values * * @return int 1 or 0 on failure * - * @todo add some checking for $vals to be an array? + * @todo add some checking for $values to be an array? */ - public function addStruct($vals) + public function addStruct($values) { if ($this->mytype == 0) { $this->mytype = static::$xmlrpcTypes['struct']; - $this->me['struct'] = $vals; + $this->me['struct'] = $values; return 1; } elseif ($this->mytype == 3) { // we're adding to a struct here - $this->me['struct'] = array_merge($this->me['struct'], $vals); + $this->me['struct'] = array_merge($this->me['struct'], $values); return 1; } else { error_log('XML-RPC: ' . __METHOD__ . ': already initialized as a [' . $this->kindOf() . ']'); - return 0; } } /** - * Returns a string containing "struct", "array" or "scalar" describing the base type of the value. + * Returns a string containing "struct", "array", "scalar" or "undef" describing the base type of the value. * * @return string */ @@ -229,7 +206,7 @@ class Value } } - private function serializedata($typ, $val, $charset_encoding = '') + protected function serializedata($typ, $val, $charsetEncoding = '') { $rs = ''; @@ -249,7 +226,7 @@ class Value case static::$xmlrpcString: // G. Giunta 2005/2/13: do NOT use htmlentities, since // it will produce named html entities, which are invalid xml - $rs .= "<${typ}>" . Charset::instance()->encode_entities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charset_encoding) . ""; + $rs .= "<${typ}>" . Charset::instance()->encodeEntities($val, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . ""; break; case static::$xmlrpcInt: case static::$xmlrpcI4: @@ -284,7 +261,7 @@ class Value break; default: // no standard type value should arrive here, but provide a possibility - // for xmlrpcvals of unknown type... + // for xmlrpc values of unknown type... $rs .= "<${typ}>${val}"; } break; @@ -297,9 +274,9 @@ class Value } $charsetEncoder = Charset::instance(); foreach ($val as $key2 => $val2) { - $rs .= '' . $charsetEncoder->encode_entities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charset_encoding) . "\n"; + $rs .= '' . $charsetEncoder->encodeEntities($key2, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n"; //$rs.=$this->serializeval($val2); - $rs .= $val2->serialize($charset_encoding); + $rs .= $val2->serialize($charsetEncoding); $rs .= "\n"; } $rs .= ''; @@ -309,7 +286,7 @@ class Value $rs .= "\n\n"; foreach ($val as $element) { //$rs.=$this->serializeval($val[$i]); - $rs .= $element->serialize($charset_encoding); + $rs .= $element->serialize($charsetEncoding); } $rs .= "\n"; break; @@ -323,64 +300,50 @@ class Value /** * Returns xml representation of the value. XML prologue not included. * - * @param string $charset_encoding the charset to be used for serialization. if null, US-ASCII is assumed + * @param string $charsetEncoding the charset to be used for serialization. if null, US-ASCII is assumed * * @return string */ - public function serialize($charset_encoding = '') + public function serialize($charsetEncoding = '') { - // add check? slower, but helps to avoid recursion in serializing broken xmlrpcvals... + // add check? slower, but helps to avoid recursion in serializing broken xmlrpc values... //if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval'))) //{ reset($this->me); list($typ, $val) = each($this->me); - return '' . $this->serializedata($typ, $val, $charset_encoding) . "\n"; - //} - } - - // DEPRECATED - public function serializeval($o) - { - // add check? slower, but helps to avoid recursion in serializing broken xmlrpcvals... - //if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval'))) - //{ - $ar = $o->me; - reset($ar); - list($typ, $val) = each($ar); - - return '' . $this->serializedata($typ, $val) . "\n"; + return '' . $this->serializedata($typ, $val, $charsetEncoding) . "\n"; //} } /** * Checks whether a struct member with a given name is present. - * Works only on xmlrpcvals of type struct. + * Works only on xmlrpc values of type struct. * - * @param string $m the name of the struct member to be looked up + * @param string $key the name of the struct member to be looked up * * @return boolean */ - public function structmemexists($m) + public function structmemexists($key) { - return array_key_exists($m, $this->me['struct']); + return array_key_exists($key, $this->me['struct']); } /** - * Returns the value of a given struct member (an xmlrpcval object in itself). + * Returns the value of a given struct member (an xmlrpc value object in itself). * Will raise a php warning if struct member of given name does not exist. * - * @param string $m the name of the struct member to be looked up + * @param string $key the name of the struct member to be looked up * - * @return xmlrpcval + * @return Value */ - public function structmem($m) + public function structmem($key) { - return $this->me['struct'][$m]; + return $this->me['struct'][$key]; } /** - * Reset internal pointer for xmlrpcvals of type struct. + * Reset internal pointer for xmlrpc values of type struct. */ public function structreset() { @@ -388,52 +351,17 @@ class Value } /** - * Return next member element for xmlrpcvals of type struct. + * Return next member element for xmlrpc values of type struct. * - * @return xmlrpcval + * @return Value */ public function structeach() { return each($this->me['struct']); } - // DEPRECATED! this code looks like it is very fragile and has not been fixed - // for a long long time. Shall we remove it for 2.0? - public function getval() - { - // UNSTABLE - reset($this->me); - list($a, $b) = each($this->me); - // contributed by I Sofer, 2001-03-24 - // add support for nested arrays to scalarval - // i've created a new method here, so as to - // preserve back compatibility - - if (is_array($b)) { - @reset($b); - while (list($id, $cont) = @each($b)) { - $b[$id] = $cont->scalarval(); - } - } - - // add support for structures directly encoding php objects - if (is_object($b)) { - $t = get_object_vars($b); - @reset($t); - while (list($id, $cont) = @each($t)) { - $t[$id] = $cont->scalarval(); - } - @reset($t); - while (list($id, $cont) = @each($t)) { - @$b->$id = $cont; - } - } - // end contrib - return $b; - } - /** - * Returns the value of a scalar xmlrpcval. + * Returns the value of a scalar xmlrpc value. * * @return mixed */ @@ -446,7 +374,7 @@ class Value } /** - * Returns the type of the xmlrpcval. + * Returns the type of the xmlrpc value. * For integers, 'int' is always returned in place of 'i4'. * * @return string @@ -463,21 +391,23 @@ class Value } /** - * Returns the m-th member of an xmlrpcval of struct type. + * Returns the m-th member of an xmlrpc value of struct type. * - * @param integer $m the index of the value to be retrieved (zero based) + * @param integer $key the index of the value to be retrieved (zero based) * - * @return xmlrpcval + * @return Value */ - public function arraymem($m) + public function arraymem($key) { - return $this->me['array'][$m]; + return $this->me['array'][$key]; } /** - * Returns the number of members in an xmlrpcval of array type. + * Returns the number of members in an xmlrpc value of array type. * * @return integer + * + * @deprecated use count() instead */ public function arraysize() { @@ -485,12 +415,45 @@ class Value } /** - * Returns the number of members in an xmlrpcval of struct type. + * Returns the number of members in an xmlrpc value of struct type. * * @return integer + * + * @deprecateduse count() instead */ public function structsize() { return count($this->me['struct']); } -} + + /** + * Returns the number of members in an xmlrpc value: + * - 0 for uninitialized values + * - 1 for scalars + * - the number of elements for structs and arrays + * + * @return integer + */ + public function count() + { + switch ($this->mytype) { + case 3: + count($this->me['struct']); + case 2: + return count($this->me['array']); + case 1: + return 1; + default: + return 0; + } + } + + /** + * Implements the IteratorAggregate interface + * + * @return ArrayIterator + */ + public function getIterator() { + return new \ArrayIterator($this->me); + } +} \ No newline at end of file