summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/common/candy_text.py
blob: 818ae767bdaa12eb8c25408d2078a0643bd28dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
##############################################################################
# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################


import sys

THIS = sys.modules[__name__]
__id_max = 100
__style_max = 10
dom = {"chapter", "section", "unit"}
element = {"title", "table", "figure", "paragraph", "plot", "chart", "space"}

nodes = dom | element
for _node in nodes:
    setattr(THIS, _node, _node)


def tuple2text(sn, node, style):
    assert sn in range(__id_max)
    assert style in range(__style_max)
    assert node in nodes
    return "%02d##%s#%d" % (sn, node, style)


def dict2text(info):
    assert "sn" in info and info["sn"] in range(__id_max)
    assert "style" in info and info["style"] in range(__style_max)
    assert "node" in info and info["node"] in nodes
    return "%02d##%s#%d" % (info["sn"], info["node"], info["style"])


def text2dict(candy):
    tmp = candy.replace("##","#").split("#")
    result = {
        "sn": int(tmp[0]),
        "node": tmp[1],
        "style": int(tmp[2])
    }
    assert result["sn"] in range(__id_max)
    assert result["style"] in range(__style_max)
    assert result["node"] in nodes
    return result


def text2tuple(candy):
    tmp = candy.replace("##","#").split("#")

    sn = int(tmp[0])
    node = tmp[1]
    style = int(tmp[2])

    assert sn in range(__id_max)
    assert style in range(__style_max)
    assert node in nodes
    return sn, node, style