-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #175 from Ocramius/hotfix/avoid-constructor-override
Avoid constructor override
- Loading branch information
Showing
77 changed files
with
1,667 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3.3 | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
...er/ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/BindProxyProperties.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<?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. | ||
*/ | ||
|
||
namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; | ||
|
||
use ProxyManager\Exception\UnsupportedProxiedClassException; | ||
use ProxyManager\Generator\MethodGenerator; | ||
use ProxyManager\Generator\ParameterGenerator; | ||
use ReflectionClass; | ||
use Zend\Code\Generator\PropertyGenerator; | ||
|
||
/** | ||
* The `bindProxyProperties` method implementation for access interceptor scope localizers | ||
* | ||
* @author Marco Pivetta <ocramius@gmail.com> | ||
* @license MIT | ||
*/ | ||
class BindProxyProperties extends MethodGenerator | ||
{ | ||
/** | ||
* Constructor | ||
* | ||
* @param ReflectionClass $originalClass | ||
* @param PropertyGenerator $prefixInterceptors | ||
* @param PropertyGenerator $suffixInterceptors | ||
*/ | ||
public function __construct( | ||
ReflectionClass $originalClass, | ||
PropertyGenerator $prefixInterceptors, | ||
PropertyGenerator $suffixInterceptors | ||
) { | ||
parent::__construct('bindProxyProperties', array(), static::FLAG_PRIVATE); | ||
|
||
$localizedObject = new ParameterGenerator('localizedObject'); | ||
$prefix = new ParameterGenerator('prefixInterceptors'); | ||
$suffix = new ParameterGenerator('suffixInterceptors'); | ||
|
||
$localizedObject->setType($originalClass->getName()); | ||
$prefix->setDefaultValue(array()); | ||
$suffix->setDefaultValue(array()); | ||
$prefix->setType('array'); | ||
$suffix->setType('array'); | ||
|
||
$this->setParameter($localizedObject); | ||
$this->setParameter($prefix); | ||
$this->setParameter($suffix); | ||
|
||
$localizedProperties = array(); | ||
|
||
foreach ($originalClass->getProperties() as $originalProperty) { | ||
if ((! method_exists('Closure', 'bind')) && $originalProperty->isPrivate()) { | ||
// @codeCoverageIgnoreStart | ||
throw UnsupportedProxiedClassException::unsupportedLocalizedReflectionProperty($originalProperty); | ||
// @codeCoverageIgnoreEnd | ||
} | ||
|
||
$propertyName = $originalProperty->getName(); | ||
|
||
if ($originalProperty->isPrivate()) { | ||
$localizedProperties[] = "\\Closure::bind(function () use (\$localizedObject) {\n " | ||
. '$this->' . $propertyName . ' = & $localizedObject->' . $propertyName . ";\n" | ||
. '}, $this, ' . var_export($originalProperty->getDeclaringClass()->getName(), true) | ||
. ')->__invoke();'; | ||
} else { | ||
$localizedProperties[] = '$this->' . $propertyName . ' = & $localizedObject->' . $propertyName . ";"; | ||
} | ||
} | ||
|
||
$this->setDocblock( | ||
"@override constructor to setup interceptors\n\n" | ||
. "@param \\" . $originalClass->getName() . " \$localizedObject\n" | ||
. "@param \\Closure[] \$prefixInterceptors method interceptors to be used before method logic\n" | ||
. "@param \\Closure[] \$suffixInterceptors method interceptors to be used before method logic" | ||
); | ||
$this->setBody( | ||
(empty($localizedProperties) ? '' : implode("\n\n", $localizedProperties) . "\n\n") | ||
. '$this->' . $prefixInterceptors->getName() . " = \$prefixInterceptors;\n" | ||
. '$this->' . $suffixInterceptors->getName() . " = \$suffixInterceptors;" | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...ProxyGenerator/AccessInterceptorScopeLocalizer/MethodGenerator/StaticProxyConstructor.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?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. | ||
*/ | ||
|
||
namespace ProxyManager\ProxyGenerator\AccessInterceptorScopeLocalizer\MethodGenerator; | ||
|
||
use ProxyManager\Generator\MethodGenerator; | ||
use ProxyManager\Generator\ParameterGenerator; | ||
use ReflectionClass; | ||
|
||
/** | ||
* The `staticProxyConstructor` implementation for an access interceptor scope localizer proxy | ||
* | ||
* @author Marco Pivetta <ocramius@gmail.com> | ||
* @license MIT | ||
*/ | ||
class StaticProxyConstructor extends MethodGenerator | ||
{ | ||
/** | ||
* Constructor | ||
* | ||
* @param ReflectionClass $originalClass | ||
*/ | ||
public function __construct(ReflectionClass $originalClass) | ||
{ | ||
parent::__construct('staticProxyConstructor', array(), static::FLAG_PUBLIC | static::FLAG_STATIC); | ||
|
||
$localizedObject = new ParameterGenerator('localizedObject'); | ||
$prefix = new ParameterGenerator('prefixInterceptors'); | ||
$suffix = new ParameterGenerator('suffixInterceptors'); | ||
|
||
$localizedObject->setType($originalClass->getName()); | ||
$prefix->setDefaultValue(array()); | ||
$suffix->setDefaultValue(array()); | ||
$prefix->setType('array'); | ||
$suffix->setType('array'); | ||
|
||
$this->setParameter($localizedObject); | ||
$this->setParameter($prefix); | ||
$this->setParameter($suffix); | ||
|
||
$this->setDocblock( | ||
"Constructor to setup interceptors\n\n" | ||
. "@param \\" . $originalClass->getName() . " \$localizedObject\n" | ||
. "@param \\Closure[] \$prefixInterceptors method interceptors to be used before method logic\n" | ||
. "@param \\Closure[] \$suffixInterceptors method interceptors to be used before method logic\n\n" | ||
. "@return self" | ||
); | ||
$this->setBody( | ||
'static $reflection;' . "\n\n" | ||
. '$reflection = $reflection ?: $reflection = new \ReflectionClass(__CLASS__);' . "\n" | ||
. '$instance = $reflection->newInstanceWithoutConstructor();' . "\n\n" | ||
. '$instance->bindProxyProperties($localizedObject, $prefixInterceptors, $suffixInterceptors);' . "\n\n" | ||
. 'return $instance;' | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.