up vote 12 down vote favorite
4
share [g+] share [fb]

Is there any Aspect-Oriented Objective-C library that I could perhaps use for iPhone development?

link|improve this question

3  
+1 for total madness, isn't this stuff hard enough already. – Gareth Davis Jan 9 '11 at 20:54
2  
@gareth-davis If AOP done right, it simplifies a lot of tasks a typical iOS developer encounter in most of his projects. – DASKAjA Sep 8 '11 at 8:42
@DASKAjA just being (mostly) flippant – Gareth Davis Sep 8 '11 at 13:55
feedback

7 Answers

up vote 6 down vote accepted

There is an old project called AspectCocoa, this might be what you are searching for.

Otherwise Í would suggest rolling your own. Either proxy based AOP by subclassing NSProxy for a change. Or you could do some method swizzling with the quite cool Obj-C run-time function method_exchangeImplementations().

But unless you are looking for a fun exercise, ask yourself what you want to achieve, and if there is an existing perfectly working Objective-C way to do it.

link|improve this answer
1  
There's a warning on the linked website: AspectCocoa leaks memory, leads to oversized binaries, and generally is not a reliable production quality piece of software (it's best used for debugging and inspection, and then removed before compiling the final version of your software). – DASKAjA Sep 8 '11 at 8:39
feedback

Check out my article about a possible solution: http://codeshaker.blogspot.com/2012/01/aop-delivered.html

The base idea is to make a hook into the message sending mechanism and force it to the message forwarding route:

So A brief explanation about how it works:

  1. At registration of a method call of a specific class it creates a method wrapper (AOPMethod) object and stores every information in it about that specific method along with the block that will be used upon interception.

  2. Changes the implementation of the method to _objc_msgForward or _objc_msgForward_stret respectively using method_setImplementation. This is the point where we route message sending to the forwarding mechanism. The next time the message is called on the base class, it will return the _objc_msgForward implementation as if it not found the implementation. So it starts to resolve it by going through the message forwarding steps. Nice.

  3. We add the forwardingTargetForSelector: method to the base class using class_addMethod to point to our implementation in the AOPAspect class. Also we add the original method implementation and selector (with an extended name to prevent conflicts between classes) to our AOPAspect instance.

  4. In the forwardingTargetForSelector: method we give back our AOPAspect instance. With this we route the message forwarding from the base object to our AOPAspect object.

  5. This forwardingTargetForSelector: method will be called again on AOPAspect as we don't have that selector implemented. This case we return nil, so message forwarding steps further and will check for the methodSignatureForSelector: and forwardInvocation: methods on AOPAspect.

  6. In methodSignatureForSelector: we gave back the correct message signature that is already stored in a dictionary in a method wrapper object.

  7. At the time it arrives to our implementation of forwardInvocation: in AOPAspect we have a fully configured NSInvocation instance and the only thing we have to do is to change the selector to the extended version we added to AOPAspect class. Here we can run the blocks registered for the given method before/after or even instead of the method call. And of course we can run the original method by calling [anInvocation invoke].

  8. For simplicity, we just pass the NSInvocation object to the blocks registered for the method, so they can access all arguments and the return value as well through the getArgument:atIndex: and getReturnValue: methods.

And that's it. It works with all kind of return types, argument types and any variation of arguments.

You can find the concrete example on the above link. Please feel free to use it.

link|improve this answer
Could you not put some details in the answer and reference your article, if the site goes down your answer becomes useless. – Skuld Jan 23 at 11:49
Edited as requested. I have added the main idea behind it, with it it can be reimplemented easily. – Andras Jan 23 at 12:43
feedback

Also you might want to check out the library at https://github.com/moszi/AOP-in-Objective-C which is a very simple NSProxy subclass allowing you to intercept the beginning and the end of the method calls.

With this you can even create a proxy class for you objects to make sure messages sent to your object are serialized over one single thread, regardless of the invoking thread.

link|improve this answer
feedback

I'm working on a real (it is more than method-swizzling) AOP-Framework for Objective-C. An alpha will be released soon. You can listen to my german presentation on the Macoun'09 conference here: http://macoun.de/?page_id=2223

If you're still interested in AOP for Objective-C you can send me a mail to negm-awad@cocoading.de or simply visit this site: aspective-c.com in a few weeks. There will be an english version (yup, not translated by me ;-)) of the site and the manual in a few weeks.

link|improve this answer
feedback

All still interested people should take a look at https://github.com/mgebele/MGAOP

This seems to be a new project with future potential.

link|improve this answer
feedback

Another one is Aspect Objective-C: https://github.com/tomdalling/AspectObjectiveC

link|improve this answer
feedback

With Objective-C i would suggest to go with the here much used Category- and Delegate-Pattern. These can be more useful than AOP. Don't try and solve your problems with solutions you learned for other languages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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