PHP – ORM延迟加载/身份映射实现问题

我有一个简单的ORM实现,包括加载和持久化实体的数据映射器.每个映射器在内部管理从数据库读取的所有实体的标识映射,以便同一实体仅加载到内存中一次.

我目前正在使用代理类实现相关实体的延迟加载,该代理类仅在访问实体上的属性时才加载相关数据.我的问题是代理类不是实体本身,只有在间接加载实体(通过关系)时才使用.所以任何===检查比较实际实体与加载同一实体的代理将返回false.我的目标是保持实体和客户端代码不知道代理对象.

代理类看起来像:

class EntityProxy
{
    protected $_entity;
    protected $_loader;

    public function __construct(EntityProxyLoader $loader)
    {
        $this->_loader = $loader;
    }

    protected function _load()
    {
        if (null === $this->_entity)
        {
            $this->_entity = $this->_loader->load();
            unset($this->_loader);
        }
    }

    public function __get($name)
    {
        $this->_load();
        return $this->_entity->$name;
    }

    public function __set($name, $value)
    {
        $this->_load();
        $this->_entity->$name = $value;
    }
}

而映射器看起来像:

class PersonEntityMapper
{
    // Find by primary key
    public function find($id)
    {
        if ($this->inIdentityMap($id)
        {
            return $this->loadFromIdentityMap($id);
        }

        $data = ...;  // gets the data

        $person = new Person($data);

        // Proxy placeholder for a related entity. Assume the loader is
        // supplied the information it needs in order to load the related 
        // entity.
        $person->Address = new EntityProxy(new EntityProxyLoader(...));

        $this->addToIdentityMap($id, $person);

        return $person;
    }
}

class AddressEntityMapper
{
    // Find by primary key
    public function find($id)
    {
        ...

        $address = new AddressEntity($data);

        $address->Person = new EntityProxy(new EntityProxyLoader(...));

        $this->addToIdentityMap($id, $address);

        return $address;
    }
}

如果我加载一个具有相关“AddressEntity”的“PersonEntity”记录,然后直接通过“AddressEntityMapper”加载相同的“AddressEntity”记录并比较这两个对象,它们将不相同(因为一个代表是委托代理) ).有没有办法覆盖PHP的内置对象比较?有关更好的处理方法的建议,而不将代理感知代码引入实体和/或客户端代码?

此外,我知道采用现有的已建立的ORM对我有利,但有各种各样的问题阻止我这样做.

最佳答案 通常的方法是创建一个像Java一样的equals方法. PHP不允许你覆盖==或===而且我从来没有找到一种方法来覆盖比较器,但我以前错了,如果我错了,这将是很酷的.

点赞