I'm stuck again.....

i have to enforce a policy issuing a warning if items not belonging to a particular category are being added, apart from the three which are allowed and disallowing such additions.....

So far i am able to find the items and issue warning.... but not sure how to stop them from being added....

For Eg.

Allowed categories Shoes and socks

but if i try and add a vegetable item to the inventory it should give me a warning saying "category not allowed../nItem will not be added to inventory"..... and then proceed to the next item....

This is what i've written so far.....

Pointcut deliverMessage(): call(* SC.addItem(..));
pointcut interestingcalls(String categorie): call(Item.new(..)) && args(*, *, categorie);



       before(String categorie): interestingcalls(categorie)
       { 
            if(categorie.equals("Socks"))
            {        
                System.out.println("categorie detect:" +categorie);
            }
            else if(categorie.equals("Shoes"))
            {        
                System.out.println("categorie detect:" +categorie);
            }
            else
            {
                check=true; 
                System.out.println("please check categorie" +categorie);
            }
        }
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Why not use the around aspect instead. Then, if they are not of the correct category you don't go into that method, so it gets skipped, if the skipped method is just doing the adding.

UPDATE:

Here is an example from AspectJ In Action, by Manning Publication.

public aspect ProfilingAspect {
  pointcut publicOperation() : execution(public * *.*(..));
  Object around() : publicOperation() {
    long start = System.nanoTime();
    Object ret = proceed();
    long end = System.nanoTime();
    System.out.println(thisJoinPointStaticPart.getSignature()
      + " took " + (end-start) + " nanoseconds");
    return ret;
  }
}

So, if you wanted to check if you should add the item, if it is an allowed category then just call proceed, otherwise you would just return a null perhaps.

link|improve this answer
Hi.... I've been trying but not sure how to get proceed to work.... – John May 16 '11 at 3:39
feedback

Your Answer

 
or
required, but never shown

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