easy AOP right now using evil.rb

E

Eric Mahurin

Here is a pure ruby soluntion to doing AOP. You just need one
little method from evil.rb: Object#become. sub-classing and
then having the parent "become" the child is very similar to
the proposed "cut" (not sure about some of the management
facilities). Anyways, as soon as you require 'evil.rb' you
pretty much have it. You can get evil.rb here:

http://rubyforge.org/cgi-bin/viewcvs.cgi/evil/lib/evil.rb?cvsroot=3Devil

Here is a demo using this to get AOP:

require 'evil'

class A
def foo;"A";end
end

a =3D A.new
a.foo # =3D> "A"

# first level "cut"
class B < A.clone # need a clone to prevent a loop
def foo;"["+super+"]";end
end
A.become(B) # replace parent with subclass

a.foo # =3D> "[A]"

# second level "cut"
class C < A.clone
def foo;"{"+super+"}";end
end
A.become(C)

a.foo # =3D> "{[A]}"

# restore the original functionality
A.become(B.superclass)

a.foo # =3D> "A"

module Brackets
def foo;"["+super+"]";end
end

# "preclude"-like functionality
class D < A.clone
include Brackets
end
A.become(D)

a.foo # =3D> "[A]"


Of course if we had this, it would be better to have a safer
Class#replace and that be able to break circular loops
automatically instead of having to use #clone to break the loop
manually.




=09
__________________________________=20
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com
 
P

Peter Vanbroekhoven

Here is a pure ruby soluntion to doing AOP. You just need one
little method from evil.rb: Object#become. sub-classing and
then having the parent "become" the child is very similar to
the proposed "cut" (not sure about some of the management
facilities). Anyways, as soon as you require 'evil.rb' you
pretty much have it. You can get evil.rb here:

http://rubyforge.org/cgi-bin/viewcvs.cgi/evil/lib/evil.rb?cvsroot=evil

Here is a demo using this to get AOP:

require 'evil'

class A
def foo;"A";end
end

a = A.new
a.foo # => "A"

# first level "cut"
class B < A.clone # need a clone to prevent a loop
def foo;"["+super+"]";end
end
A.become(B) # replace parent with subclass

a.foo # => "[A]"

# second level "cut"
class C < A.clone
def foo;"{"+super+"}";end
end
A.become(C)

a.foo # => "{[A]}"

# restore the original functionality
A.become(B.superclass)

a.foo # => "A"

module Brackets
def foo;"["+super+"]";end
end

# "preclude"-like functionality
class D < A.clone
include Brackets
end
A.become(D)

a.foo # => "[A]"


Of course if we had this, it would be better to have a safer
Class#replace and that be able to break circular loops
automatically instead of having to use #clone to break the loop
manually.

Ah yes, this is what I expected.

We have been there you know. There's a reason why we've got a C version of
Florian's Object#become method on the Suby page. The problem with this
version is that A has become B. This means that the code that previously
defined, redefined and undefined methods in the original A, does that in B
now. The problem is that it is not possible to add a wrapper class this
way without breaking existing code, or at least without that code messing
with your advice. The behavior is almost the same, except that code needs
to be adapted to use these wrapper classes, and the basic idea behind AOP
is that that should *not* be so. We used this as an early test, but in the
end it had to go because it is obtrusive.

I'm sorry, but we're two years ahead of you you know.

Peter
 
T

Trans

I'm sorry, but we're two years ahead of you you know.

Nonetheless. I am impressed that you thought of that Eric. You must
really be giving this a lot of thought. Give cuts some more careful
consideration. I am sure will ultimately come to understand why we
believe in them so.

T.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top