Giter Club home page Giter Club logo

Comments (3)

geraldcroes avatar geraldcroes commented on July 26, 2024

I may have overlooked the named pointcut concepts, but how is it different from a simple constant ?

    <?php
    //define pointcut for all delete methods
    define('POINTCUT_DELETE', '**/*->delete*()');
    aop_add_before(POINTCUT_DELETE, $closure);

from aop.

kdambekalns avatar kdambekalns commented on July 26, 2024

True, on the language level of your extension that is about the same. We could have done that as well, I guess.

But when you combine named pointcuts with another expression, it becomes a little messy:

<?php
define('POINTCUT_DELETE', '**/*->delete*()');
aop_add_before('(Foo->bar() && ' . POINTCUT_DELETE . ') || Baz->Quux()' , $closure);

The other thing is, it pollutes the constant namespace - but only for a given PHP namespace, so it might not be that bad.

from aop.

geraldcroes avatar geraldcroes commented on July 26, 2024

Ok, I now understand your point.

We could as you propose include some kind of a pre-parse for selectors like

   <?php
    aop_pointcut_define('**/*->delete*()', 'pointcut_delete');
    aop_add_before('(Foo->bar() && pointcut_delete ) || Baz->Quux()' , $closure);

Maybe more then

   <?php
    aop_pointcut_define('**/*->delete*()', 'delete');
    aop_add_before('(method(Foo->bar()) && pointcut(delete) ) || method(Baz->Quux())' , $closure);

The global syntax is really to be think of. I'm really the kind of person who prefer simplicity over completeness in API, letting the user define his own "what the base syntax cannot do".

I think we'll have to wait for more feedback and decide the way to go with this.

from aop.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.