Initial commit with Symfony 2.1+Vendors

Signed-off-by: Gergely POLONKAI (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Polonkai Gergely
2012-07-01 09:52:20 +02:00
commit 082a0130c2
5381 changed files with 416709 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<?php
/*
* Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\AopBundle\Aop;
use CG\Proxy\InterceptorLoaderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Lazy-loading interceptor loader implementation.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class InterceptorLoader implements InterceptorLoaderInterface
{
private $container;
private $interceptors;
private $loadedInterceptors = array();
public function __construct(ContainerInterface $container, array $interceptors)
{
$this->container = $container;
$this->interceptors = $interceptors;
}
public function loadInterceptors(\ReflectionMethod $method)
{
if (!isset($this->interceptors[$method->class][$method->name])) {
return array();
}
if (isset($this->loadedInterceptors[$method->class][$method->name])) {
return $this->loadedInterceptors[$method->class][$method->name];
}
$interceptors = array();
foreach ($this->interceptors[$method->class][$method->name] as $id) {
$interceptors[] = $this->container->get($id);
}
return $this->loadedInterceptors[$method->class][$method->name] = $interceptors;
}
}

View File

@@ -0,0 +1,34 @@
<?php
/*
* Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\AopBundle\Aop;
final class PointcutContainer
{
private $pointcuts;
public function __construct(array $pointcuts)
{
$this->pointcuts = $pointcuts;
}
public function getPointcuts()
{
return $this->pointcuts;
}
}

View File

@@ -0,0 +1,54 @@
<?php
/*
* Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\AopBundle\Aop;
/**
* Pointcut Interface.
*
* Implementations of this class are responsible for making a decision on whether
* a certain method call matches the advice which is associated with this pointcut.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
interface PointcutInterface
{
/**
* Determines whether the advice applies to instances of the given class.
*
* There are some limits as to what you can do in this method. Namely, you may
* only base your decision on resources that are part of the ContainerBuilder.
* Specifically, you may not use any data in the class itself, such as
* annotations.
*
* @param \ReflectionClass $class
* @return boolean
*/
function matchesClass(\ReflectionClass $class);
/**
* Determines whether the advice applies to the given method.
*
* This method is not limited in the way the matchesClass method is. It may
* use information in the associated class to make its decision.
*
* @param \ReflectionMethod $method
* @return boolean
*/
function matchesMethod(\ReflectionMethod $method);
}

View File

@@ -0,0 +1,46 @@
<?php
/*
* Copyright 2011 Johannes M. Schmitt <schmittjoh@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace JMS\AopBundle\Aop;
/**
* A regex pointcut implementation.
*
* Uses a regular expression for determining whether the pointcut matches.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class RegexPointcut implements PointcutInterface
{
private $pattern;
public function __construct($pattern)
{
$this->pattern = $pattern;
}
public function matchesClass(\ReflectionClass $class)
{
return true;
}
public function matchesMethod(\ReflectionMethod $method)
{
return 0 < preg_match('#'.$this->pattern.'#', sprintf('%s::%s', $method->class, $method->name));
}
}