Merge pull request #214 from mheiniger/speedupFixtureLoader

Speedup propel:fixture:load
This commit is contained in:
Toni Uebernickel 2013-05-23 05:06:55 -07:00
commit ea98e9c18d
4 changed files with 36 additions and 3 deletions

View file

@ -64,7 +64,7 @@ abstract class AbstractDataHandler
if (0 === count($this->dbMap->getTables())) {
$finder = new Finder();
$files = $finder->files()->name('*TableMap.php')
->in($this->getRootDir() . '/../')
->in($this->getModelSearchPaths($connectionName))
->exclude('PropelBundle')
->exclude('Tests');
@ -120,4 +120,27 @@ abstract class AbstractDataHandler
return null;
}
/**
* Gets the search path for models out of the configuration.
*
* @param string $connectionName A connection name.
*
* @return string[]
*/
protected function getModelSearchPaths($connectionName) {
$configuration = Propel::getConfiguration();
$searchPath = array();
if (!empty($configuration['datasources'][$connectionName]['connection']['model_paths'])) {
$modelPaths = $configuration['datasources'][$connectionName]['connection']['model_paths'];
foreach ($modelPaths as $modelPath) {
$searchPath[] = $this->getRootDir() . '/../' . $modelPath;
}
} else {
$searchPath[] = $this->getRootDir() . '/../';
}
return $searchPath;
}
}

View file

@ -232,6 +232,13 @@ class Configuration implements ConfigurationInterface
->prototype('scalar')->end()
->end()
->end()
->fixXmlConfig('model_path')
->children()
->arrayNode('model_paths')
->defaultValue(array('src/', 'vendor/'))
->prototype('scalar')->end()
->end()
->end()
->fixXmlConfig('attribute')
->children()
->arrayNode('attributes')

View file

@ -123,7 +123,7 @@ class PropelExtension extends Extension
$c['datasources'][$name]['slaves']['connection'] = $conf['slaves'];
}
foreach (array('dsn', 'user', 'password', 'classname', 'options', 'attributes', 'settings') as $att) {
foreach (array('dsn', 'user', 'password', 'classname', 'options', 'attributes', 'settings', 'model_paths') as $att) {
if (isset($conf[$att])) {
$c['datasources'][$name]['connection'][$att] = $conf[$att];
}

View file

@ -110,10 +110,13 @@ propel:
settings:
charset: { value: UTF8 }
queries: { query: 'INSERT INTO BAR ('hey', 'there')' }
model_paths:
- /src/Acme/DemoBundle/Model/
- /vendor/
```
`options`, `attributes` and `settings` are parts of the runtime configuration. See [Runtime Configuration File](http://www.propelorm.org/reference/runtime-configuration.html) documentation for more explanation.
`model_paths` can be defined to speed up searching for model data. By default it searches in the whole project from project root.
## Logging ##