简体   繁体   中英

JavaScript Decorator pattern. Error: Maximum call stack size exceeded

Here is a working example of Decorator pattern:

class Dummy {
    run() {
        console.log('run');
    }
}

function get() {
    let instance = new Dummy();
    instance.run = ((func) => {
        return function() {
            func();
            console.log('decorator run');    
        }
    })(instance.run);

    return instance;
}

let obj = get();
obj.run();

However, if we change the get function to:

function get() {
    let instance = new Dummy();
    instance.run = function() {
        instance.run();
        console.log('decorator run');  
    }       

    return instance;
}

we will be faced with an error: VM68418:6 Uncaught RangeError: Maximum call stack size exceeded at Dummy.instance.run (:6:32)

Why is this happening? The instance.run is still a wrapper around the original method, without 'useless' additional self executed function.

I will be glad to hear the answer

instance.run()在其自己的定义中被调用,因此它导致永不结束的递归,因此导致超出最大调用堆栈大小的错误。

I believe it's dangerous to get tangled in made-up things like "decorators", "decorator pattern", or even "patterns". At the core of your issue, you have a function whose behaviour you wish to alter, or decorate ...

 const original = x => x * x const decorate = f => x => f (x) + 1 const decorated = decorate (original) console.log (original (4)) // 16 4 * 4 console.log (decorated (4)) // 17 (4 * 4) + 1 

So with decorate , we're capturing this incrementing + 1 effect, but notice we were forced to decide when to increment; before or after the original function was called. Maybe in a different variation, we want to "decorate" using this +1 effect but at the opposite time.

Below, firstAdd1 is a "decorator" that increments before the original function is called. thenAdd1 is a decorator that increments after the original function is called.

 const original = x => x * x const thenAdd1 = f => x => f (x) + 1 const firstAdd1 = f => x => f (x + 1) const decoratedA = thenAdd1 (original) const decoratedB = firstAdd1 (original) console.log (original (4)) // 16 4 * 4 console.log (decoratedA (4)) // 17 (4 * 4) + 1 console.log (decoratedB (4)) // 25 (4 + 1) * (4 + 1) 

But now we've sort of duplicated the +1 effect. "Decorating" as it turns out, is just function composition . Realizing this, we remove pain and suffering from our program.

Below, we capture our +1 effect in a pure function, add1 , and then simply compose it before or after a given f

const add1 = x =>
  x + 1

const compose = (f, g) =>
  x => f (g (x))

const thenAdd1 = f =>
  compose (add1, f)

const firstAdd1 = f =>
  compose (f, add1)

No objects were harmed in the making of this program

 const original = x => x * x const add1 = x => x + 1 const compose = (f, g) => x => f (g (x)) const thenAdd1 = f => compose (add1, f) const firstAdd1 = f => compose (f, add1) const decoratedA = thenAdd1 (original) const decoratedB = firstAdd1 (original) console.log (original (4)) // 16 4 * 4 console.log (decoratedA (4)) // 17 (4 * 4) + 1 console.log (decoratedB (4)) // 25 (4 + 1) * (4 + 1) 

Of course function composition is massively powerful. We can modify compose to accept an arbitrary number of functions. Now we can sequence any number of effects in any order of our choosing. Here, we also skip the intermediate creation of "decorators" and instead define "decorated" functions directly in terms of compose

 const original = x => x * x const add1 = x => x + 1 const compose = (f, ...fs) => x => f === undefined ? x : f (compose (...fs) (x)) const decoratedA = compose (add1, original, add1) const decoratedB = compose (add1, add1, add1, original, original) const decoratedC = compose (decoratedB, decoratedA) console.log (original (4)) // 16 4 * 4 console.log (decoratedA (4)) // 26 ((4 + 1) * (4 + 1)) + 1 console.log (decoratedB (4)) // 259 ((4 * 4) * (4 * 4)) + 1 + 1 + 1 console.log (decoratedC (4)) // 456979 (((((4 + 1) * (4 + 1)) + 1) * (((4 + 1) * (4 + 1)) + 1)) * ((((4 + 1) * (4 + 1)) + 1) * (((4 + 1) * (4 + 1)) + 1))) + 1 + 1 + 1 

Yep, because compose returns a new function, we can even make compositions of other compositions. Even compose side-effecting functions like console.log using effect which guarantees the output matches the input

Below logger allows us to visualize any particular function's impact by logging the result to the console before returning the final value – to this end, you could say logger (f) decorates f by adding a logging behaviour – but it's just classical function composition

 const square = x => x * x const add1 = x => x + 1 const compose = (f, ...fs) => x => f === undefined ? x : f (compose (...fs) (x)) const effect = f => x => (f (x), x) const logger = f => compose (effect (console.log), f) const main = compose (logger (add1), logger (square)) console.log (main (4)) // 16 (console.log side effect) // 17 (console.log side effect) // => 17 (return value) 

If you're writing OO-style with classes and methods, it doesn't matter; compose is still your go-to

 const compose = (f, ...fs) => x => f === undefined ? x : f (compose (...fs) (x)) const effect = f => x => (f (x), x) const addExcitement = x => x + '!' const capitalize = x => x.toUpperCase () class Person { constructor (name) { this.name = name } greet () { return `I am ${this.name}` } } // "decorator" const Shouter = effect (m => m.greet = compose (addExcitement, capitalize, m.greet.bind(m))) const p = new Person ('me') console.log (p.greet ()) // I am me Shouter (p) console.log (p.greet ()) // I AM ME! 

In the first example, the current value of instance.run is retained in the func closed variable, then instance.run is assigned a new value::

instance.run = <old function>
func = instance.run
instance.run = <new function>
// func === <old function> here

So when instance.run invokes func , it essentially invokes <old function> .

You can do the same without IIFE, by simply closing func in get() :

 class Dummy { run() { console.log('run'); } } function get() { let instance = new Dummy(); let func = instance.run; instance.run = function() { func(); console.log('decorator run'); } return instance; } let obj = get(); obj.run(); 

In the second snippet, instance.run old value is lost and it effectively invokes itself causing a stack overflow.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM