lisachenko/yii-aspect

Yii and Go! aop demo project

Fund package maintenance!
lisachenko

Installs: 39

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 6

Forks: 4

Open Issues: 0

Language:JavaScript

Type:project

dev-master 2013-09-28 15:11 UTC

This package is auto-updated.

Last update: 2024-04-17 08:24:49 UTC


README

Yii skeleton with some tweaks + Go AOP PHP.

This project allows you to test aspect-oriented programming with Yii framework.

Installation

Installation process is pretty easy, only few steps:

git clone https://github.com/lisachenko/yii-aspect.git && cd yii-aspect
composer install

After that add a /app folder as a home directory for web server and just open it in browser.

Aspect definition

Aspect class is defined in TestMonitorAspect class:

<?php
namespace Aspect;

use Go\Aop\Aspect;
use Go\Aop\Intercept\FieldAccess;
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;

/**
 * Monitor aspect
 */
class TestMonitorAspect implements Aspect
{

    /**
     * Method that will be called before real method
     *
     * @param MethodInvocation $invocation Invocation
     * @Before("within(**)")
     */
    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()),
             "<br>\n";
    }
}

How it works?

Main feature of AOP is that it doesn't require any changes in the original source code. There is a weaver that modifies logic of original classes and methods according to the rules defined in aspects. So in our example we create an advice (body of the beforeMethodExecution() method) that will receive a MethodInvocation instance as an argument. Next step is to decide where this advice should be applied (it's a pointcut). Here we define "within" pointcut for all public and protected methods (both dynamic and static) with the help of "**" that will match any class. Annotation "@Before" is used to specify, that we want our hook to be called before original method.

Each aspect should be registed in the application aspect kernel.