forked from doctrine/DoctrinePHPCRBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoctrinePHPCRBundle.php
185 lines (160 loc) · 7.21 KB
/
DoctrinePHPCRBundle.php
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
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the MIT license. For more information, see
* <http://www.doctrine-project.org>.
*/
namespace Doctrine\Bundle\PHPCRBundle;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\ODM\DocumentConvertTranslationCommand;
use Jackalope\Session;
use Symfony\Component\DependencyInjection\IntrospectableContainerInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Console\Application;
use Symfony\Bridge\Doctrine\DependencyInjection\CompilerPass\RegisterEventListenersAndSubscribersPass;
use Doctrine\Common\Util\ClassUtils;
use Doctrine\Bundle\PHPCRBundle\DependencyInjection\Compiler\MigratorPass;
use Doctrine\Bundle\PHPCRBundle\DependencyInjection\Compiler\InitializerPass;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\Jackalope\InitDoctrineDbalCommand;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\Jackalope\JackrabbitCommand;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\ODM\DocumentMigrateClassCommand;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\ODM\InfoDoctrineCommand;
use Doctrine\Bundle\PHPCRBundle\OptionalCommand\ODM\VerifyUniqueNodeTypesMappingCommand;
class DoctrinePHPCRBundle extends Bundle
{
/**
* Autoloader for proxies.
*
* @var \Closure
*/
private $autoloader;
/**
* {@inheritdoc}
*/
public function build(ContainerBuilder $container)
{
parent::build($container);
$container->addCompilerPass(new MigratorPass());
$container->addCompilerPass(new InitializerPass());
if (class_exists('Doctrine\ODM\PHPCR\Version')) {
$container->addCompilerPass(new RegisterEventListenersAndSubscribersPass('doctrine_phpcr.sessions', 'doctrine_phpcr.%s_session.event_manager', 'doctrine_phpcr'), PassConfig::TYPE_BEFORE_OPTIMIZATION);
}
}
/**
* {@inheritdoc}
*/
public function registerCommands(Application $application)
{
parent::registerCommands($application);
if (class_exists('Doctrine\ODM\PHPCR\Version')) {
$application->add(new DocumentMigrateClassCommand());
$application->add(new InfoDoctrineCommand());
$application->add(new VerifyUniqueNodeTypesMappingCommand());
$application->add(new DocumentConvertTranslationCommand());
}
if (class_exists('\Jackalope\Tools\Console\Command\JackrabbitCommand')) {
$application->add(new JackrabbitCommand());
}
if (class_exists('\Jackalope\Tools\Console\Command\InitDoctrineDbalCommand')) {
$application->add(new InitDoctrineDbalCommand());
}
}
/**
* {@inheritdoc}
*/
public function boot()
{
// Register an autoloader for proxies to avoid issues when unserializing them when the ODM is used.
if ($this->container->hasParameter('doctrine_phpcr.odm.proxy_namespace')) {
$namespace = $this->container->getParameter('doctrine_phpcr.odm.proxy_namespace');
$dir = $this->container->getParameter('doctrine_phpcr.odm.proxy_dir');
// See https://github.com/symfony/symfony/pull/3419 for usage of references
$container = &$this->container;
$this->autoloader = function ($class) use ($namespace, $dir, &$container) {
if (0 === strpos($class, $namespace)) {
$fileName = str_replace('\\', '', substr($class, strlen($namespace) + 1));
$file = $dir.DIRECTORY_SEPARATOR.$fileName.'.php';
if (!is_file($file) && $container->getParameter('doctrine_phpcr.odm.auto_generate_proxy_classes')) {
$originalClassName = ClassUtils::getRealClass($class);
$registry = $container->get('doctrine_phpcr');
// Tries to auto-generate the proxy file
foreach ($registry->getManagers() as $dm) {
if ($dm->getConfiguration()->getAutoGenerateProxyClasses()) {
$classes = $dm->getMetadataFactory()->getAllMetadata();
foreach ($classes as $classMetadata) {
if ($classMetadata->name == $originalClassName) {
$dm->getProxyFactory()->generateProxyClasses(array($classMetadata));
}
}
}
}
clearstatcache($file);
}
if (is_file($file)) {
require $file;
}
}
};
spl_autoload_register($this->autoloader);
}
}
/**
* {@inheritdoc}
*/
public function shutdown()
{
if (null !== $this->autoloader) {
spl_autoload_unregister($this->autoloader);
$this->autoloader = null;
}
$this->clearDocumentManagers();
$this->closeConnections();
}
/**
* Clear all document managers to clear references to entities for GC.
*/
private function clearDocumentManagers()
{
if (!$this->container->hasParameter('doctrine_phpcr.odm.document_managers')) {
return;
}
foreach ($this->container->getParameter('doctrine_phpcr.odm.document_managers') as $id) {
if ($this->container instanceof IntrospectableContainerInterface && !$this->container->initialized($id)) {
continue;
}
$this->container->get($id)->clear();
}
}
/**
* Close all connections to avoid reaching too many connections in the process when booting again later (tests).
*/
private function closeConnections()
{
if (!$this->container->hasParameter('doctrine_phpcr.sessions')) {
return;
}
foreach ($this->container->getParameter('doctrine_phpcr.sessions') as $id) {
if ($this->container instanceof IntrospectableContainerInterface && !$this->container->initialized($id)) {
continue;
}
$session = $this->container->get($id);
if (!$session instanceof Session) {
return;
}
$session->getTransport()->logout();
}
}
}