0 follower

CMap

Package system.collections
Inheritance class CMap » CComponent
Implements IteratorAggregate, Traversable, ArrayAccess, Countable
Subclasses CAttributeCollection, CConfiguration, CCookieCollection
Since 1.0
Version $Id$
Source Code framework/collections/CMap.php
CMap implements a collection that takes key-value pairs.

You can access, add or remove an item with a key by using itemAt, add, and remove. To get the number of the items in the map, use getCount. CMap can also be used like a regular array as follows,
$map[$key]=$value; // add a key-value pair
unset($map[$key]); // remove the value with the specified key
if(isset($map[$key])) // if the map contains the key
foreach($map as $key=>$value) // traverse the items in the map
$n=count($map);  // returns the number of items in the map

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
count integer the number of items in the map CMap
iterator CMapIterator Returns an iterator for traversing the items in the list. CMap
keys array the key list CMap
readOnly boolean whether this map is read-only or not. CMap

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__call() Calls the named method which is not a class method. CComponent
__construct() Constructor. CMap
__get() Returns a property value, an event handler list or a behavior based on its name. CComponent
__isset() Checks if a property value is null. CComponent
__set() Sets value of a component property. CComponent
__unset() Sets a component property to be null. CComponent
add() Adds an item into the map. CMap
asa() Returns the named behavior object. CComponent
attachBehavior() Attaches a behavior to this component. CComponent
attachBehaviors() Attaches a list of behaviors to the component. CComponent
attachEventHandler() Attaches an event handler to an event. CComponent
canGetProperty() Determines whether a property can be read. CComponent
canSetProperty() Determines whether a property can be set. CComponent
clear() Removes all items in the map. CMap
contains() CMap
copyFrom() Copies iterable data into the map. CMap
count() Returns the number of items in the map. CMap
detachBehavior() Detaches a behavior from the component. CComponent
detachBehaviors() Detaches all behaviors from the component. CComponent
detachEventHandler() Detaches an existing event handler. CComponent
disableBehavior() Disables an attached behavior. CComponent
disableBehaviors() Disables all behaviors attached to this component. CComponent
enableBehavior() Enables an attached behavior. CComponent
enableBehaviors() Enables all behaviors attached to this component. CComponent
getCount() Returns the number of items in the map CMap
getEventHandlers() Returns the list of attached event handlers for an event. CComponent
getIterator() Returns an iterator for traversing the items in the list. CMap
getKeys() Returns the key list CMap
getReadOnly() Returns whether this map is read-only or not. Defaults to false. CMap
hasEvent() Determines whether an event is defined. CComponent
hasEventHandler() Checks whether the named event has attached handlers. CComponent
hasProperty() Determines whether a property is defined. CComponent
itemAt() Returns the item with the specified key. CMap
mergeArray() Merges two arrays into one recursively. CMap
mergeWith() Merges iterable data into the map. CMap
offsetExists() Returns whether there is an element at the specified offset. CMap
offsetGet() Returns the element at the specified offset. CMap
offsetSet() Sets the element at the specified offset. CMap
offsetUnset() Unsets the element at the specified offset. CMap
raiseEvent() Raises an event. CComponent
remove() Removes an item from the map by its key. CMap
toArray() CMap

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
setReadOnly() Sets whether this list is read-only or not CMap

Property Details

count property read-only
public integer getCount()

the number of items in the map

iterator property read-only

Returns an iterator for traversing the items in the list. This method is required by the interface IteratorAggregate.

keys property read-only
public array getKeys()

the key list

readOnly property
public boolean getReadOnly()
protected void setReadOnly(boolean $value)

whether this map is read-only or not. Defaults to false.

Method Details

__construct() method
public void __construct(array $data=NULL, boolean $readOnly=false)
$data array the intial data. Default is null, meaning no initialization.
$readOnly boolean whether the list is read-only
Source Code: framework/collections/CMap.php#49 (show)
public function __construct($data=null,$readOnly=false)
{
    if(
$data!==null)
        
$this->copyFrom($data);
    
$this->setReadOnly($readOnly);
}

Constructor. Initializes the list with an array or an iterable object.

add() method
public void add(mixed $key, mixed $value)
$key mixed key
$value mixed value
Source Code: framework/collections/CMap.php#129 (show)
public function add($key,$value)
{
    if(!
$this->_r)
        
$this->_d[$key]=$value;
    else
        throw new 
CException(Yii::t('yii','The map is read only.'));
}

Adds an item into the map. Note, if the specified key already exists, the old value will be overwritten.

clear() method
public void clear()
Source Code: framework/collections/CMap.php#167 (show)
public function clear()
{
    foreach(
array_keys($this->_d) as $key)
        
$this->remove($key);
}

Removes all items in the map.

contains() method
public boolean contains(mixed $key)
$key mixed the key
{return} boolean whether the map contains an item with the specified key
Source Code: framework/collections/CMap.php#177 (show)
public function contains($key)
{
    return isset(
$this->_d[$key]) || array_key_exists($key,$this->_d);
}

copyFrom() method
public void copyFrom(mixed $data)
$data mixed the data to be copied from, must be an array or object implementing Traversable
Source Code: framework/collections/CMap.php#196 (show)
public function copyFrom($data)
{
    if(
is_array($data) || $data instanceof Traversable)
    {
        if(
$this->getCount()>0)
            
$this->clear();
        if(
$data instanceof CMap)
            
$data=$data->_d;
        foreach(
$data as $key=>$value)
            
$this->add($key,$value);
    }
    else if(
$data!==null)
        throw new 
CException(Yii::t('yii','Map data must be an array or an object implementing Traversable.'));
}

Copies iterable data into the map. Note, existing data in the map will be cleared first.

count() method
public integer count()
{return} integer number of items in the map.
Source Code: framework/collections/CMap.php#87 (show)
public function count()
{
    return 
$this->getCount();
}

Returns the number of items in the map. This method is required by Countable interface.

getCount() method
public integer getCount()
{return} integer the number of items in the map
Source Code: framework/collections/CMap.php#95 (show)
public function getCount()
{
    return 
count($this->_d);
}

getIterator() method
public CMapIterator getIterator()
{return} CMapIterator an iterator for traversing the items in the list.
Source Code: framework/collections/CMap.php#77 (show)
public function getIterator()
{
    return new 
CMapIterator($this->_d);
}

Returns an iterator for traversing the items in the list. This method is required by the interface IteratorAggregate.

getKeys() method
public array getKeys()
{return} array the key list
Source Code: framework/collections/CMap.php#103 (show)
public function getKeys()
{
    return 
array_keys($this->_d);
}

getReadOnly() method
public boolean getReadOnly()
{return} boolean whether this map is read-only or not. Defaults to false.
Source Code: framework/collections/CMap.php#59 (show)
public function getReadOnly()
{
    return 
$this->_r;
}

itemAt() method
public mixed itemAt(mixed $key)
$key mixed the key
{return} mixed the element at the offset, null if no element is found at the offset
Source Code: framework/collections/CMap.php#114 (show)
public function itemAt($key)
{
    if(isset(
$this->_d[$key]))
        return 
$this->_d[$key];
    else
        return 
null;
}

Returns the item with the specified key. This method is exactly the same as offsetGet.

mergeArray() method
public static array mergeArray(array $a, array $b)
$a array array to be merged to
$b array array to be merged from
{return} array the merged array (the original arrays are not changed.)
Source Code: framework/collections/CMap.php#263 (show)
public static function mergeArray($a,$b)
{
    foreach(
$b as $k=>$v)
    {
        if(
is_integer($k))
            
$a[]=$v;
        else if(
is_array($v) && isset($a[$k]) && is_array($a[$k]))
            
$a[$k]=self::mergeArray($a[$k],$v);
        else
            
$a[$k]=$v;
    }
    return 
$a;
}

Merges two arrays into one recursively.

See Also

mergeWith() method
public void mergeWith(mixed $data, boolean $recursive=true)
$data mixed the data to be merged with, must be an array or object implementing Traversable
$recursive boolean whether the merging should be recursive.
Source Code: framework/collections/CMap.php#228 (show)
public function mergeWith($data,$recursive=true)
{
    if(
is_array($data) || $data instanceof Traversable)
    {
        if(
$data instanceof CMap)
            
$data=$data->_d;
        if(
$recursive)
        {
            if(
$data instanceof Traversable)
            {
                
$d=array();
                foreach(
$data as $key=>$value)
                    
$d[$key]=$value;
                
$this->_d=self::mergeArray($this->_d,$d);
            }
            else
                
$this->_d=self::mergeArray($this->_d,$data);
        }
        else
        {
            foreach(
$data as $key=>$value)
                
$this->add($key,$value);
        }
    }
    else if(
$data!==null)
        throw new 
CException(Yii::t('yii','Map data must be an array or an object implementing Traversable.'));
}

Merges iterable data into the map.

Existing elements in the map will be overwritten if their keys are the same as those in the source. If the merge is recursive, the following algorithm is performed:

  • the map data is saved as $a, and the source data is saved as $b;
  • if $a and $b both have an array indxed at the same string key, the arrays will be merged using this algorithm;
  • any integer-indexed elements in $b will be appended to $a and reindxed accordingly;
  • any string-indexed elements in $b will overwrite elements in $a with the same index;

offsetExists() method
public boolean offsetExists(mixed $offset)
$offset mixed the offset to check on
{return} boolean
Source Code: framework/collections/CMap.php#283 (show)
public function offsetExists($offset)
{
    return 
$this->contains($offset);
}

Returns whether there is an element at the specified offset. This method is required by the interface ArrayAccess.

offsetGet() method
public mixed offsetGet(integer $offset)
$offset integer the offset to retrieve element.
{return} mixed the element at the offset, null if no element is found at the offset
Source Code: framework/collections/CMap.php#294 (show)
public function offsetGet($offset)
{
    return 
$this->itemAt($offset);
}

Returns the element at the specified offset. This method is required by the interface ArrayAccess.

offsetSet() method
public void offsetSet(integer $offset, mixed $item)
$offset integer the offset to set element
$item mixed the element value
Source Code: framework/collections/CMap.php#305 (show)
public function offsetSet($offset,$item)
{
    
$this->add($offset,$item);
}

Sets the element at the specified offset. This method is required by the interface ArrayAccess.

offsetUnset() method
public void offsetUnset(mixed $offset)
$offset mixed the offset to unset element
Source Code: framework/collections/CMap.php#315 (show)
public function offsetUnset($offset)
{
    
$this->remove($offset);
}

Unsets the element at the specified offset. This method is required by the interface ArrayAccess.

remove() method
public mixed remove(mixed $key)
$key mixed the key of the item to be removed
{return} mixed the removed value, null if no such key exists.
Source Code: framework/collections/CMap.php#143 (show)
public function remove($key)
{
    if(!
$this->_r)
    {
        if(isset(
$this->_d[$key]))
        {
            
$value=$this->_d[$key];
            unset(
$this->_d[$key]);
            return 
$value;
        }
        else
        {
            
// it is possible the value is null, which is not detected by isset
            
unset($this->_d[$key]);
            return 
null;
        }
    }
    else
        throw new 
CException(Yii::t('yii','The map is read only.'));
}

Removes an item from the map by its key.

setReadOnly() method
protected void setReadOnly(boolean $value)
$value boolean whether this list is read-only or not
Source Code: framework/collections/CMap.php#67 (show)
protected function setReadOnly($value)
{
    
$this->_r=$value;
}

toArray() method
public array toArray()
{return} array the list of items in array
Source Code: framework/collections/CMap.php#185 (show)
public function toArray()
{
    return 
$this->_d;
}