2006-08-18 09:44:01 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Library of array functions for Cake.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2007-02-02 10:39:45 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
2006-08-18 09:44:01 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2007-02-02 10:39:45 +00:00
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
2006-08-18 09:44:01 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
2007-02-02 10:39:45 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0
|
2006-08-18 09:44:01 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Class used for manipulation of arrays.
|
|
|
|
*
|
|
|
|
* Long description for class
|
|
|
|
*
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
*/
|
|
|
|
class Set extends Object {
|
|
|
|
/**
|
|
|
|
* Value of the Set object.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2006-11-21 22:40:30 +00:00
|
|
|
var $value = array();
|
2006-08-18 09:44:01 +00:00
|
|
|
/**
|
|
|
|
* Constructor. Defaults to an empty array.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function __construct() {
|
|
|
|
if (func_num_args() == 1 && is_array(func_get_arg(0))) {
|
2006-11-21 22:40:30 +00:00
|
|
|
$this->value = func_get_arg(0);
|
2006-08-18 09:44:01 +00:00
|
|
|
} else {
|
2006-11-21 22:40:30 +00:00
|
|
|
$this->value = func_get_args();
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Returns the contents of the Set object
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @return array
|
2006-08-18 09:44:01 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2007-02-17 16:54:36 +00:00
|
|
|
function &get() {
|
2006-11-21 22:40:30 +00:00
|
|
|
return $this->value;
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
/**
|
2007-04-05 05:57:52 +00:00
|
|
|
* This function can be thought of as a hybrid between PHP's array_merge and array_merge_recursive. The difference
|
|
|
|
* to the two is that if an array key contains another array then the function behaves recursive (unlike array_merge)
|
|
|
|
* but does not do if for keys containing strings (unlike array_merge_recursive). See the unit test for more information.
|
2007-04-05 21:29:00 +00:00
|
|
|
*
|
2007-04-05 05:57:52 +00:00
|
|
|
* Note: This function will work with an unlimited amount of arguments and typecasts non-array parameters into arrays.
|
2006-08-18 09:44:01 +00:00
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $arr1 Array to be merged
|
|
|
|
* @param array $arr2 Array to merge with
|
|
|
|
* @return array Merged array
|
2007-04-05 20:09:32 +00:00
|
|
|
* @access public
|
2006-08-18 09:44:01 +00:00
|
|
|
*/
|
2007-04-05 05:57:52 +00:00
|
|
|
function merge($arr1, $arr2 = null) {
|
|
|
|
$args = func_get_args();
|
2007-04-05 21:29:00 +00:00
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if (is_a($this, 'set')) {
|
2007-04-05 05:57:52 +00:00
|
|
|
$backtrace = debug_backtrace();
|
|
|
|
$previousCall = low($backtrace[1]['class'].'::'.$backtrace[1]['function']);
|
|
|
|
if ($previousCall != 'set::merge') {
|
|
|
|
$r =& $this->value;
|
|
|
|
array_unshift($args, null);
|
|
|
|
}
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!isset($r)) {
|
2007-04-05 05:57:52 +00:00
|
|
|
$r = (array)current($args);
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
2007-04-05 21:29:00 +00:00
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
while (($arg = next($args)) !== false) {
|
2007-04-05 05:57:52 +00:00
|
|
|
if (is_a($arg, 'set')) {
|
|
|
|
$arg = $arg->get();
|
|
|
|
}
|
2007-04-05 21:29:00 +00:00
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ((array)$arg as $key => $val) {
|
|
|
|
if (is_array($val) && isset($r[$key]) && is_array($r[$key])) {
|
2007-04-05 05:57:52 +00:00
|
|
|
$r[$key] = Set::merge($r[$key], $val);
|
2007-06-20 06:15:35 +00:00
|
|
|
} elseif (is_int($key)) {
|
2007-04-05 05:57:52 +00:00
|
|
|
$r[] = $val;
|
|
|
|
} else {
|
|
|
|
$r[$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $r;
|
2007-04-04 07:25:48 +00:00
|
|
|
}
|
2007-04-17 07:00:26 +00:00
|
|
|
/**
|
|
|
|
* Filters empty elements out of a route array, excluding '0'.
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $var Either an array to filter, or value when in callback
|
|
|
|
* @param boolean $isArray Force to tell $var is an array when $var is empty
|
|
|
|
* @return mixed Either filtered array, or true/false when in callback
|
|
|
|
* @access public
|
2007-04-17 07:00:26 +00:00
|
|
|
*/
|
|
|
|
function filter($var, $isArray = false) {
|
|
|
|
if (is_array($var) && (!empty($var) || $isArray)) {
|
|
|
|
$set = new Set();
|
|
|
|
return array_filter($var, array(&$set, 'filter'));
|
|
|
|
} else {
|
|
|
|
if ($var === 0 || $var === '0' || !empty($var)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-04-04 07:25:48 +00:00
|
|
|
/**
|
|
|
|
* Pushes the differences in $array2 onto the end of $array
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $array Original array
|
|
|
|
* @param mixed $array2 Diferences to push
|
|
|
|
* @return array Combined array
|
2007-04-04 07:25:48 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function pushDiff($array = null, $array2 = null) {
|
|
|
|
if ($array2 !== null && is_array($array2)) {
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($array2 as $key => $value) {
|
2007-04-04 07:25:48 +00:00
|
|
|
if (!array_key_exists($key, $array)) {
|
|
|
|
$array[$key] = $value;
|
|
|
|
} else {
|
|
|
|
if (is_array($value)) {
|
|
|
|
$array[$key] = Set::pushDiff($array[$key], $array2[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $array;
|
|
|
|
}
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
if (!isset($this->value)) {
|
2007-04-04 07:25:48 +00:00
|
|
|
$this->value = array();
|
|
|
|
}
|
|
|
|
$this->value = Set::pushDiff($this->value, Set::__array($array));
|
2006-11-21 22:40:30 +00:00
|
|
|
return $this->value;
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Maps the contents of the Set object to an object hierarchy
|
|
|
|
*
|
|
|
|
* @param string $class A class name of the type of object to map to
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param string $tmp A temporary class name used as $class if $class is an array
|
|
|
|
* @return object Hierarchical object
|
2006-08-18 09:44:01 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function map($class = 'stdClass', $tmp = 'stdClass') {
|
|
|
|
if (is_array($class)) {
|
|
|
|
$val = $class;
|
|
|
|
$class = $tmp;
|
2007-04-05 05:57:52 +00:00
|
|
|
} elseif (is_a($this, 'set')) {
|
2006-08-18 09:44:01 +00:00
|
|
|
$val = $this->get();
|
|
|
|
}
|
2006-09-28 20:26:54 +00:00
|
|
|
|
2006-08-18 09:44:01 +00:00
|
|
|
if (empty($val) || $val == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return Set::__map($val, $class);
|
|
|
|
}
|
2007-05-26 19:06:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the array value of $array. If $array is null, it will return
|
|
|
|
* the current array Set holds. If it is an object of type Set, it
|
|
|
|
* will return its value. If it is another object, its object variables.
|
|
|
|
* If it is anything else but an array, it will return an array whose first
|
|
|
|
* element is $array.
|
|
|
|
*
|
|
|
|
* @param mixed $array Data from where to get the array.
|
|
|
|
* @return array Array from $array.
|
|
|
|
* @access private
|
|
|
|
*/
|
2007-04-04 07:25:48 +00:00
|
|
|
function __array($array) {
|
|
|
|
if ($array == null) {
|
|
|
|
$array = $this->value;
|
2007-04-05 05:57:52 +00:00
|
|
|
} elseif (is_object($array) && (is_a($array, 'set'))) {
|
2007-04-04 07:25:48 +00:00
|
|
|
$array = $array->get();
|
|
|
|
} elseif (is_object($array)) {
|
2007-04-05 05:57:52 +00:00
|
|
|
$array = get_object_vars($array);
|
2007-04-04 07:25:48 +00:00
|
|
|
} elseif (!is_array($array)) {
|
|
|
|
$array = array($array);
|
|
|
|
}
|
|
|
|
return $array;
|
|
|
|
}
|
2006-10-06 18:39:38 +00:00
|
|
|
|
2007-05-26 19:06:14 +00:00
|
|
|
/**
|
|
|
|
* Maps the given value as an object. If $value is an object,
|
|
|
|
* it returns $value. Otherwise it maps $value as an object of
|
|
|
|
* type $class, and identity $identity. If $value is not empty,
|
|
|
|
* it will be used to set properties of returned object
|
|
|
|
* (recursively).
|
|
|
|
*
|
|
|
|
* @param mixed $value Value to map
|
|
|
|
* @param string $class Class name
|
|
|
|
* @param string $identity Identity to assign to class
|
|
|
|
* @return mixed Mapped object
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
function __map($value, $class, $identity = null) {
|
2006-10-06 18:39:38 +00:00
|
|
|
if (is_object($value)) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2006-08-22 07:26:58 +00:00
|
|
|
if (!empty($value) && Set::numeric(array_keys($value))) {
|
2006-08-18 09:44:01 +00:00
|
|
|
$ret = array();
|
|
|
|
foreach ($value as $key => $val) {
|
|
|
|
$ret[$key] = Set::__map($val, $class);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$ret = new $class;
|
2006-09-28 20:26:54 +00:00
|
|
|
if ($identity != null) {
|
|
|
|
$ret->__identity__ = $identity;
|
|
|
|
}
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
|
2006-08-22 07:26:58 +00:00
|
|
|
if (empty($value)) {
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
2006-08-18 09:44:01 +00:00
|
|
|
$keys = array_keys($value);
|
|
|
|
foreach ($value as $key => $val) {
|
|
|
|
if (!is_numeric($key) && strlen($key) > 1) {
|
2006-10-06 18:39:38 +00:00
|
|
|
if ($key{0} == strtoupper($key{0}) && $key{1} == strtolower($key{1}) && (is_array($val) || is_object($val))) {
|
2006-08-18 09:44:01 +00:00
|
|
|
if ($key == $keys[0]) {
|
2006-09-28 20:26:54 +00:00
|
|
|
$ret = Set::__map($val, $class, $key);
|
2006-08-18 09:44:01 +00:00
|
|
|
} else {
|
2006-09-28 20:26:54 +00:00
|
|
|
$ret->{$key} = Set::__map($val, $class, $key);
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$ret->{$key} = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-05-26 19:06:14 +00:00
|
|
|
|
2006-08-18 09:44:01 +00:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Checks to see if all the values in the array are numeric
|
|
|
|
*
|
|
|
|
* @param array $array The array to check. If null, the value of the current Set object
|
2007-05-26 19:06:14 +00:00
|
|
|
* @return boolean true if values are numeric, false otherwise
|
2006-08-18 09:44:01 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function numeric($array = null) {
|
|
|
|
if ($array == null && (is_a($this, 'set') || is_a($this, 'Set'))) {
|
|
|
|
$array = $this->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
$numeric = true;
|
|
|
|
$keys = array_keys($array);
|
|
|
|
$count = count($keys);
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
if (!is_numeric($array[$keys[$i]])) {
|
|
|
|
$numeric = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $numeric;
|
|
|
|
}
|
2007-02-10 16:02:45 +00:00
|
|
|
/**
|
|
|
|
* Return a value from an array list if the key exists.
|
|
|
|
*
|
|
|
|
* If a comma separated $list is passed arrays are numeric with the key of the first being 0
|
|
|
|
* $list = 'no, yes' would translate to $list = array(0 => 'no', 1 => 'yes');
|
|
|
|
*
|
|
|
|
* If an array is used, keys can be strings example: array('no' => 0, 'yes' => 1);
|
|
|
|
*
|
|
|
|
* $list defaults to 0 = no 1 = yes if param is not passed
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $select Key in $list to return
|
2007-02-10 16:02:45 +00:00
|
|
|
* @param mixed $list can be an array or a comma-separated list.
|
|
|
|
* @return string the value of the array key or null if no match
|
2007-05-26 19:06:14 +00:00
|
|
|
* @access public
|
2007-02-10 16:02:45 +00:00
|
|
|
*/
|
|
|
|
function enum($select, $list = null) {
|
|
|
|
if (empty($list) && is_a($this, 'Set')) {
|
|
|
|
$list = $this->get();
|
|
|
|
} elseif (empty($list)) {
|
|
|
|
$list = array('no', 'yes');
|
|
|
|
}
|
|
|
|
|
|
|
|
$return = null;
|
|
|
|
$list = Set::normalize($list, false);
|
|
|
|
|
|
|
|
if (array_key_exists($select, $list)) {
|
|
|
|
$return = $list[$select];
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
2006-10-13 07:41:10 +00:00
|
|
|
/**
|
2007-05-26 19:06:14 +00:00
|
|
|
* Gets a value from an array or object that maps a given path.
|
2006-10-14 17:19:03 +00:00
|
|
|
* The special {n}, as seen in the Model::generateList method, is taken care of here.
|
2006-10-13 07:41:10 +00:00
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $data Array from where to extract
|
|
|
|
* @param mixed $path As an array, or as a dot-separated string.
|
|
|
|
* @return array Extracted data
|
|
|
|
* @access public
|
2006-10-13 07:41:10 +00:00
|
|
|
*/
|
2006-11-21 22:40:30 +00:00
|
|
|
function extract($data, $path = null) {
|
|
|
|
if ($path === null && is_a($this, 'set')) {
|
|
|
|
$path = $data;
|
|
|
|
$data = $this->get();
|
|
|
|
}
|
2007-02-08 22:14:36 +00:00
|
|
|
if (is_object($data)) {
|
|
|
|
$data = get_object_vars($data);
|
|
|
|
}
|
2006-11-21 22:40:30 +00:00
|
|
|
|
2006-10-14 17:19:03 +00:00
|
|
|
if (!is_array($path)) {
|
2006-11-08 03:26:09 +00:00
|
|
|
if (strpos($path, '/') !== 0 && strpos($path, './') === false) {
|
|
|
|
$path = explode('.', $path);
|
|
|
|
} else {
|
|
|
|
}
|
2006-10-13 19:00:04 +00:00
|
|
|
}
|
2006-10-14 17:19:03 +00:00
|
|
|
$tmp = array();
|
2006-11-08 03:26:09 +00:00
|
|
|
if (!is_array($path) || empty($path)) {
|
|
|
|
return null;
|
|
|
|
}
|
2006-10-14 17:19:03 +00:00
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($path as $i => $key) {
|
2007-04-29 01:47:26 +00:00
|
|
|
if (is_numeric($key) && intval($key) > 0 || $key == '0') {
|
2006-10-14 17:19:03 +00:00
|
|
|
if (isset($data[intval($key)])) {
|
|
|
|
$data = $data[intval($key)];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} elseif ($key == '{n}') {
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($data as $j => $val) {
|
2006-10-14 17:19:03 +00:00
|
|
|
$tmp[] = Set::extract($val, array_slice($path, $i + 1));
|
|
|
|
}
|
|
|
|
return $tmp;
|
|
|
|
} else {
|
|
|
|
if (isset($data[$key])) {
|
|
|
|
$data = $data[$key];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2006-10-13 07:41:10 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-14 17:19:03 +00:00
|
|
|
return $data;
|
|
|
|
}
|
2007-02-12 18:31:26 +00:00
|
|
|
/**
|
|
|
|
* Inserts $data into an array as defined by $path.
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $list Where to insert into
|
2007-02-12 18:31:26 +00:00
|
|
|
* @param mixed $path A dot-separated string.
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $data Data to insert
|
2007-02-12 18:31:26 +00:00
|
|
|
* @return array
|
2007-05-26 19:06:14 +00:00
|
|
|
* @access public
|
2007-02-12 18:31:26 +00:00
|
|
|
*/
|
2007-02-20 19:51:58 +00:00
|
|
|
function insert($list, $path, $data = null) {
|
2007-02-12 18:31:26 +00:00
|
|
|
if (empty($data) && is_a($this, 'Set')) {
|
|
|
|
$data = $path;
|
|
|
|
$path = $list;
|
2007-02-17 16:54:36 +00:00
|
|
|
$list =& $this->get();
|
2007-02-12 18:31:26 +00:00
|
|
|
}
|
|
|
|
if (!is_array($path)) {
|
|
|
|
$path = explode('.', $path);
|
|
|
|
}
|
|
|
|
$_list =& $list;
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($path as $i => $key) {
|
2007-04-29 01:47:26 +00:00
|
|
|
if (is_numeric($key) && intval($key) > 0 || $key == '0') {
|
2007-02-12 18:31:26 +00:00
|
|
|
$key = intval($key);
|
|
|
|
}
|
|
|
|
if ($i == count($path) - 1) {
|
|
|
|
$_list[$key] = $data;
|
2007-02-12 20:06:39 +00:00
|
|
|
} else {
|
|
|
|
if (!isset($_list[$key])) {
|
|
|
|
$_list[$key] = array();
|
|
|
|
}
|
2007-02-12 18:31:26 +00:00
|
|
|
$_list =& $_list[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $list;
|
|
|
|
}
|
2007-02-13 18:20:28 +00:00
|
|
|
/**
|
2007-05-26 19:06:14 +00:00
|
|
|
* Removes an element from a Set or array as defined by $path.
|
2007-02-13 18:20:28 +00:00
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $list From where to remove
|
2007-02-13 18:20:28 +00:00
|
|
|
* @param mixed $path A dot-separated string.
|
2007-05-26 19:06:14 +00:00
|
|
|
* @return array Array with $path removed from its value
|
|
|
|
* @access public
|
2007-02-13 18:20:28 +00:00
|
|
|
*/
|
2007-02-15 20:39:43 +00:00
|
|
|
function remove($list, $path = null) {
|
|
|
|
if (empty($path) && is_a($this, 'Set')) {
|
2007-02-13 18:20:28 +00:00
|
|
|
$path = $list;
|
2007-02-17 16:54:36 +00:00
|
|
|
$list =& $this->get();
|
2007-02-13 18:20:28 +00:00
|
|
|
}
|
|
|
|
if (!is_array($path)) {
|
|
|
|
$path = explode('.', $path);
|
|
|
|
}
|
|
|
|
$_list =& $list;
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($path as $i => $key) {
|
2007-04-29 01:47:26 +00:00
|
|
|
if (is_numeric($key) && intval($key) > 0 || $key == '0') {
|
2007-02-13 18:20:28 +00:00
|
|
|
$key = intval($key);
|
|
|
|
}
|
|
|
|
if ($i == count($path) - 1) {
|
|
|
|
unset($_list[$key]);
|
|
|
|
} else {
|
|
|
|
if (!isset($_list[$key])) {
|
|
|
|
return $list;
|
|
|
|
}
|
|
|
|
$_list =& $_list[$key];
|
|
|
|
}
|
|
|
|
}
|
2007-02-15 20:39:43 +00:00
|
|
|
|
|
|
|
if (is_a($this, 'Set')) {
|
|
|
|
$this->value = $list;
|
|
|
|
return $this;
|
|
|
|
} else {
|
|
|
|
return $list;
|
|
|
|
}
|
2007-02-13 18:20:28 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Checks if a particular path is set in an array
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $data Data to check on
|
2007-02-13 18:20:28 +00:00
|
|
|
* @param mixed $path A dot-separated string.
|
2007-05-26 19:06:14 +00:00
|
|
|
* @return boolean true if path is found, false otherwise
|
|
|
|
* @access public
|
2007-02-13 18:20:28 +00:00
|
|
|
*/
|
|
|
|
function check($data, $path = null) {
|
|
|
|
if (empty($path) && is_a($this, 'Set')) {
|
|
|
|
$path = $data;
|
|
|
|
$data = $this->get();
|
|
|
|
}
|
|
|
|
if (!is_array($path)) {
|
|
|
|
$path = explode('.', $path);
|
|
|
|
}
|
|
|
|
|
2007-06-20 06:15:35 +00:00
|
|
|
foreach ($path as $i => $key) {
|
2007-04-29 01:47:26 +00:00
|
|
|
if (is_numeric($key) && intval($key) > 0 || $key == '0') {
|
2007-02-13 18:20:28 +00:00
|
|
|
$key = intval($key);
|
|
|
|
}
|
|
|
|
if ($i == count($path) - 1) {
|
|
|
|
return isset($data[$key]);
|
|
|
|
} else {
|
|
|
|
if (!isset($data[$key])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$data =& $data[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-12-30 06:12:29 +00:00
|
|
|
/**
|
|
|
|
* Computes the difference between a Set and an array, two Sets, or two arrays
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $val1 First value
|
|
|
|
* @param mixed $val2 Second value
|
|
|
|
* @return array Computed difference
|
|
|
|
* @access public
|
2006-12-30 06:12:29 +00:00
|
|
|
*/
|
|
|
|
function diff($val1, $val2 = null) {
|
|
|
|
if ($val2 == null && (is_a($this, 'set') || is_a($this, 'Set'))) {
|
|
|
|
$val2 = $val1;
|
|
|
|
$val1 = $this->get();
|
|
|
|
}
|
|
|
|
if (is_object($val2) && (is_a($val2, 'set') || is_a($val2, 'Set'))) {
|
2007-02-10 17:21:32 +00:00
|
|
|
$val2 = $val2->get();
|
2006-12-30 06:12:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$out = array();
|
2007-02-10 17:19:49 +00:00
|
|
|
if (empty($val1)) {
|
|
|
|
return (array)$val2;
|
|
|
|
} elseif (empty($val2)) {
|
|
|
|
return (array)$val1;
|
|
|
|
}
|
2006-12-30 06:12:29 +00:00
|
|
|
foreach ($val1 as $key => $val) {
|
2007-03-04 09:12:09 +00:00
|
|
|
if (isset($val2[$key]) && $val2[$key] != $val) {
|
|
|
|
$out[$key] = $val;
|
2007-06-20 07:51:52 +00:00
|
|
|
} elseif (!array_key_exists($key, $val2)) {
|
2006-12-30 06:12:29 +00:00
|
|
|
$out[$key] = $val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
}
|
2006-11-10 17:08:31 +00:00
|
|
|
/**
|
|
|
|
* Determines if two Sets or arrays are equal
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $val1 First value
|
|
|
|
* @param array $val2 Second value
|
|
|
|
* @return boolean true if they are equal, false otherwise
|
|
|
|
* @access public
|
2006-11-10 17:08:31 +00:00
|
|
|
*/
|
2006-11-08 03:26:09 +00:00
|
|
|
function isEqual($val1, $val2 = null) {
|
|
|
|
if ($val2 == null && (is_a($this, 'set') || is_a($this, 'Set'))) {
|
|
|
|
$val2 = $val1;
|
|
|
|
$val1 = $this->get();
|
|
|
|
}
|
2007-05-26 19:06:14 +00:00
|
|
|
|
|
|
|
return ($val1 == $val2);
|
2006-11-08 03:26:09 +00:00
|
|
|
}
|
2006-11-10 17:08:31 +00:00
|
|
|
/**
|
|
|
|
* Determines if one Set or array contains the exact keys and values of another.
|
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $val1 First value
|
|
|
|
* @param array $val2 Second value
|
|
|
|
* @return boolean true if $val1 contains $val2, false otherwise
|
|
|
|
* @access public
|
2006-11-10 17:08:31 +00:00
|
|
|
*/
|
|
|
|
function contains($val1, $val2 = null) {
|
|
|
|
if ($val2 == null && is_a($this, 'set')) {
|
|
|
|
$val2 = $val1;
|
|
|
|
$val1 = $this->get();
|
|
|
|
} elseif ($val2 != null && is_object($val2) && is_a($val2, 'set')) {
|
|
|
|
$val2 = $val2->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($val2 as $key => $val) {
|
|
|
|
if (is_numeric($key)) {
|
|
|
|
if (!in_array($val, $val1)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!isset($val1[$key]) || $val1[$key] != $val) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2006-11-08 03:26:09 +00:00
|
|
|
/**
|
2007-05-26 19:06:14 +00:00
|
|
|
* Counts the dimensions of an array.
|
2006-11-08 03:26:09 +00:00
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param array $array Array to count dimensions on
|
2006-11-08 03:26:09 +00:00
|
|
|
* @return int The number of dimensions in $array
|
2007-05-26 19:06:14 +00:00
|
|
|
* @access public
|
2006-11-08 03:26:09 +00:00
|
|
|
*/
|
|
|
|
function countDim($array = null) {
|
|
|
|
if ($array === null) {
|
|
|
|
$array = $this->get();
|
|
|
|
} elseif (is_object($array) && is_a($array, 'set')) {
|
|
|
|
$array = $array->get();
|
|
|
|
}
|
|
|
|
if (is_array(reset($array))) {
|
|
|
|
$return = Set::countDim(reset($array)) + 1;
|
|
|
|
} else {
|
|
|
|
$return = 1;
|
|
|
|
}
|
|
|
|
return $return;
|
|
|
|
}
|
2007-01-20 20:50:57 +00:00
|
|
|
/**
|
2007-05-26 19:06:14 +00:00
|
|
|
* Normalizes a string or array list.
|
2007-01-20 20:50:57 +00:00
|
|
|
*
|
2007-05-26 19:06:14 +00:00
|
|
|
* @param mixed $list List to normalize
|
2007-01-20 20:50:57 +00:00
|
|
|
* @param boolean $assoc If true, $list will be converted to an associative array
|
|
|
|
* @param string $sep If $list is a string, it will be split into an array with $sep
|
|
|
|
* @param boolean $trim If true, separated strings will be trimmed
|
|
|
|
* @return array
|
2007-05-26 19:06:14 +00:00
|
|
|
* @access public
|
2007-01-20 20:50:57 +00:00
|
|
|
*/
|
|
|
|
function normalize($list, $assoc = true, $sep = ',', $trim = true) {
|
|
|
|
if (is_string($list)) {
|
|
|
|
$list = explode($sep, $list);
|
|
|
|
if ($trim) {
|
|
|
|
$list = array_map('trim', $list);
|
|
|
|
}
|
|
|
|
if ($assoc) {
|
|
|
|
return Set::normalize($list);
|
|
|
|
}
|
|
|
|
} elseif (is_array($list)) {
|
|
|
|
$keys = array_keys($list);
|
|
|
|
$count = count($keys);
|
|
|
|
$numeric = true;
|
|
|
|
|
|
|
|
if (!$assoc) {
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
if (!is_int($keys[$i])) {
|
|
|
|
$numeric = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$numeric || $assoc) {
|
|
|
|
$newList = array();
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
if (is_int($keys[$i])) {
|
|
|
|
$newList[$list[$keys[$i]]] = null;
|
|
|
|
} else {
|
|
|
|
$newList[$keys[$i]] = $list[$keys[$i]];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$list = $newList;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $list;
|
|
|
|
}
|
2007-06-30 22:34:47 +00:00
|
|
|
/**
|
|
|
|
* Creates an associative array using a $path1 as the path to build its keys, and optionally
|
|
|
|
* $path2 as path to get the values. If $path2 is not specified, all values will be initialized
|
2007-07-01 03:43:05 +00:00
|
|
|
* to null (useful for Set::merge). You can optionally group the values by what is obtained when
|
|
|
|
* following the path specified in $groupPath.
|
2007-06-30 22:34:47 +00:00
|
|
|
*
|
|
|
|
* @param array $data Array from where to extract keys and values
|
|
|
|
* @param mixed $path1 As an array, or as a dot-separated string.
|
|
|
|
* @param mixed $path2 As an array, or as a dot-separated string.
|
2007-07-01 03:43:05 +00:00
|
|
|
* @param string $groupPath As an array, or as a dot-separated string.
|
2007-06-30 22:34:47 +00:00
|
|
|
* @return array Combined array
|
|
|
|
* @access public
|
|
|
|
*/
|
2007-07-01 03:43:05 +00:00
|
|
|
function combine($data, $path1 = null, $path2 = null, $groupPath = null) {
|
|
|
|
if (is_a($this, 'set') && is_string($data) && is_string($path1) && is_string($path2)) {
|
|
|
|
$groupPath = $path2;
|
|
|
|
$path2 = $path1;
|
|
|
|
$path1 = $data;
|
|
|
|
$data = $this->get();
|
|
|
|
} else if (is_a($this, 'set') && is_string($data) && empty($path2)) {
|
2007-06-30 22:34:47 +00:00
|
|
|
$path2 = $path1;
|
|
|
|
$path1 = $data;
|
|
|
|
$data = $this->get();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_object($data)) {
|
|
|
|
$data = get_object_vars($data);
|
|
|
|
}
|
|
|
|
|
2007-07-01 03:43:05 +00:00
|
|
|
$keys = Set::extract($data, $path1);
|
2007-06-30 22:34:47 +00:00
|
|
|
|
|
|
|
if (!empty($path2)) {
|
2007-07-01 03:43:05 +00:00
|
|
|
$vals = Set::extract($data, $path2);
|
2007-06-30 22:34:47 +00:00
|
|
|
} else {
|
2007-07-01 03:43:05 +00:00
|
|
|
$count = count($keys);
|
2007-06-30 22:34:47 +00:00
|
|
|
for($i=0; $i < $count; $i++) {
|
2007-07-01 03:43:05 +00:00
|
|
|
$vals[$i] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($groupPath != null) {
|
|
|
|
$group = Set::extract($data, $groupPath);
|
|
|
|
if (!empty($group)) {
|
|
|
|
$c = count($keys);
|
|
|
|
for ($i = 0; $i < $c; $i++) {
|
|
|
|
if (!isset($group[$i])) {
|
|
|
|
$group[$i] = 0;
|
|
|
|
}
|
|
|
|
if (!isset($out[$group[$i]])) {
|
|
|
|
$out[$group[$i]] = array();
|
|
|
|
}
|
|
|
|
$out[$group[$i]][$keys[$i]] = $vals[$i];
|
|
|
|
}
|
|
|
|
return $out;
|
2007-06-30 22:34:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-01 03:43:05 +00:00
|
|
|
return array_combine($keys, $vals);
|
2007-06-30 22:34:47 +00:00
|
|
|
}
|
2007-06-30 06:52:39 +00:00
|
|
|
|
|
|
|
function reverse($object) {
|
|
|
|
if (is_object($object)) {
|
|
|
|
$merge = array();
|
|
|
|
if (is_a($object, 'xmlnode') || is_a($object, 'XMLNode')) {
|
|
|
|
if ($object->name != Inflector::underscore($this->name)) {
|
|
|
|
if (is_object($object->child(Inflector::underscore($this->name)))) {
|
|
|
|
$object = $object->child(Inflector::underscore($this->name));
|
|
|
|
$object = $object->attributes;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif (is_a($object, 'stdclass') || is_a($object, 'stdClass')) {
|
|
|
|
$object = get_object_vars($object);
|
|
|
|
$keys = array_keys($object);
|
|
|
|
$count = count($keys);
|
|
|
|
|
|
|
|
for ($i = 0; $i < $count; $i++) {
|
|
|
|
if ($keys[$i] == '__identity__') {
|
|
|
|
unset($object[$keys[$i]]);
|
|
|
|
} elseif (is_array($object[$keys[$i]])) {
|
|
|
|
$keys1 = array_keys($object[$keys[$i]]);
|
|
|
|
$count1 = count($keys1);
|
|
|
|
for ($ii = 0; $ii < $count1; $ii++) {
|
|
|
|
$merge[$keys[$i]][$ii] = Set::reverse($object[$keys[$i]][$ii]);
|
|
|
|
}
|
|
|
|
unset($object[$keys[$i]]);
|
|
|
|
} elseif (is_object($object[$keys[$i]])) {
|
|
|
|
$object1 = get_object_vars($one[$keys[$i]]);
|
|
|
|
$keys1 = array_keys($object1);
|
|
|
|
$count1 = count($keys1);
|
|
|
|
for ($ii = 0; $ii < $count1; $ii++) {
|
|
|
|
$merge[$keys[$i]][$ii] = Set::reverse($object1[$keys1[$i]][$ii]);
|
|
|
|
}
|
|
|
|
unset($object[$keys[$i]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$return = $object;
|
|
|
|
if(!empty($merge)) {
|
|
|
|
$object = array($object, $merge);
|
|
|
|
}
|
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
}
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
2007-04-04 07:25:48 +00:00
|
|
|
?>
|