Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
7answers
1k views

Aspect-Oriented Objective-C Library?

Is there any Aspect-Oriented Objective-C library that I could perhaps use for iPhone development?
7
votes
4answers
753 views

Aspect Oriented Programming (AOP) in C NOT C++ — anyone doing it?

Has anyone seen or written their own framework for doing Aspect Oriented Programming in C? Not C++ -- I've seen already that there's AspectC which is really C++. Involved in embedded software ...
6
votes
3answers
509 views

What is AspectJ good for?

First let me note, that I use AspectJ and I like it, but what else can I do with it. I know AspectJ can be/is used for Logging. In some cases it is used for Transaction controlling – mostly ...
6
votes
1answer
606 views

Aspect Oriented Logging with Unity\T4\anything else

In my application we have a trace logger. We have log statements added at the beginning and end of most of the important methods tracing the method name and the parameter values. Now these trace ...
5
votes
1answer
203 views

How can Domain driven design be combined with aspect oriented programming?

I'm doing research and one point I want to cover is "What is the relationship between Domain-driven Design and Aspect oriented programming?" I know that a main principle in DDD is separation of ...
4
votes
4answers
423 views

Any mature AOP library to use in .Net world?

The library should at least compared to AspectJ, any?
4
votes
5answers
236 views

C#: Wrapping methods in other methods

Is there a way to wrap methods in other methods transparently in C#? I want to achieve what is done by Moose's around functionality: http://search.cpan.org/perldoc?Moose::Manual::MethodModifiers ...
4
votes
2answers
351 views

python solutions for managing scientific data dependency graph by specification values

I have a scientific data management problem which seems general, but I can't find an existing solution or even a description of it, which I have long puzzled over. I am about to embark on a major ...
3
votes
1answer
96 views

Spring.NET.AOP - ExceptionHandlerAdvice doesnt replace custom exception

this is my first and also I am beginner in Spring.NET and also AOP. I would like use Aspect for Exception Hadling for replacing, wrap and modify my custom exceptions. First I defined some entity ...
3
votes
2answers
116 views

Is it possible to add methods to classes with PostSharp? If yes, is it possible to then reference those methods from other classes?

Let's say I have a class Abc: class Abc { } and that I'd like to externally add some method m() to it. I guess it's probably possible to do this, although I am not sure how. Assuming it is possible ...
3
votes
3answers
266 views

Does Delphi offer an event handler for form creation notifications?

Does Delphi provide some kind of event or hook for form creation (or more generally, form lifecycle events)? So that if somewhere in the code a form is created and shown (modal or non-modal, ...
3
votes
2answers
103 views

Pointcuts and Aspect-Oriented Programming

How are pointcuts used in aspect-oriented programming language to add functionality into an existing program? To my understanding, from this Wikipedia article - http://en.wikipedia.org/wiki/Pointcut ...
3
votes
3answers
146 views

Unit testing aspect-oriented features

I'd like to know what would you propose as the best way to unit test aspect-oriented application features (well, perhaps that's not the best name, but it's the best I was able to come up with :-) ) ...
3
votes
7answers
225 views

How to know, the number of times a particular method is invoked in java

Is there any way to know how many times a instance of a class has invoked its member method. I think(not sure), one way is to have a dedicated a member variable for a method, But that will not be ...
2
votes
2answers
25 views

AO Compiler: weaving process

I'm doing a presentation about Aspect Oriented Software Development. One of my subtopics is "AO Compiler: weaving process". I found nothing about it on the internet. Does anybody have some information ...
2
votes
1answer
18 views

AspectJ staticinitalization

i'm successfully intercepting the static initialization of classes with @MyAnnotation with this code: public aspect SomeAspect { pointcut printClassName() : staticinitialization(@MyAnnotation *); ...
2
votes
3answers
145 views

Practices for managing complexity of meta-programming (AOP/reflection/macros) techniques

Aspects, Macros, Reflection, and other niceties - the good parts I've noticed that "meta programming" tricks (in the clojure world, functions have meta data, in the oo world, we have concepts like ...
2
votes
4answers
109 views

Generating methods in design or in build time (C#)

I have an integration testing solution. I have my tests described in XML files. In order to capitalize on Visual Studio 2010 testing infrastructure, I have a C# class where every XML test file has an ...
2
votes
1answer
182 views

How to inject an attribute using a PostSharp attribute?

How can I write a PostSharp aspect to apply an attribute to a class? The scenario I'm considering is a WCF entity (or domain object) that needs to be decorated with the DataContract attribute. It ...
2
votes
2answers
99 views

How to chain message sinks in a context bound object (aspect oriented programming)

I am trying to use ContextBoundObject and message sinks to inject some aspects into my code. My problem is that my aspect is being called only once - when I make the call: ...
2
votes
1answer
151 views

PostSharp Pointcuts

Before I start, I'd like to clarify that my current understanding of AOP terminology is as follows... Aspects are the AOP equivalent of Classes in OOP. Advices are the AOP equivalent of Methods in ...
2
votes
1answer
42 views

Which are the most suitable languages to apply Aspect's Theme approach?

I am thinking about reading Aspect-Oriented Analysis and Design: The Theme Approach, yet I am hesitant. Is it possible to use what's taught in the book with AspectJ (for Java) or Post# in C#? Maybe ...
2
votes
1answer
132 views

Get Target in MethodInterceptor

How I can get Target object in my interceptor? bindInterceptor(subclassesOf(A.class), any(), new MethodInterceptor() { @Override public Object invoke(MethodInvocation ...
2
votes
3answers
137 views

Disabling C++ code without macros

I hate macros. I'm trying to avoid using them as much as I can, but I occasionally need them to enable / disable features in my code. Typically: #ifdef THREAD_SAFE typedef boost::mutex Mutex; ...
2
votes
1answer
385 views

Serializing SQLAlchemy models for a REST API while respecting access control?

Currently, the way our, as well as most web frameworks', serialization works is there's some type of method invocation which dumps the model into some type of format. In our case, we have a to_dict() ...
2
votes
5answers
145 views

Protect access to Java methods depending on custom conditions

In short: I want to allow/forbid the execution of Java methods depending on certain conditions. What is the best available solution/mechanism/technique? Long question, via an (admittedly dumb) ...
2
votes
1answer
211 views

Creating LinFu interceptors for all types within an assembly

I'm trying to create LinFu interceptors for all methods in my DAL assembly. While I can do something like this: [Intercepts(typeof(IFirstRepository))] [Intercepts(typeof(ISecondaryRepository))] ...
2
votes
1answer
263 views

Authorization of UI Elements in .NET WinForms

I have a general question about the best approach for authorizing UI elements for application Roles. What I mean is an Administrator can see buttons, menu items, etc, that a regular User cannot see. ...
2
votes
1answer
280 views

C# AOP Method Interception on child method calls?

My AOP (C#) implementation always intercepts the first (public) method call but not subsequent methods called within the first intercepted method, is this a limitation with ContextBoundObject AOP ...
2
votes
2answers
382 views

Loose programming in high level languages, how, why and how much?

I'm writing my code in haXe. This is quite irrelevant to the question though, as long as you keep in mind that it's a high level language and compareable with Java, ActionScript, JavaScript, C#, etc. ...
2
votes
2answers
118 views

Implement Apect-oriented-like nested around filters with Ruby?

I'm trying to write a class that supports nested around filters without introducing an Aspect-oriented library. class Foo attr_accessor :around_filter def initialize #filters which wrap the ...
1
vote
1answer
39 views

Modular design pattern

I'm trying to decide the design of a system which is meant to allow for a high amount of extensiblity. From what I can tell, a pattern such as the abstract factory would not allow for overriding of ...
1
vote
2answers
95 views

Handle with exception on auto proxy / proxy factory object

I start learning Spring.NET framework and I am very confusing with behavior of proxy, auto-proxy and exception handling. for example I defined simple business object and from this object I will ...
1
vote
1answer
50 views

Usage of AspectPriority

I'm using PostSharp 2.1.5.1 and had a warning today: Aspect dependencies (defined on "MyNamespace.MyAspect.MyVerificationAttribute") will be disabled from the Starter Edition in future ...
1
vote
3answers
46 views

javascript: How to override a method for all the instances of some class?

function Person(){ this.scream = function(){ alert('NO NO NO!!!!'); }; } var steve = new Person(); steve.scream() // NO NO NO!!!! Person.prototype.scream = function(){ alert('YES ...
1
vote
1answer
119 views

how to apply a Postsharp aspect solution wide (all classes in namespace)

I am trying to modify the sample trace app that ships with Postsharp so that the trace is applied to all classes in my namespace without explicitly putting the [QuickTrace] on top of each class. I ...
1
vote
1answer
46 views

How to match a method with an annotated argument in AspectJ

I'd like to match a method like this: @Foo public void boo(@Baz Bar bar) { ... } Basically: the method has a @Foo annotation (which I match with execution(@Foo * *(..)) && ...
1
vote
0answers
150 views

How to use php-aop

Documentation is lacking for php-aop. Has anyone used it and know how to do anything with it? I've installed it and set up the include stuff just don't know how to continue. Lets say i have a class ...
1
vote
1answer
48 views

How to add access checks to a method (and create a new method based on the “advised” method) with AspectJ?

Consider this code: class DatabaseAction(/* ... */) { public void deleteUser(User userToDelete, User currentUser) { /* ... */ } } Is it possible to add an aspect-based annotation like ...
1
vote
0answers
88 views

How to create an aspect around a method in a class that implements java.security.Principal?

Does anyone know how one would go about creating an aspect around the method "getName()" in a class that implements the interface java.security.Principal? I am using spring and below is the pertinent ...
1
vote
1answer
93 views

Add aspect to implementation class not interface

We have a class which implements several interfaces. We would like to add some pointcut for the entire class - not for a particular interface of it. How it can be done with Spring AOP? Is it possible ...
1
vote
3answers
179 views

Is there any attribute relating to AJAX to be set for ASP.NET MVC controller actions?

I want to use partial views with AJAX calls in ASP.NET MVC, and this is the first time I'm using it. I just searched to see if there is anything special I should know beforehand, and one of'em that ...
1
vote
2answers
132 views

AspectJ - why use annotations instead of ajc compiler?

We can use both @AspectJ annotation style to define aspects, as well as the AspectJ Java extension language, which requires us to use the ajc compiler. What are the reasons that one would want to use ...
1
vote
0answers
86 views

Aspect Oriented C (not C++) in Production Code

This is a question further derived from a previous one: Aspect Oriented Programming (AOP) in C NOT C++ — anyone doing it? The answers to that question point us to some research practices at queens ...
1
vote
2answers
155 views

What is the best way to have interceptors for POJO?

EJB 3.0 comes with the concept of Interceptors, but then again they are applicable to EJBs only. My project requires developing Interceptors for POJO classes. One option for this is to use Spring AOP. ...
1
vote
1answer
257 views

AOP Separating Cross-cutting Concerns

I'm trying to start taking advantage of Aspect-Oriented programming for repetitive tasks. I'm not sure how to go about separating concerns. I'm using C# and for AOP I'm using Castle.DynamicProxy ...
1
vote
1answer
107 views

Need help creating a specific pointcut inside of a method

I started with an original question on Need help creating a specific pointcut that utilizes a value from a method annotation. I decided I wanted to ask another question to change the approach I was ...
1
vote
2answers
184 views

Aspect Oriented Programming in C++ - Current supported alternatives

I have used AspectJ before for Java, and I recently have thought about checking which possibilities exist for the C++ language. I heard about AspectC++, but unlike AspectJ, AspectC++ seems to be ...
1
vote
1answer
83 views

Array element set pointcut. Is there a workaround?

I just read that it is not possible to define a pointcut on a single array element (bug link). Considering I really need to detect an array element modification, I would like to know if there is any ...
1
vote
2answers
133 views

What are best practices for AOP development?

I'm looking for best practices guidelines for developers seeking to learn AOP. Anything from actual coding techniques to IDE suggestions would be a big help here. UPDATE: In particular, I'm ...

1 2