我想在XML中使用ruby和其他应用程序进行通信。我已经为这种通信定义了一个模式,我正在寻找从Ruby中的数据转换到XML的最佳方法,反之亦然。
我有一个XML文档my_document.xml
:
<myDocument>
<number>1</number>
<distance units="km">20</distance>
</myDocument>
哪个符合架构my_document_type.xsd
(我不打算在这里写出来)。
现在我喜欢从XSD自动生成以下类 - 这是合理的还是可行的?
# Represents a document created in the form of my_document_type.xsd
class MyDocument
attr_accessor :number, :distance, :distance_units
# Allows me to create this object from data in Ruby
def initialize(data)
@number = data['number']
@distance = data['distance']
@distance_units = data['distance_units']
end
# Takes an XML document of the correct form my_document.xml and populates internal systems
def self.from_xml(xml)
# Reads the XML and populates:
doc = ALibrary.load(xml)
@number = doc.xpath('/number').text()
@distance = doc.xpath('/distance').text()
@distance_units = doc.xpath('/distance').attr('units') # Or whatever
end
def to_xml
# Jiggery pokery
end
end
现在我可以做到:
require 'awesomelibrary'
awesome_class = AwesomeLibrary.load_from_xsd('my_document_type.xsd')
doc = awesome_class.from_xml('my_document.xml')
p doc.distance # => 20
p doc.distance_units # => 'km'
我也可以
doc = awesome_class.new('number' => 10, 'distance_units' => 'inches', 'distance' => '5')
p doc.to_xml
得到:
<myDocument>
<number>10</number>
<distance units="inches">5</distance>
</myDocument>
这听起来对我来说功能相当强烈,所以我不期待一个完整的答案,但是对于已经这样做的库的任何提示(我已经尝试过使用RXSD,但我无法弄清楚如何获得要做到这一点)或任何可行性的想法等等。
提前致谢!