あなたの例では、無効であるということはある唯一のあなたとあなたのスカラーを開始するための予約文字を選んだので。を*
他の予約されていない文字に置き換えると(一部の仕様の一部として使用されることはほとんどないため、ASCII以外の文字を使用する傾向があります)、完全に正当なYAMLになります。
paths:
root: /path/to/root/
patha: ♦root♦ + a
pathb: ♦root♦ + b
pathc: ♦root♦ + c
これは、パーサーが使用する言語のマッピングの標準表現に読み込まれ、魔法のように何も拡張しません。
これを行うには、次のPythonプログラムのように、ローカルにデフォルトのオブジェクトタイプを使用します。
# coding: utf-8
from __future__ import print_function
import ruamel.yaml as yaml
class Paths:
def __init__(self):
self.d = {}
def __repr__(self):
return repr(self.d).replace('ordereddict', 'Paths')
@staticmethod
def __yaml_in__(loader, data):
result = Paths()
loader.construct_mapping(data, result.d)
return result
@staticmethod
def __yaml_out__(dumper, self):
return dumper.represent_mapping('!Paths', self.d)
def __getitem__(self, key):
res = self.d[key]
return self.expand(res)
def expand(self, res):
try:
before, rest = res.split(u'♦', 1)
kw, rest = rest.split(u'♦ +', 1)
rest = rest.lstrip() # strip any spaces after "+"
# the lookup will throw the correct keyerror if kw is not found
# recursive call expand() on the tail if there are multiple
# parts to replace
return before + self.d[kw] + self.expand(rest)
except ValueError:
return res
yaml_str = """\
paths: !Paths
root: /path/to/root/
patha: ♦root♦ + a
pathb: ♦root♦ + b
pathc: ♦root♦ + c
"""
loader = yaml.RoundTripLoader
loader.add_constructor('!Paths', Paths.__yaml_in__)
paths = yaml.load(yaml_str, Loader=yaml.RoundTripLoader)['paths']
for k in ['root', 'pathc']:
print(u'{} -> {}'.format(k, paths[k]))
印刷されます:
root -> /path/to/root/
pathc -> /path/to/root/c
拡張はオンザフライで行われ、ネストされた定義を処理しますが、無限再帰を呼び出さないように注意する必要があります。
ダンパーを指定すると、オンザフライで拡張されるため、ロードされたデータから元のYAMLをダンプできます。
dumper = yaml.RoundTripDumper
dumper.add_representer(Paths, Paths.__yaml_out__)
print(yaml.dump(paths, Dumper=dumper, allow_unicode=True))
これにより、マッピングキーの順序が変更されます。それが問題である場合self.d
、CommentedMap
(からインポートされたruamel.yaml.comments.py
)を作成する必要があります。