2006-08-18 09:44:01 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Library of array functions for Cake.
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* 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
|
|
|
|
* @copyright Copyright (c) 2006, Cake Software Foundation, Inc.
|
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP v 1.2.0
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
var $__value = array();
|
|
|
|
/**
|
|
|
|
* Constructor. Defaults to an empty array.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function __construct() {
|
|
|
|
if (func_num_args() == 1 && is_array(func_get_arg(0))) {
|
|
|
|
$this->__value = func_get_arg(0);
|
|
|
|
} else {
|
|
|
|
$this->__value = func_get_args();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Returns the contents of the Set object
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function get() {
|
|
|
|
return $this->__value;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Merges the contents of the array object with $array
|
|
|
|
*
|
|
|
|
* @param mixed $array An array, another Set object, or a value to be appended
|
|
|
|
* @return array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function merge($array = null, $array2 = null) {
|
|
|
|
if ($array2 != null && is_array($array2)) {
|
|
|
|
return array_merge_recursive($array, $array2);
|
|
|
|
}
|
|
|
|
if ($array == null) {
|
|
|
|
$array = $this->__value;
|
|
|
|
} elseif (is_object($array) && (is_a($array, 'set') || is_a($array, 'Set'))) {
|
|
|
|
$array = $array->get();
|
|
|
|
} elseif (is_object($array)) {
|
|
|
|
// Throw an error
|
|
|
|
} elseif (!is_array($array)) {
|
|
|
|
$array = array($array);
|
|
|
|
}
|
|
|
|
$this->__value = array_merge_recursive($this->__value, $array);
|
|
|
|
return $this->__value;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
* @return object
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function map($class = 'stdClass', $tmp = 'stdClass') {
|
|
|
|
if (is_array($class)) {
|
|
|
|
$val = $class;
|
|
|
|
$class = $tmp;
|
|
|
|
} elseif (is_a($this, 'set') || is_a($this, 'Set')) {
|
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2006-09-28 20:26:54 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
* @return boolean
|
|
|
|
* @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;
|
|
|
|
}
|
2006-10-13 07:41:10 +00:00
|
|
|
/**
|
2006-10-14 17:19:03 +00:00
|
|
|
* Gets a value from an array or object.
|
|
|
|
* The special {n}, as seen in the Model::generateList method, is taken care of here.
|
2006-10-13 07:41:10 +00:00
|
|
|
*
|
2006-10-14 17:19:03 +00:00
|
|
|
* @param array $data
|
|
|
|
* @param mixed $path As an array, or as a dot-separated string.
|
2006-10-13 07:41:10 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2006-10-14 17:19:03 +00:00
|
|
|
function extract($data, $path) {
|
|
|
|
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
|
|
|
|
|
|
|
foreach($path as $i => $key) {
|
|
|
|
if (intval($key) > 0 || $key == '0') {
|
|
|
|
if (isset($data[intval($key)])) {
|
|
|
|
$data = $data[intval($key)];
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
} elseif ($key == '{n}') {
|
|
|
|
foreach($data as $j => $val) {
|
|
|
|
$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;
|
|
|
|
}
|
2006-11-10 17:08:31 +00:00
|
|
|
/**
|
|
|
|
* Determines if two Sets or arrays are equal
|
|
|
|
*
|
|
|
|
* @param array $val1
|
|
|
|
* @param array $val2
|
|
|
|
* @return boolean
|
|
|
|
*/
|
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();
|
|
|
|
}
|
|
|
|
}
|
2006-11-10 17:08:31 +00:00
|
|
|
/**
|
|
|
|
* Determines if one Set or array contains the exact keys and values of another.
|
|
|
|
*
|
|
|
|
* @param array $val1
|
|
|
|
* @param array $val2
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Counts the dimensions of an array
|
|
|
|
*
|
|
|
|
* @param array $array
|
|
|
|
* @return int The number of dimensions in $array
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
2006-08-18 09:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|