/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to roundtrip.py

Special-case NULL_REVISION when looking for Git shas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
class BzrGitRevisionMetadata(object):
24
24
    """Metadata for a Bazaar revision roundtripped into Git.
25
 
 
 
25
    
26
26
    :ivar revision_id: Revision id, as string
27
27
    :ivar properties: Revision properties, as dictionary
28
28
    :ivar explicit_parent_ids: Parent ids (needed if there are ghosts)
29
 
    :ivar verifiers: Verifier information
30
29
    """
31
30
 
32
31
    revision_id = None
33
32
 
34
33
    explicit_parent_ids = None
35
34
 
36
 
    verifiers = {}
37
 
 
38
35
    def __init__(self):
39
36
        self.properties = {}
40
37
 
52
49
            ret.revision_id = value.strip()
53
50
        elif key == "parent-ids":
54
51
            ret.explicit_parent_ids = tuple(value.strip().split(" "))
55
 
        elif key == "testament3-sha1":
56
 
            ret.verifiers["testament3-sha1"] = value.strip()
57
52
        elif key.startswith("property-"):
58
53
            ret.properties[key[len("property-"):]] = value[1:].rstrip("\n")
59
54
        else:
74
69
        lines.append("parent-ids: %s\n" % " ".join(metadata.explicit_parent_ids))
75
70
    for key in sorted(metadata.properties.keys()):
76
71
        lines.append("property-%s: %s\n" % (key.encode(encoding), metadata.properties[key].encode(encoding)))
77
 
    if "testament3-sha1" in metadata.verifiers:
78
 
        lines.append("testament3-sha1: %s\n" %
79
 
                     metadata.verifiers["testament3-sha1"])
80
72
    return "".join(lines)
81
73
 
82
74
 
96
88
    if not metadata:
97
89
        return message
98
90
    rt_data = generate_roundtripping_metadata(metadata, encoding)
99
 
    if not rt_data:
100
 
        return message
101
91
    assert type(rt_data) == str
102
92
    return message + "\n--BZR--\n" + rt_data
103
93
 
104
94
 
105
95
def serialize_fileid_map(file_ids):
106
 
    """Serialize a file id map."""
107
96
    lines = []
108
97
    for path in sorted(file_ids.keys()):
109
98
        lines.append("%s\0%s\n" % (path, file_ids[path]))
110
99
    return lines
111
100
 
112
101
 
113
 
def deserialize_fileid_map(filetext):
114
 
    """Deserialize a file id map."""
 
102
def deserialize_fileid_map(file):
115
103
    ret = {}
116
 
    f = StringIO(filetext)
 
104
    f = StringIO(file)
117
105
    lines = f.readlines()
118
106
    for l in lines:
119
107
        (path, file_id) = l.rstrip("\n").split("\0")