I'm trying to get my head around AOP and some Qt Code would really help.

From wikipedia here is some sample code (easy for a Qt/C++ programmer to read):

void transfer(Account fromAcc, Account toAcc, int amount, User user, Logger logger)
   throws Exception {
   logger.info("transferring money...");
   if (! checkUserPermission(user)){
     logger.info("User has no permission.");
     throw new UnauthorizedUserException();
   }
   if (fromAcc.getBalance() < amount) {
     logger.info("Insufficient Funds, sorry :( ");
     throw new InsufficientFundsException();
   }

   fromAcc.withdraw(amount);
   toAcc.deposit(amount);

   //get database connection

   //save transactions

   logger.info("Successful transaction. :) ");
 }

And then "aspectized":

void transfer(Account fromAcc, Account toAcc, int amount) throws Exception {


   if (fromAcc.getBalance() < amount) {
     throw new InsufficientFundsException();
   }

   fromAcc.withdraw(amount);
   toAcc.deposit(amount);
 }

aspect Logger 
{

    void Bank.transfer(Account fromAcc, Account toAcc, int amount, User user, Logger logger)
    {
    
        logger.info("transferring money...");
    }

    void Bank.getMoneyBack(User user, int transactionId, Logger logger)
    {
        logger.info("User requested money back");
    }

    // other crosscutting code...
}

Qt has signals and slots to decouple objects. But I still need to emit signals.

So: Can this be done with Qt or do I need some special framework/preprocessors as referenced in the wikipedia article?

I have a feeling that there must be some trick since Qt uses the Meta Object Compiler and some functionality might be "injected" with dynamic methods.... just spit-balling here ;)

Edit: To give a better context: I really like the dynamic aspects (power) of the Qt meta object with signals and slots and would like to keep a Qt feel to it. Thus, my idea is to make use of slots (or signals) as point cuts. For example:

If I define slot Bank::transfer(...) and then signal Bank::OnBeforeTranfer() and signal Bank::OnAfterTransfer(). If I then connect them to other aspects say Security::transfer() and Logger::transfer() (all QObjects) I can block calls (like fail OnBeforeTransfer).

But, if we then take it to the next evolution to get less and cleaner code I would like to get rid of the OnXXXX signals and connect the Bank::transfer slot to Security::transfer slot and Logger::transfer. Anything dynamic in Qt? : Like order of calling slots and and preventing next call in the "slot chain"?

This whole context can still be considered AOP right? I'm trying to stick to "method level point cuts" or am I totally beside the point here?

link|improve this question

The basic concepts are fine. I'm just trying to see how this would be done practically in Qt. Specifically when in the "security aspect" (checkUserPermission) that should "block" a transfer. If I put any IF statement then my code is not split off to the specific security aspect... – Derick Schoonbee Jul 29 '10 at 6:47
Another nice example stackoverflow.com/questions/242177/… – Derick Schoonbee Mar 13 '11 at 13:32
out of curiosity , did you succeed this? – Ashika Umanga Umagiliya Oct 27 '11 at 9:48
Nope, if I have time I'll revisit this. I would still like to see if this is possible. – Derick Schoonbee Oct 29 '11 at 14:34
feedback

2 Answers

In what language are you planning to use Qt? I recently had to build a simple GUI in Qt around a python script and used the AOP python package Aspyct to do some quick before and after stuff. Qt is event-driven programming, I'd say get familiar with the Qt basics, many things are similar to AOP-style operations and then find some AOP libraries for the language you plan to use Qt in.

link|improve this answer
Hmm... I consider myself beyond Qt basics ;) Finally the approach that worked for me was going to a 'higher level of abstraction' by using CQRS. In that sense I've apsectized 'higher levels of concern' by not implementing it directly on a method level. I'm still wondering if there is no qt way / or in the spirit of Qt. I'll have a look at Aspyct to see if it fits my preconceptions of AOP. – Derick Schoonbee Mar 13 '11 at 13:13
Sorry forgot to add I'm using C++ (gcc) – Derick Schoonbee Mar 13 '11 at 13:22
feedback

If you want to stay within the Qt framework, you could take a look at the State Machine Framework. (And get rid of the exceptions :)

Then you could just connect the Logger to state change events.

link|improve this answer
Interesting approach. I've used the state machine but mostly in a "dynamic / changing business rules context" which is what it was designed for. Using custom events might have an aspectized feel to it.. but I'm after dynamic methods or using slots as point cuts (if that makes sense) – Derick Schoonbee Apr 2 '11 at 9:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.