学说2 @Version不起作用

时间:2015-02-17 12:25:01

标签: php orm doctrine-orm

我尝试使用Doctrine2实现可版本化的ORM。

一切都运作良好。当我更新现有条目时,旧条目将被插入* _version表。

但是当我更新另一个请求中的条目(以及因此EntityManager的新实例)时,旧条目将不再被写入*_version表,尽管基本表中的条目得到了更新没有任何问题(即使版本号增加1)。

我想向您展示我非常简单的版本化ORM:

更新:以下示例代码现在可以使用了!

Also check my Gist with the logEntityVersion helper method.

ProductBase.php

trait ProductBase
{
    /** 
     * @ORM\Id 
     * @ORM\Column(type="integer")
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    protected $id;
    /** 
     * @ORM\Column(type="string") 
     */
    protected $name;

    // getters and setters here
}

Product.php

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;

/**
 * Product
 *
 * @ORM\Entity
 * @ORM\Table(name="product")
 * @ORM\HasLifeCycleCallbacks
 */
class Product
{
    use ProductBase;

    /**
     * @ORM\OneToMany(targetEntity="ProductVersion", mappedBy="product", cascade={"persist"})
     */
    private $auditLog;

    /**
     * @ORM\Column(type="integer")
     * @ORM\Version
     */
    private $version = 1;

    public function __construct()
    {
        $this->auditLog = new ArrayCollection();
    }

    public function logVersion()
    {
        echo sprintf("Creating a new version for ID %s, version %s\n", $this->getId(), $this->getVersion());
        $this->auditLog[] = new ProductVersion($this);
    }

    // Version getter and setter
}

ProductVersion.php

use Doctrine\ORM\Mapping as ORM;

/**
 * ProductVersion
 *
 * @ORM\Entity
 * @ORM\Table(name="product_version")
 */
class ProductVersion
{
    use ProductBase;

    /**
     * @ORM\ManyToOne(targetEntity="Product", inversedBy="auditLog")
     */
    private $product;

    /**
     * @ORM\Column(type="integer")
     */
    private $version;

    public function __construct(Product $product)
    {
        $this->product = $product;
        $this->name = $product->getName();
        $this->version = $product->getVersion();

        var_dump($product->getVersion());
    }

    // Version getter and setter
}

这是插入新条目并更新它以创建新版本的代码:

// Insert new product
$this->entityManager->beginTransaction();
$this->entityManager->flush();

$product = new Product();
$product->setName('Product V1');

$this->entityManager->persist($product);
$this->entityManager->flush();

$this->entityManager->commit();

$productId = $product->getId();

echo "Created Product with ID " . $product->getId() . "\n";

/** @var Product $foo */
$foo = $this->entityManager->getRepository('orm\Product')->find($productId);

// Log version (Product V1)
$this->entityManager->beginTransaction();
$this->entityManager->flush();
$foo->logVersion();
$this->entityManager->flush();
$this->entityManager->commit();

// Update 1
$foo->setName('Product V2');
$this->entityManager->flush();

// Log version (Product V2)
$this->entityManager->beginTransaction();
$this->entityManager->flush();
$foo->logVersion();
$this->entityManager->flush();
$this->entityManager->commit();

// Update 2 
$foo->setName('Product V3');
$this->entityManager->flush();

架构生成

$tools = new SchemaTool($this->entityManager);

var_dump($tools->getCreateSchemaSql(array(
    $this->entityManager->getClassMetadata('orm\Product'),
    $this->entityManager->getClassMetadata('orm\ProductVersion')
)));

1 个答案:

答案 0 :(得分:3)

我发现您的代码存在一些问题,不幸的是这个概念:

数组与集合

您已将Product::$auditLog定义为数组,但它必须是一个集合。请改用它:

class Product
{
    private $auditLog;

    public function __construct()
    {
        $this->auditLog = new \Doctrine\Common\Collections\ArrayCollection();
    }

关联映射

您已将Product::$auditLog定义为由ProductVersion::$product映射,但尚未将ProductVersion::$product定义为Product::$auditLog反转。修复如下:

class ProductVersion
{
    /** @ORM\ManyToOne(targetEntity="Product", inversedBy="auditLog") */
    private $product;

另外,请验证您的映射和数据库架构。每个错误都可能导致意外结果。

$ doctrine orm:validate-schema          // plain Doctrine2
$ app/console doctrine:schema:validate  // Symfony2

版本

您在特征中使用@Version注释,这意味着ProductProductVersion都将由Doctrine版本化。由于@Version用于乐观锁定,我怀疑这是你真正想要的。

永远不应更新(或删除)审核日志中的记录,仅添加。所以锁定记录在这里没有意义。

请删除ProductBase::$version,然后添加:

    带有Product::$version注释的
  • @Version
  • ProductVersion::$version 没有 @Version注释。

现在只有Product将由Doctrine版本化,ProductVersion将只包含记录的产品的版本号。

PreUpdate事件

您正在使用@PrePersist@PreUpdate生命周期回调来填充审核日志。 @PreUpdate状态Product::$auditLog会成为一个问题:

  

此事件中绝不允许更新已更新实体的关联

然而,您正在通过向集合中添加记录来更改{{1}}关联。

您必须移动此逻辑,并且 的位置有很多选项:

一个选项可以是手动启动事务,刷新(并跟踪版本化实体),创建日志条目,再次刷新,提交事务。或者您可以使用DBAL连接替换直接插入的第二次刷新。