CSC/ECE 517 Fall 2010/ch3 3d mr
Aspect-oriented programming and AspectR
AspectR is a very useful Ruby module, but it is not easy to find documentation on it that is appropriate for students taking this class. Find, or construct, documentation that explains what it does without presuming previous knowledge of AspectJ, that describes many or all methods of the module and how they work. Also find or produce an easy-to-understand example that does not involve logging. Show how the example would be implemented in AspectJ and AspectR.
Overview
Motivation
Methods
add_advice (AspectR::Aspect)
all_classes (AspectR)
disable_advice_dispatching (AspectR::Aspect)
dispatch? (AspectR::Aspect)
get_methods (AspectR::Aspect)
new (AspectR::Aspect)
prepare (AspectR::Aspect)
remove_advice (AspectR::Aspect)
unwrap (AspectR::Aspect)
wrap (AspectR::Aspect)
wrap_classes (AspectR)
wrap_with_code (AspectR::Aspect)
wrappable? (AspectR::Aspect)
Example
AspectR
class User
attr_accessor :name
def initialize name
@name = name
end
end
class UserObserver < Aspect
def new_name(method, object, exitstatus, *args)
puts "method: #{method}"
puts "New name: #{args[0]}"
end
end
UserObserver.new.wrap(User, :new_name, nil, /name=/)
UserObserver.new.wrap(User, :new_name, nil, /name=/)
bob = User.new "bob" ted = User.new "ted" bob.name = "fred" ted.name = "ed"