I had a new interesting discussion, this time with John Vanspronssen. I'm not sure I've understood all he has in mind, but I was challenged by the idea of 'composed aspects', that is, aspects composed of many transformations. In order to avoid confusion with object composition, I chose to rename this combined aspects. I first planned to implement this in a later phase, but this discussion just excited me to do it... and it's done!
So what's a composed aspect?
As I said, it is an aspect composed of many sub-aspects. John gave the binding aspect as an example. This aspect 'simply' raises an event OnPropertyChanged.
Say I have the following base code:
, where T is the composed interface (IBindable in our example). This interface has a single method GetImplementation... that requires the credentials.
How can the OnPropertySetAspect know the credentials? These are passed through the event arguments (MethodExecutionEventArgs). That is, aspects will receive the credentials to access 'protected' data of the aspected instance. But only of this instance!
I've said this was designed, but this is not completely implemented. In the version I put online tonight, credentials are not yet checks. And there are still problems if you try to apply the same custom attributes on a class and its parent class. This will be solved during the next week or two.
Enjoy!
Gael
interface IBindable
{
event EventHandler OnPropertyChanged;
}
[Bindable]
class MyClass
{
private int field1;
public int Field1
{
get { return field1; }
set { field1 = value; }
}
}
The post-compiled code should look like this:
class MyClass : IBindable
{
private int field1;
public event EventHandler OnPropertyChanged;
public int Field1
{
get { return field1; }
set
{
field1 = value;
if (this.OnPropertyChanged != null)
{
this.OnPropertyChanged(this, EventArgs.Empty);
}
}
}
}
There are two sub-aspects combined in the Binding aspect:
- A CompositionAspect: adding the IBinding interface and its implementation.
- An OnMethodBoundaryAspect applied to the method set_MyProperty method: raising the OnPropertyChanged method. If there were more than one property, there would be one aspect of this type for each writable property.
- The class BindableImplementation is the implementation of the IBindable interface. This type is composed inside the target the AddBindableInterfaceAspect aspect, which is derived from CompositionAspect.
- The aspect OnPropertySetAspect is derived from OnMethodBoundaryAspect and implements only the OnExit method. The only thing it does is to retrieve the implementation of IBindable for this instance (that is, the composed BindableImplementation object) and raise the OnObjectChanged event.
- The class BindableAttribute is the principal class and the only public one. It is derived from CombinedAspect and implement the method ProvideAspects. This method is the most interesting. First it adds the AddBindableInterfaceAspect to the type, then it scans all the writable properties in this type and applies the OnPropertySetAspect to them. This method is of course executed at compile time.

0 Comments:
Post a Comment
Links to this post:
Create a Link