# Saxy
[![Build Status](https://secure.travis-ci.org/monterail/saxy.png)](http://travis-ci.org/monterail/saxy)
Memory-efficient XML parser. Finds object definitions in XML and translates them into Ruby objects.
It uses SAX parser under the hood, which means that it doesn't load the whole XML file into memory. It goes once though it and yields objects along the way.
## Installation
Add this line to your application's Gemfile:
gem 'saxy'
And then execute:
$ bundle
Or install it yourself as:
$ gem install saxy
## Usage
Assume the XML file:
Amazon
Kindle - The world's best-selling e-reader.
http://amazon.com/kindle_thumb.jpg
Kindle Touch - Simple-to-use touchscreen with built-in WIFI.
http://amazon.com/kindle_touch_thumb.jpg
You instantiate the parser by passing path to XML file and object-identyfing tag name as it's arguments.
The following will parse the XML, find product definitions (inside `` and `` tags), build `OpenStruct`s and yield them inside the block:
Saxy.parse("filename.xml", "product").each do |product|
puts product.name
puts product.images.thumb
end
# =>
Kindle - The world's best-selling e-reader.
http://amazon.com/kindle_thumb.jpg
Kindle Touch - Simple-to-use touchscreen with built-in WIFI.
http://amazon.com/kindle_touch_thumb.jpg
Saxy supports Enumerable, so you can use it's goodies to your comfort without building intermediate arrays:
Saxy.parse("filename.xml", "product").map do |object|
# map OpenStructs to ActiveRecord instances, etc.
end
You can also grab an Enumerator for external use (e.g. lazy evaluation, etc.):
enumerator = Saxy.parse("filename.xml", "product").each
Multiple definitions of child objects are grouped in arrays:
webstore = Saxy.parse("filename.xml", "webstore").first
webstore.products.product.size # => 2
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request