我正在尝试将CSON(CoffeeScript Object Notation)读入Ruby。
我正在寻找类似于data = JSON.parse(file)
的东西,用于JSON文件。
file = File.read(filename)
data = CSON.parse(file) # does not exist - would like to have
我考虑从Ruby调用CoffeeScript和JavaScript,但它感觉过于复杂,就像重新发明轮子一样。此外,不应执行数据文件中的代码。
如何以简单的方式将CSON读入Ruby对象?
答案 0 :(得分:1)
这就是我想出的。这对我正在处理的数据就足够了。主要工作是使用YAML解析器Psych(https://github.com/ruby/psych)完成的。数组,散列和一些多行文本需要特殊处理。
module CSON
def load_file(fname)
load_string File.read fname
end
def remove_indent(data)
out = ""
data.each_line do |line|
out += line.sub /^\s\s/,""
end
out
end
def parse_array(data)
data.gsub! /\n/, ","
data.gsub! /([\[\{]),/, '\1'
data.gsub! /,([\]\}])/, '\1'
YAML.load data
end
def load_string(data)
hashed = {}
data.gsub! /^(\w+):\s+(\[.*?\])/mu do # find arrays
key = Regexp.last_match[1]
value = parse_array Regexp.last_match[2]
hashed[key] = value
""
end
data.gsub! /(\w+):\s+\'\'\'\s*\n(.*?)\'\'\'/mu do # find heredocs
hashed[Regexp.last_match[1]] = remove_indent Regexp.last_match[2]
""
end
hashed.merge YAML.load data
end
end
当应用于更复杂的.cson文件时,此解决方案可能会失败。我很高兴看到有人有更优雅的答案!