Как сравнить ключи в файлах yaml?
есть два файла интернационализации yaml ruby on rails. Один файл завершен, а другой-с отсутствующими ключами. Как я могу сравнить два файла yaml и увидеть отсутствующие ключи во втором файле? Есть ли инструменты для этого?
3 ответов
предполагая, что file1
является правильной версией и file2
- Это версия с отсутствующими ключами:
def compare_yaml_hash(cf1, cf2, context = [])
cf1.each do |key, value|
unless cf2.key?(key)
puts "Missing key : #{key} in path #{context.join(".")}"
next
end
value2 = cf2[key]
if (value.class != value2.class)
puts "Key value type mismatch : #{key} in path #{context.join(".")}"
next
end
if value.is_a?(Hash)
compare_yaml_hash(value, value2, (context + [key]))
next
end
if (value != value2)
puts "Key value mismatch : #{key} in path #{context.join(".")}"
end
end
end
теперь
compare_yaml_hash(YAML.load_file("file1"), YAML.load_file("file2"))
ограничение: текущая реализация должна быть расширена для поддержки массивов, если ваш файл YAML содержит массивы.
Я не мог найти быстрый инструмент для этого. Я решил написать собственный инструмент для этого.
вы можете установить его с cabal:
$ cabal update
$ cabal install yamlkeysdiff
тогда вы можете различать два файла таким образом:
$ yamlkeysdiff file1.yml file2.yml
> missing key in file2
< missing key in file1
вы также можете сравнить два подмножества файлов:
$ yamlkeysdiff "file1.yml#key:subkey" "file2.yml#otherkey"
Он ведет себя точно так же, как diff
, вы можете сделать это:
$ yamlkeysdiff file1.yml file2.yml && echo Is the same || echo Is different
Я хотел извлечь diff, чтобы иметь что-то для работы, и фрагмент здесь просто печатает материал. Поэтому моя версия возвращает хэш с diff. Это структура отражает исходные хэши, но значения являются описаниями различий.
def deep_hash_diff(hash1, hash2, hash1_name = 'Hash 1', hash2_name = 'Hash 2')
diff = {}
(hash1.keys - hash2.keys).each do |key1|
diff[key1] = "Present in #{hash1_name}, but not in #{hash2_name}"
end
(hash2.keys - hash1.keys).each do |key2|
diff[key2] = "Present in #{hash2_name}, but not in #{hash1_name}"
end
(hash1.keys & hash2.keys).each do |common_key|
if hash1[common_key].is_a?(Hash)
if hash2[common_key].is_a?(Hash)
res = deep_hash_diff(hash1[common_key], hash2[common_key], hash1_name, hash2_name)
diff[common_key] = res if res.present?
else
diff[common_key] = "#{hash1_name} has nested hash, but #{hash2_name} just value #{hash2[common_key]}"
end
elsif hash2[common_key].is_a?(Hash)
diff[common_key] = "#{hash2_name} has nested hash, but #{hash1_name} just value #{hash1[common_key]}"
end
end
diff
end
затем я использовал его в значительной степени как:
res = deep_hash_diff(YAML.load_file("en.yml"), YAML.load_file("spa.yml"), 'English translation', 'Spanish translation')
puts(res.to_yaml) # for nicer output