metaprograming in ruby
play

Metaprograming in Ruby Brian Sam-Bodden What s this all about? - PowerPoint PPT Presentation

Metaprograming in Ruby Brian Sam-Bodden What s this all about? Well learn... mainly about Rubys Meta-programming power about a language doesnt treat you like a moron what happens when dynamic meets object-oriented


  1. Metaprograming in Ruby Brian Sam-Bodden

  2. What ’ s this all about? � We’ll learn... � mainly about Ruby’s Meta-programming power � about a language doesn’t treat you like a moron � what happens when dynamic meets object-oriented � why Ruby is superb for building frameworks � what happens when meta-programming � ...meets someone with too much free-time

  3. Ruby

  4. Ruby Ideals: Programming should be fun! The language should treat you like a responsible adult! “I believe people want to express themselves when they program. They don’t want to fight with the language. Programming languages must feel natural to programmers.” Matz

  5. Ruby

  6. Ruby is...

  7. � Object-Oriented Ruby is...

  8. � Object-Oriented � General Purpose Ruby is...

  9. � Object-Oriented � General Purpose Ruby � Interpreted is...

  10. � Object-Oriented � General Purpose Ruby � Interpreted is... � Dynamic

  11. � Object-Oriented � General Purpose Ruby � Interpreted is... � Dynamic � Garbage-collected

  12. � Object-Oriented � General Purpose Ruby � Interpreted is... � Reflective � Dynamic � Garbage-collected

  13. � Object-Oriented � General Purpose Ruby � Multi-paradigm � Interpreted is... � Reflective � Dynamic � Garbage-collected

  14. � Object-Oriented � Elegant � General Purpose Ruby � Multi-paradigm � Interpreted is... � Reflective � Dynamic � Garbage-collected

  15. Without Ruby there would be no Rails Ruby’s meta-programing is the key feature that makes Rails magical

  16. Open Classes

  17. Say we have an Array like:

  18. Say we have an Array like: [1,2,3,4,5]

  19. Say we have an Array like: [1,2,3,4,5] and we want to sum of all of its elements

  20. Let’s try something like:

  21. Let’s try something like: [1,2,3,4,5].sum

  22. Let’s try something like: [1,2,3,4,5].sum

  23. Let’s try something like: [1,2,3,4,5].sum Rats! Doesn’t work in Ruby

  24. Let’s try something like: [1,2,3,4,5].sum Rats! Doesn’t work in Ruby … yet!

  25. Ruby classes are

  26. Ruby classes are

  27. Ruby classes are We can teach the Array class a new behavior

  28. Ruby classes are We can teach the Array class a new behavior

  29. Let’s try again!

  30. Let’s try again!

  31. Let’s try again! All you need to do is load the file containing the enhancements

  32. Code as Data Bend at will your code should

  33. When code can be manipulated as data a whole world of possibilities opens In Ruby you can evaluate the contents of a string

  34. Code that invokes code, that invokes code

  35. Code that invokes code, that invokes code

  36. Code that invokes code, that invokes code There you go, there you go

  37. Ruby provides the eval family of methods for runtime execution of code stored in strings

  38. Ruby provides the eval family of methods for runtime execution of code stored in strings

  39. Ruby provides the eval family of methods for runtime execution of code stored in strings eval will evaluate any string

  40. instance_eval can evaluate a string or a code block

  41. instance_eval can evaluate a string or a code block

  42. instance_eval can evaluate a string or a code block in the context of the receiver

  43. class_eval can evaluate a string or a code block in the context of the class or module it is called on

  44. class_eval can evaluate a string or a code block in the context of the class or module it is called on

  45. In Ruby we try to think about sending a message to an object rather than calling a method on an object

  46. In Ruby we try to think about sending a message to an object rather than calling a method on an object In simple cases (above) syntactic sugar hides it, but we can use it in interesting ways...

  47. Meta- programming

  48. Meta-programming ...is about programs that write programs ...it’s a superb tool for building frameworks ...it’s the key ingredient for building domain-specific languages

  49. Ruby’s is a great vehicle for meta-programming because it is: dynamic and reflexive open and malleable code is data, data is code clean syntax programming event model

  50. Ruby on Rails ...uses meta-programming to bring the language closer to the problem ...is a collection of domain-specific languages (DSL) for building web applications

  51. Singleton Class

  52. In Ruby you can enhance a particular instance of a class Ruby uses a proxy class known as the singleton class Meta-class : The singleton for Class objects

  53. class_eval indirectly uses the meta-class adding a singleton method to the class

  54. Rails relies heavily on Ruby’s ability to dynamically enhance a class

  55. Rails relies heavily on Ruby’s ability to dynamically enhance a class

  56. Shortcuts such as define_method exist to make life easier

  57. Accessing the singleton meta-class explicitly

  58. Child classes get enhanced with class methods

  59. Inheritance the Ruby Way

  60. Many Ruby DSLs create class methods on subclasses using the meta-class (singleton class)

  61. Rails uses this technique in ActiveRecord

  62. A module with a “Base” class

  63. Methods get added to our classes with simple declarations Getting closer to a DSL!

  64. Now our class has a new set of class methods

  65. Now our class has a new set of class methods

  66. AOP the Ruby Way

  67. With alias_method you can wrap an existing method...

  68. ...effectively intercepting any calls and injecting any desired behavior

  69. ...effectively intercepting any calls and injecting any desired behavior

  70. Meta-Programming Events

  71. Included Hook Ruby has a rich event model associated with static and dynamic changes of the code

  72. Method Missing

  73. Ruby provides several hook methods that can be used to created custom behaviors method_missing method_added method_removed

  74. Ruby’s Markup Builder is an example of what can be achieved with method missing

  75. Let’s implement the greeter example using method_missing

  76. greeter using method_missing

  77. greeter using method_missing

  78. Trellis ...or what happens when you have too much time in between consulting gigs and your friends no longer call you

  79. I was bored... In the Ruby world I’ve worked with Rails and Merb ...thinking of web apps in terms of request & response meanwhile... in the Java world I was working with Tapestry and Wicket ...thinking about Pages, Components and Events

  80. Started to hack to see what it would be to build something like Tapestry/Wicket in Ruby ...actually it all started as an learning exercise ...part of a conversation among friends about the need for IoC and AOP frameworks for dynamic languages ...but then I kept going ...somehow I ended building component-oriented web framework in Ruby

  81. You might be asking yourself, but why?

  82. Why not?

  83. My goals: � Magic like Rails; less code more action � Small like Camping... a micro-framework � Components like Tapestry/Wicket � Clean HTML templates... � ...but also programatic HTML generation � Non-managed components, no pooling

  84. The big picture: { declares pages used Trellis Application declares a home page dispatches request to pages has } { defines a template provides reusable logic has provides event handlers Pages Components responds to events passes events to the can be stateless (tags) components or stateful

  85. The simplest Trellis App, one Application and one Page The Template The Code

  86. What did I use to put this thing together... � A boat load of meta-programming � Rack ...HTTP the Ruby way � Radius ...XML tags for the templates � Builder ...for building HTML/XML � Hpricot, REXML ...parsing searching HTML/XML � Paginator ...for duh, pagination � Parts of Rails ...so far ActiveSupport (Inflectors)

  87. Let’s do some code spelunking on the Trellis codebase... yes, there are some things that I’m not proud of but... ...this is pre-alpha, unreleased v0.000001 ;-)

  88. Some of the example applications that I’ve put together in order of complexity � hilo � stateful_counters � guest_book � flickr � hangman � simple_blog � yui � crud_components

  89. What have we learned?

  90. There is more to Ruby than Rails ! Building a Framework ? Give Ruby a try ! Build the language up towards the problem

  91. Resources Rack : http://rack.rubyforge.org Radius : http://radius.rubyforge.org Hpricot : http://code.whytheluckystiff.net/hpricot REXML : http://www.germane-software.com/software/rexml Builder : http://builder.rubyforge.org Paginator : http://paginator.rubyforge.org YUI (Yahoo! UI Library): http://open.yahoo.com/yui Trellis (Not Released Yet) Trellis @ RubyForge: http://rubyforge.org/projects/trellis Trellis Website: http://www.trellisframework.org

  92. www.integrallis.com

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend