-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathadvise.js
106 lines (103 loc) · 2.38 KB
/
advise.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
(function(define){
"use strict";
define(["./dcl"], function(dcl){
var Node = dcl(null, {
//declaredClass: "dcl.Node",
constructor: function(){
this.nb = this.pb = this.na = this.pa = this.nf = this.pf = this;
},
a: function(b, a, f, o){
var t = new Node;
t.p = this;
t.b = b;
this._a("b", t);
t.a = a;
this._a("a", t);
t.f = f;
this._a("f", t, o);
t.o = o;
if(o){ t.f = o(t.pf.f); }
return t;
},
_a: function(topic, node, flag){
if(node[topic] || flag){
var n = "n" + topic, p = "p" + topic;
(node[p] = this[p])[n] = (node[n] = this)[p] = node;
}
},
r: function(node){
this._r("b", node);
this._r("a", node);
this._r("f", node);
},
_r: function(topic, node){
var n = "n" + topic, p = "p" + topic;
node[n][p] = node[p];
node[p][n] = node[n];
},
destroy: function(){
var f = this.pf.f, t = this.nf, p = this.p;
this.r(this);
if(t !== this){
for(; t !== p; f = t.f, t = t.nf){
if(t.o){
t.f = t.o(f);
}
}
}
}
});
Node.prototype.unadvise = Node.prototype.destroy; // alias
function makeAOPStub(a){
var f = function(){
var p, r;
// running the before chain
for(p = a.pb; p !== a; p = p.pb){
p.b.apply(this, arguments);
}
// running the around chain
try{
if(a.pf !== a){ r = a.pf.f.apply(this, arguments); }
}catch(e){
r = e;
}
// running the after chain
for(p = a.na; p !== a; p = p.na){
p.a.call(this, r);
}
if(r instanceof Error){
throw r;
}
};
f.adviceNode = a;
return f;
}
return function advise(instance, name, advice){
var f = instance[name], a;
if(f && f.adviceNode && f.adviceNode instanceof Node){
a = f.adviceNode;
}else{
a = new Node;
if(f && f.advices){
f = f.advices;
a.a(f.b, f.a, f.f);
}else{
a.a(0, 0, f);
}
instance[name] = makeAOPStub(a);
}
if(advice instanceof Function){ advice = advice(instance, name); }
return a.a(advice.before, advice.after, 0, advice.around);
};
});
})(typeof define != "undefined" ? define : function(_, f){
if(typeof module != "undefined"){
module.exports = f(require("./dcl"));
}else{
if(typeof dcl != "undefined"){
advise = f(dcl); // describing a global
}else{
throw Error("Include dcl-mini.js and dcl.js before advise.js");
}
}
});