如何从 XML 文件生成 xml_builder ruby​​ 代码

发布于 2024-10-03 11:28:40 字数 143 浏览 2 评论 0原文

我有一个 xml 文件。如何从该文件生成 xml_builder ruby​​ 代码?

注意 - 我在这里有点倒退(我不是生成 xml,而是生成 ruby​​ 代码)。

漂亮的格式化并不是什么大问题 - 我以后总是可以通过格式化程序运行它。

I've got an xml file. How could I generate xml_builder ruby code out of that file?

Notice - I'm sort of going backwards here (instead of generating xml, I'm generating ruby code).

Pretty formatting isn't a big deal - I can always run it through a formatter later.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

五里雾 2024-10-10 11:28:40

这有点不可能,就像你问“如何生成输出数字 3 的 Ruby 脚本”一样,答案可能是:

puts 3

puts 2+1

puts [1,2,3].count

等等。

所以,你的问题的一个答案是:

xml = File.read('your.xml')
puts "puts <<EOF\n#{xml}\nEOF"

无论如何,如果您只想生成基于 Builder 的脚本,该脚本仅生成您的 XML 节点对节点,我想使用 XSLT 是最简单的。这是一种专门为这种目的而构建的语言——转换 XML。

It's sort of impossible, not unlike if you asked "how to generate Ruby script that outputs number 3", for the answer could be:

puts 3

or

puts 2+1

or

puts [1,2,3].count

etc.

So, one answer to your question would be:

xml = File.read('your.xml')
puts "puts <<EOF\n#{xml}\nEOF"

Anyway, if you would just want to generate Builder based script which just generates your XML node-for-node, I guess it would be easiest using XSLT. That's a language constructed exactly for such purposes - transforming XMLs.

各自安好 2024-10-10 11:28:40

这是我最终想到的:

#!/usr/bin/env ruby

require "rexml/document"

filename = ARGV[0]

if filename
  f = File.read(filename)
else
  raise "Couldn't read file: `#{filename}'"
end

doc = REXML::Document.new(f)

def self.output_hash(attributes={})
  count = attributes.size
  str = ""
  index = 0

  attributes.each do |key, value|
    if index == 0
      str << " "
    end

    str << "#{key.inspect} => "
    str << "#{value.inspect}"

    if index + 1 < count
      str << ", "
    end

    index += 1
  end

  str
end

def self.make_xml_builder(doc, str = "")
  doc.each do |element|
    if element.respond_to?(:name)
      str << "xml.#{element.name}"
      str << "#{output_hash(element.attributes)}"

      if element.length > 0
        str << " do \n"

        make_xml_builder(element, str)
        str << "end\n"
      else
        str << "\n"
      end
    elsif element.class == REXML::Text
      string = element.to_s

      string.gsub!("\n", "")
      string.gsub!("\t", "")

      if !string.empty?
        str << "xml.text!(#{string.inspect})\n"
      end
    end
  end

  str
end

puts make_xml_builder(doc)

生成后,我在 Emacs 中对其进行格式化。

Here's what I eventually came up with:

#!/usr/bin/env ruby

require "rexml/document"

filename = ARGV[0]

if filename
  f = File.read(filename)
else
  raise "Couldn't read file: `#{filename}'"
end

doc = REXML::Document.new(f)

def self.output_hash(attributes={})
  count = attributes.size
  str = ""
  index = 0

  attributes.each do |key, value|
    if index == 0
      str << " "
    end

    str << "#{key.inspect} => "
    str << "#{value.inspect}"

    if index + 1 < count
      str << ", "
    end

    index += 1
  end

  str
end

def self.make_xml_builder(doc, str = "")
  doc.each do |element|
    if element.respond_to?(:name)
      str << "xml.#{element.name}"
      str << "#{output_hash(element.attributes)}"

      if element.length > 0
        str << " do \n"

        make_xml_builder(element, str)
        str << "end\n"
      else
        str << "\n"
      end
    elsif element.class == REXML::Text
      string = element.to_s

      string.gsub!("\n", "")
      string.gsub!("\t", "")

      if !string.empty?
        str << "xml.text!(#{string.inspect})\n"
      end
    end
  end

  str
end

puts make_xml_builder(doc)

After generating that, I then formatted it in Emacs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文