/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

More work on roundtrip push support.

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
29
30
    """
30
31
 
31
32
    revision_id = None
32
33
 
33
34
    explicit_parent_ids = None
34
35
 
 
36
    verifiers = {}
 
37
 
35
38
    def __init__(self):
36
39
        self.properties = {}
37
40
 
49
52
            ret.revision_id = value.strip()
50
53
        elif key == "parent-ids":
51
54
            ret.explicit_parent_ids = tuple(value.strip().split(" "))
 
55
        elif key == "testament3-sha1":
 
56
            ret.verifiers["testament3-sha1"] = value.strip()
52
57
        elif key.startswith("property-"):
53
58
            ret.properties[key[len("property-"):]] = value[1:].rstrip("\n")
54
59
        else:
69
74
        lines.append("parent-ids: %s\n" % " ".join(metadata.explicit_parent_ids))
70
75
    for key in sorted(metadata.properties.keys()):
71
76
        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"])
72
80
    return "".join(lines)
73
81
 
74
82
 
88
96
    if not metadata:
89
97
        return message
90
98
    rt_data = generate_roundtripping_metadata(metadata, encoding)
 
99
    if not rt_data:
 
100
        return message
91
101
    assert type(rt_data) == str
92
102
    return message + "\n--BZR--\n" + rt_data
93
103
 
94
104
 
95
105
def serialize_fileid_map(file_ids):
 
106
    """Serialize a file id map."""
96
107
    lines = []
97
108
    for path in sorted(file_ids.keys()):
98
109
        lines.append("%s\0%s\n" % (path, file_ids[path]))
99
110
    return lines
100
111
 
101
112
 
102
 
def deserialize_fileid_map(file):
 
113
def deserialize_fileid_map(filetext):
 
114
    """Deserialize a file id map."""
103
115
    ret = {}
104
 
    f = StringIO(file)
 
116
    f = StringIO(filetext)
105
117
    lines = f.readlines()
106
118
    for l in lines:
107
119
        (path, file_id) = l.rstrip("\n").split("\0")