From: 7stud -- Newsgroups: comp.lang.ruby Subject: Re: Making a simple parser Date: Sat, 16 Apr 2011 22:31:41 -0500 Organization: Service de news de lacave.net Lines: 85 Message-ID: References: <87adbac7061a00a72e282c160ed42414@ruby-forum.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1303011833 47295 65.111.164.187 (17 Apr 2011 03:43:53 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Sun, 17 Apr 2011 03:43:53 +0000 (UTC) In-Reply-To: <87adbac7061a00a72e282c160ed42414@ruby-forum.com> X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 381739 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.stben.net!talisker.lacave.net!lacave.net!not-for-mail Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:3048 Felipe Balbi wrote in post #993252: > Hi all, > > To automate some of the tests I have to run, I decided to use ruby to > generate some script files on a particular (very simple) language based > on several possible input files. My first approach at this was to use > inherited method on a parent class (which I called InputFormat) to hold > all the children in an array. Then, different formats could become a > child class of InputFormat and return a known data format (I decided to > use an array of hashes because the output is really really simple) to > the output generator code. > > So the idea is something like: > > class InputFormat > @children = [] > > def initialize(input) > @input = input > end > > def parse > @children.each { |child| > child.parse(@input) if child.supported?(@input) > } > end > > def self.inherited(child) > @children << child > end > end > > class AInputFormat < InputFormat > def supported? > # check if we can parse this type of file > end > > def parse > # parse and generate array of hashes in known format > end > end > > > Then on the core file I would have something like: > > input = InputFormat.new(ARGV[0]) > input.parse > > As it turns out, this isn't working because AInputFormat will only > inherit from InputFormat at the time I actually use it, am I right ? > No: 1) class A def self.inherited(child) puts 'inherited called' end end class B < A end --output:-- inherited called 2) class A def self.inherited(child) puts 'inherited called' end end B = Class.new(A) --output:-- inherited called > possible input formats generate one output format) -- Posted via http://www.ruby-forum.com/.