Skip to content

Commit

Permalink
Merge marijn/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jan 25, 2012
2 parents 3d29f1d + 746b96e commit 4be3563
Showing 1 changed file with 139 additions and 44 deletions.
183 changes: 139 additions & 44 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ offer new functionality or tools to use Doctrine 2 more efficently.

To include the DoctrineExtensions should fire up an autoloader, for example:

$classLoader = new \Doctrine\Common\ClassLoader('DoctrineExtensions', "/path/to/extensions");
$classLoader->register();
```php
<?php

$classLoader = new \Doctrine\Common\ClassLoader('DoctrineExtensions', "/path/to/extensions");
$classLoader->register();
```

## Paginator

Expand All @@ -26,18 +30,26 @@ If you don't need to iterate a fetch-joined to-many DQL query you can shortcut:

The API for the Paginator is really simple:

use DoctrineExtensions\Paginate\Paginate;
```php
<?php

use DoctrineExtensions\Paginate\Paginate;

$query = $em->createQuery($dql);
$query = $em->createQuery($dql);

$count = Paginate::getTotalQueryResults($query); // Step 1
$paginateQuery = Paginate::getPaginateQuery($query, $offset, $limitPerPage); // Step 2 and 3
$result = $paginateQuery->getResult();
$count = Paginate::getTotalQueryResults($query); // Step 1
$paginateQuery = Paginate::getPaginateQuery($query, $offset, $limitPerPage); // Step 2 and 3
$result = $paginateQuery->getResult();
```

In the simple case its even easier:

$count = Paginate::getTotalQueryResults($query); // Step 1
$result = $query->setFirstResult($offset)->setMaxResults($limitPerPage)->getResult(); // Step 2
```php
<?php

$count = Paginate::getTotalQueryResults($query); // Step 1
$result = $query->setFirstResult($offset)->setMaxResults($limitPerPage)->getResult(); // Step 2
```

These methods internally use several others to create and retrieve the data. You can re-use
those methods to integrate with existing pagination solutions, a `Zend_Paginator` implementation
Expand All @@ -52,23 +64,27 @@ very convenient way to test your Doctrine 2 code against a Database.

#### An Example

namespace MyProject\Tests;
```php
<?php

namespace MyProject\Tests;

use DoctrineExtensions\PHPUnit\OrmTestCase
use DoctrineExtensions\PHPUnit\OrmTestCase

class EntityFunctionalTest extends OrmTestCase
class EntityFunctionalTest extends OrmTestCase
{
protected function createEntityManager()
{
protected function createEntityManager()
{
return Doctrine\ORM\EntityManager::create(..);
}

protected function getDataSet()
{
return $this->createFlatXmlDataSet(__DIR__."/_files/entityFixture.xml");
}
return Doctrine\ORM\EntityManager::create(..);
}

protected function getDataSet()
{
return $this->createFlatXmlDataSet(__DIR__."/_files/entityFixture.xml");
}
}
```

For more information see the PHPUnit Documentation on this topic: http://www.phpunit.de/manual/current/en/database.html

#### Notes
Expand All @@ -77,39 +93,43 @@ This PHPUnit extension does not create the database schema for you. It has to be
If you want to dynamically create the schema you have to listen to the 'preTestSetUp' and 'postTestSetUp' events
that are called before and after the fixture is loaded respectively.

namespace MyProject\Tests;
```php
<?php

namespace MyProject\Tests;

use DoctrineExtensions\PHPUnit\Event\EntityManagerEventArgs,
DoctrineExtensions\PHPUnit\OrmTestCase,
Doctrine\ORM\Tools\SchemaTool,
Doctrine\ORM\EntityManager;
use DoctrineExtensions\PHPUnit\Event\EntityManagerEventArgs,
DoctrineExtensions\PHPUnit\OrmTestCase,
Doctrine\ORM\Tools\SchemaTool,
Doctrine\ORM\EntityManager;

class SchemaSetupListener
class SchemaSetupListener
{
public function preTestSetUp(EntityManagerEventArgs $eventArgs)
{
public function preTestSetUp(EntityManagerEventArgs $eventArgs)
{
$em = $eventArgs->getEntityManager();
$em = $eventArgs->getEntityManager();

$schemaTool = new SchemaTool($em);
$schemaTool = new SchemaTool($em);

$cmf = $em->getMetadataFactory();
$classes = $cmf->getAllMetadata();
$cmf = $em->getMetadataFactory();
$classes = $cmf->getAllMetadata();

$schemaTool->dropDatabase();
$schemaTool->createSchema($classes);
}
$schemaTool->dropDatabase();
$schemaTool->createSchema($classes);
}
}

class EntityFunctionalTest extends OrmTestCase
class EntityFunctionalTest extends OrmTestCase
{
protected function createEntityManager()
{
protected function createEntityManager()
{
$eventManager = new EventManager();
$eventManager->addEventListener(array("preTestSetUp"), new SchemaSetupListener());
$eventManager = new EventManager();
$eventManager->addEventListener(array("preTestSetUp"), new SchemaSetupListener());

return Doctrine\ORM\EntityManager::create(.., $eventManager);
}
return Doctrine\ORM\EntityManager::create(.., $eventManager);
}
}
```

### TODOs:

Expand All @@ -121,4 +141,79 @@ that are called before and after the fixture is loaded respectively.

## Versionable

Deprecated, please use https://github.com/simplethings/EntityAudit
Deprecated, please use https://github.com/simplethings/EntityAudit

### Introduction

Versionable allows you to tag your entities by the `DoctrineExtensions\Versionable\Versionable`
interface, which leads to snapshots of the entities being made upon saving to the database.

This is an extended version of the prototype discussed in a blog-post on the Doctrine 2 website:

http://www.doctrine-project.org/blog/doctrine2-versionable

The interface `Versionable` is modified considerably by removing all the `getResourceId()`, `getVersionedData()` and
`getCurrentVersion()` methods, since Doctrine can easily retrieve these values on its own using the UnitOfWork API.
Versionable is then just a marker interface.

### What Versionable does

Whenever an entity that implements Versionable is *updated* all the old values of the entity are
saved with their old version number into a newly created `ResourceVersion` entity.

### Requirements of your entities are:

* Single Identifier Column (String or Integer)
* Entity has to be versioned (using @version annotation)

Implementing `Versionable` would look like:

```php
<?php

namespace MyProject;
use DoctrineExtensions\Versionable\Versionable;

class BlogPost implements Versionable
{
// blog post API
}
```

### Configuration

You have to add the `DoctrineExtensions\Versionable\Entity\ResourceVersion` entity to your metadata paths.
It is using the Annotation Metadata driver, so you have to specifiy or configure the path to the directory on the CLI.
Also if you are using any other metadata driver you have to wrap the `Doctrine\ORM\Mapping\Driver\DriverChain`
to allow for multiple metadata drivers.

You also have to hook the `VersionListener` into the EntityManager's EventManager explicitly upon
construction:

```php
<?php

$eventManager = new EventManager();
$eventManager->addEventSubscriber(new VersionListener());
$em = EntityManager::create($connOptions, $config, $eventManager);
```

Using the `VersionManager` you can now retrieve all the versions of a versionable entity:

```php
<?php

$versionManager = new VersionManager($em);
$versions = $versionManager->getVersions($blogPost);
```

Or you can revert to a specific version number:

```php
<?php

$versionManager = new VersionManager($em);
$versionManager->revert($blogPost, 100);
$em->flush();
```
>>>>>>> marijn/patch-1

0 comments on commit 4be3563

Please sign in to comment.