Coder Social home page Coder Social logo

Comments (5)

YuriyIvon avatar YuriyIvon commented on July 18, 2024

Thanks for the report, potentially there might be other side-effects with around aspects and virtual functions. We will analyze all possible issues to provide a reliable solution.

from aspect-injector.

YuriyIvon avatar YuriyIvon commented on July 18, 2024

I was not able to reproduce StackOverflow issue using a simple example:

    class TraceAspect
    {
        [Advice(InjectionPoints.Around, InjectionTargets.Method)]
        public object Trace(
            [AdviceArgument(AdviceArgumentSource.Type)] Type type,
            [AdviceArgument(AdviceArgumentSource.Name)] string methodName,
            [AdviceArgument(AdviceArgumentSource.Target)] Func<object[], object> target,
            [AdviceArgument(AdviceArgumentSource.Arguments)] object[] arguments)
        {
            Console.WriteLine("Before {0}.{1}", type, methodName);
            var result = target(arguments);
            Console.WriteLine("After {0}.{1}", type, methodName);

            return result;
        }
    }

    class Parent
    {
        public virtual void Print()
        {
            Console.WriteLine("In Parent.Print");
        }
    }

    [Aspect(typeof(TraceAspect))]
    class Child : Parent
    {
        public override void Print()
        {
            base.Print();

            Console.WriteLine("In Child.Print");
        }
    }

I'm a getting correct result when executing this code, though there are some redundant "override" attributes on generated methods which doesn't have corresponding virtual functions in the parent class. That should be fixed, but currently I have no idea how that can lead to the stack overflow issue.

As for base.GetType() == this.GetType() - this condition will always return true, regardless of AspectInjector, because GetType() returns the exact runtime type of the current instance. Since both "base" and "this" belong to the same instance, the call will return the same type in both cases.

Can you provide more details about .NET framework version and which runtime you are using (Microsoft .NET, Mono)?

from aspect-injector.

workerclass avatar workerclass commented on July 18, 2024

You need to add [Aspect(typeof(TraceAspect))] to Parent class too to get the exception. (Microsoft .NET 4.5.2)

from aspect-injector.

YuriyIvon avatar YuriyIvon commented on July 18, 2024

I have found the root cause, will publish a fix by tomorrow

from aspect-injector.

pamidur avatar pamidur commented on July 18, 2024

Fixed in 1.0.0-beta4

from aspect-injector.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.