2

如果有人使用 GO! 框架,你能帮帮我吗?我在 php 5.3.13 上安装框架。演示示例正在运行。但我自己的例子不起作用。Aspect(method beforeMethodExecution) 未执行。

这是我的代码。

主文件:

//1 Include kernel and all classes
if (file_exists(__DIR__ .'/../../vendor/autoload.php')) {
     $loader = include __DIR__ .'/../../vendor/autoload.php';
}
// 2 Make own ascpect kernel

use Go\Core\AspectKernel;
use Go\Core\AspectContainer;

class Kernel extends AspectKernel{
  /**
   * Configure an AspectContainer with advisors, aspects and pointcuts
   *
   * @param AspectContainer $container
   *
   * @return void
   */
   public function configureAop(AspectContainer $container)
  {
  }
}

//3 Initiate aspect kernel

$Kernel = Kernel::getInstance();

$Kernel->init();

//4 Include aspect
include(__DIR__.'/aspectclass/AspectClass.php');

$aspect = new DebugAspect();

//5 register aspect
$Kernel->getContainer()->registerAspect($aspect);


//6 Include test class

include(__DIR__.'/class/class1.php'); 


//7 Execute test class

$Class = new General('test');
$Class->publicHello();

带有测试类的文件:

class General{
protected $message = '';

public function __construct($message)
{
    $this->message = $message;
}

public function publicHello()
{
    echo 'Hello, you have a public message: ', $this->message, "<br>", PHP_EOL;
}

}

带有方面的文件:

use Go\Aop\Aspect;
use Go\Aop\Intercept\FieldAccess;
use Go\Aop\Intercept\FunctionInvocation;
use Go\Aop\Intercept\MethodInvocation;
use Go\Lang\Annotation\After;
use Go\Lang\Annotation\Before;
use Go\Lang\Annotation\Around;
use Go\Lang\Annotation\Pointcut;
use Go\Lang\Annotation\DeclareParents;
use Go\Lang\Annotation\DeclareError;

class DebugAspect implements Aspect{

/**
 * Method that should be called before real method
 *
 * @param MethodInvocation $invocation Invocation
 * @Before("execution(General->*(*))")
 *
 */
public function beforeMethodExecution(MethodInvocation $invocation)
{
    $obj = $invocation->getThis();
    echo 'Calling Before Interceptor for method: ',
    is_object($obj) ? get_class($obj) : $obj,
    $invocation->getMethod()->isStatic() ? '::' : '->',
    $invocation->getMethod()->getName(),
    '()',
    ' with arguments: ',
    json_encode($invocation->getArguments()),
    PHP_EOL;
}


}
4

1 回答 1

3

如您所知,go-aop 不是 PHP 扩展,因此它无法转换通过requireor直接加载的类include。在内部,它试图动态覆盖源代码,但它应该接收一个控件(通过与作曲家或自定义自动加载器类的集成)。

所以,你在这里有一个错误:

//6 Include test class
include(__DIR__.'/class/class1.php');

您将此类显式加载到内存中,并且无法从用户空间转换它。要将控件传递给框架,您应该明确地进行此操作。查看AopComposerLoader.php#L99行,了解它是如何工作的。在这里,我们通过流源过滤器包含一个源文件,它将控制权传递给框架,它可以转换类以编织一个方面。

要修复您的示例,只需将 an 更改include为以下内容:

include (FilterInjectorTransformer::rewrite(__DIR__.'/class/class1.php')); 
于 2014-06-27T06:08:49.733 回答