VirtualPropertyObject.php 7.45 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
<?php

#namespace Doctrine\Common;

#use \ArrayAccess;

/**
 * Base class for classes that use the virtual property system.
 *
 * @author robo
 */
class Doctrine_Common_VirtualPropertyObject implements ArrayAccess
{
    protected $_data = array();
    protected $_entityName;

    /**
     * Initializes a new instance of a class derived from VirtualPropertyObject.
     */
    public function __construct()
    {
        $this->_entityName = get_class($this);
        if ( ! Doctrine_Common_VirtualPropertySystem::isInitialized($this->_entityName)) {
            Doctrine_Common_VirtualPropertySystem::initialize($this->_entityName);
        }
    }

    /**
     * Generic getter for virtual properties.
     *
     * @param string $fieldName  Name of the field.
     * @return mixed
     */
    final public function get($fieldName)
    {
        if ( ! Doctrine_Common_VirtualPropertySystem::hasProperty($this->_entityName, $fieldName)) {
            throw new Doctrine_Exception("Access of undefined property '$fieldName'.");
        }
        $getter = $this->_getCustomAccessor($fieldName);
        if ($getter) {
            return $this->$getter();
        }
        return $this->_get($fieldName);
    }

    /**
     * Generic setter for virtual properties.
     *
     * @param string $name  The name of the field to set.
     * @param mixed $value  The value of the field.
     */
    final public function set($fieldName, $value)
    {
        if ( ! Doctrine_Common_VirtualPropertySystem::hasProperty($this->_entityName, $fieldName)) {
            throw new Doctrine_Exception("Access of undefined property '$fieldName'.");
        }
        if (Doctrine_Common_VirtualPropertySystem::isTypeCheckEnabled()) {
            $this->_checkType($fieldName, $value);
        }
        $setter = $this->_getCustomMutator($fieldName);
        if ($setter) {
            return $this->$setter($value);
        }
        $this->_set($fieldName, $value);
    }

    /**
     * Checks the type of a virtual property.
     *
     * @param <type> $fieldName
     * @param <type> $value
     */
    protected function _checkType($fieldName, $value)
    {
        $type = Doctrine_Common_VirtualPropertySystem::getType($this->_entityName, $fieldName);
        if (Doctrine_Common_VirtualPropertySystem::isSimplePHPType($type)) {
            $is_type = "is_$type";
            if ( ! $is_type($value)) {
                throw new Doctrine_Exception("'$value' is of an invalid type. Expected: $type.");
            }
        } else if ($type == 'array') {
            if ( ! is_array($value)) {
                throw new Doctrine_Exception("'$value' is of an invalid type. Expected: array.");
            }
        } else {
            if ( ! $value instanceof $type) {
                throw new Doctrine_Exception("'$value' is of an invalid type. Expected: $type.");
            }
        }
    }

    protected function _get($fieldName)
    {
        return isset($this->_data[$fieldName]) ? $this->_data[$fieldName] : null;
    }

    protected function _set($fieldName, $value)
    {
        $this->_data[$fieldName] = $value;
    }

    /**
     * Gets the custom mutator method for a virtual property, if it exists.
     *
     * @param string $fieldName  The field name.
     * @return mixed  The name of the custom mutator or FALSE, if the field does
     *                not have a custom mutator.
     */
    private function _getCustomMutator($fieldName)
    {
        if (Doctrine_Common_VirtualPropertySystem::getMutator($this->_entityName, $fieldName) === null) {
            if (Doctrine_Common_VirtualPropertySystem::isAutoAccessorOverride()) {
                $setterMethod = 'set' . Doctrine::classify($fieldName);
                if ( ! method_exists($this, $setterMethod)) {
                    $setterMethod = false;
                }
                Doctrine_Common_VirtualPropertySystem::setMutator(
                        $this->_entityName, $fieldName, $setterMethod);
            } else {
                Doctrine_Common_VirtualPropertySystem::setMutator(
                        $this->_entityName, $fieldName, false);
            }
        }
        return Doctrine_Common_VirtualPropertySystem::getMutator($this->_entityName, $fieldName);
    }

    /**
     * Gets the custom accessor method of a virtual property, if it exists.
     *
     * @param string $fieldName  The field name.
     * @return mixed  The name of the custom accessor method, or FALSE if the
     *                field does not have a custom accessor.
     */
    private function _getCustomAccessor($fieldName)
    {
        if (Doctrine_Common_VirtualPropertySystem::getAccessor($this->_entityName, $fieldName) === null) {
            if (Doctrine_Common_VirtualPropertySystem::isAutoAccessorOverride()) {
                $getterMethod = 'get' . Doctrine::classify($fieldName);
                if ( ! method_exists($this, $getterMethod)) {
                    $getterMethod = false;
                }
                Doctrine_Common_VirtualPropertySystem::setAccessor(
                        $this->_entityName, $fieldName, $getterMethod);
            } else {
                Doctrine_Common_VirtualPropertySystem::setAccessor(
                        $this->_entityName, $fieldName, false);
            }
        }

        return Doctrine_Common_VirtualPropertySystem::getAccessor($this->_entityName, $fieldName);
    }

    protected function _contains($fieldName)
    {
        return isset($this->_data[$fieldName]);
    }

    protected function _unset($fieldName)
    {
        unset($this->_data[$fieldName]);
    }

    /**
     * Intercepts mutating calls for virtual properties.
     *
     * @see set, offsetSet
     * @param $name
     * @param $value
     * @since 1.0
     * @return void
     */
    public function __set($name, $value)
    {
        $this->set($name, $value);
    }

    /**
     * Intercepts accessing calls for virtual properties.
     *
     * @see get,  offsetGet
     * @param mixed $name
     * @return mixed
     */
    public function __get($name)
    {
        return $this->get($name);
    }

    /**
     * Intercepts isset() calls for virtual properties.
     *
     * @param string $name
     * @return boolean          whether or not this object contains $name
     */
    public function __isset($name)
    {
        return $this->_contains($name);
    }

    /**
     * Intercepts unset() calls for virtual properties.
     *
     * @param string $name
     * @return void
     */
    public function __unset($name)
    {
        return $this->_unset($name);
    }

    /* ArrayAccess implementation */

    /**
     * Check if an offsetExists.
     *
     * @param mixed $offset
     * @return boolean          whether or not this object contains $offset
     */
    public function offsetExists($offset)
    {
        return $this->_contains($offset);
    }

    /**
     * offsetGet    an alias of get()
     *
     * @see get,  __get
     * @param mixed $offset
     * @return mixed
     */
    public function offsetGet($offset)
    {
        return $this->get($offset);
    }

    /**
     * sets $offset to $value
     * @see set,  __set
     * @param mixed $offset
     * @param mixed $value
     * @return void
     */
    public function offsetSet($offset, $value)
    {
        return $this->set($offset, $value);
    }

    /**
     * unset a given offset
     * @see set, offsetSet, __set
     * @param mixed $offset
     */
    public function offsetUnset($offset)
    {
        return $this->_unset($offset);
    }

    /* END of ArrayAccess implementation */
}
?>