vote up 2 vote down star
1

I'm working on a new system architecture for my current job, and think there is a lot of potential is making some custom attributes for the other developers to use. However, something I've yet to see in reading about custom attributes, is if there is a way to tell what the attribute is being called for. In other words, get the instance of the decorated class that the attribute is attached to.

So lets say I want to make an attribute that would just log entry to a method: Without attributes:

class MyClass
{
    public string MyVal { get; set; }

    public void MyMethod()
    {
        if(logger.IsDebugEnabled())
            logger.Write("Entered MyClass.MyMethod(). MyVal is " + MyVal);

        // ... do rest of method ...
    }
 }

Obviously dropping this onto every method isn't a good plan. It doesnt relate tot he real logic at all. Just extra fluff for debugging. Great place for an attribute, right!

[LogMethodEntry]
public void MyMethod()
{
    // ... do rest of method ...
}


public class LogMethodEntryAttribute : System.Attribute
{
    public LogMethodEntryAttribute()
    {
        if(logger.IsDebugEnabled())
            logger.Write("Entered ?. MyVal is ?");

        // hmmm, what method was called that triggered this?
        //  can probably get it from the call stack, but...
        //  what is the value of MyVal?
    }
}

By the way, this isn't actually what I want to use the attributes for, its just a simple example.

It would be nice if attributes had a way of getting the decorated instance, maybe like extension methods do it:

public class LogMethodEntryAttribute : System.Attribute
{
    public LogMethodEntryAttribute(this object target)
    {
        logger.write((MyClass)target.MyVal);

But I don't think anything like that exists. I am currently downloadng the source to PostShart to see if/how they get around this, but I figured I might get a faster answer here.

Plus, doesn't it seem like that should be possible? Wouldnt it make Attributes MUCH MUCH more beneficial? I know it would for me right now!


Closing this question. When I originally asked this, I was under the impression that the Attribute constructor was called every time the decorated method was called. I have since come to realize that this is not how attributes work. Getting the instance that the Attribute is running against no longer makes sence, because it isn't really run against anything.

flag

closed as no longer relevant by rally25rs Jan 12 at 23:24

6 Answers

vote up 2 vote down check

An attribute can not by itself get hold of the identifier it has been attached to, but since you need reflection code for this outside of the attribute, you might as well just pass that in.

However, I sense an underlying question lurking here. An attribute by itself won't do squat. There has to be code executing that analyzes the type, methods or properties or whatever, and finds those attribute objects, and then does something with those attribute.

So this:

public class TestAttribute : Attribute
{
    public void Log(Object target)
    {
        ...
    }
}

can be used, but you need to pass the target argument to it:

public class SomeClass
{
    [Test]
    public void SomeMethod()
    {
    }
}

...

foreach (MethodInfo mi in typeof(SomeClass).GetMethods())
{
    if (mi.IsDefined(typeof(TestAttribute), false))
    {
        foreach (TestAttribute attr in mi.GetAttributes(typeof(TestAttribute), false))
        {
            Log(mi);
        }
    }
}

This will pass in the MethodInfo object of the method the attribute is attached to. If you got an instance instead, you can pass that.

But the important thing is that attributes are not active code! They have to be found, and processed, manually, and they won't do this by themselves.

This is why PostSharp and other AOP systems are doing it the way they do it, they rebuild the code to add injected code from the attributes.

link|flag
vote up 0 vote down

Quick update for future reference; PostSharp uses a compiler extension, so at build time, it injects code into your decorated methods. I'd really like to avoid this if possible, so my original question still stands...

link|flag
vote up 1 vote down

Attributes are not generally a good solution for this. Somebody has to use Reflection to discover the attribute. By necessity, that needs to be the caller of MyMethod(), there is no point in letting MyMethod() find the attribute. That greatly restricts its scope, MyMethod() would have to a virtual method, known to possibly have a specific attribute.

More troublesome is the cost of Reflection, it is many orders of magnitude slower than directly calling a method in code. Reflection is great for tools that run at human time (~1 sec, compilers etc), tolerable at device I/O time (~1 msec, remoting etc) but unacceptably slow at CPU time (< 1 usec).

And that's why PostSharp uses code injection.

link|flag
vote up 0 vote down

You cannot tell from inside the constructor of an attribute on which member you sit. It's metadata, not "active" code.

Rather than using:

if(logger.IsDebugEnabled())
  logger.Write("Entered MyClass.MyMethod(). MyVal is " + MyVal);

...which results in wasted CPU cycles when your are not running a debug build, consider using the [Conditional("DEBUG")] attribute on the logging method so the compiler strips it (and its callers) from the binary when building in "Release" mode.

Check out http://blogs.msdn.com/ericgu/archive/2004/08/13/214175.aspx

-Oisin

link|flag
vote up 0 vote down

What you are trying to do falls within the realm of AOP (Aspect oriented programming). IMHO attributes are a poor man's AOP tool.

Microsoft has been trying to do AOP like things using attributes ever since the days of MTS (microsoft transaction server) where attributes would be used to specify properties of COM classes.

In short your time will be better served if you use external AOP tools for C# instead of trying to reinvent the wheel. May be you can go with postsharp.

link|flag
vote up 0 vote down

I think you can't do this, because attributes are attached to types, not instances. If you really wanted to go this way... You'd probably have to write a function that runs upon your application code and modifies in runtime all the methods that have this attribute. That's some hard stuff.

Maybe it would be better to use some kind of static method that is called upon startup in each of these methods? It would still be just one line, so no more writing then an attribute.

This method would then check the call stack (there were methods for it somewhere in the .NET framework) and log what it has to.

link|flag

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