~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/weave.py

  • Committer: Martin Pool
  • Date: 2005-07-11 23:09:49 UTC
  • Revision ID: mbp@sourcefrog.net-20050711230949-25ce31d5fd4f80b9
- update todos for weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
# way if it's done in a different order?  That's a pretty desirable
28
28
# property.
29
29
 
30
 
# TODO: How to write these to disk?  One option is cPickle, which
31
 
# would be fast but less friendly to C, and perhaps not portable.  Another is
32
 
 
33
30
# TODO: Nothing here so far assumes the lines are really \n newlines,
34
31
# rather than being split up in some other way.  We could accomodate
35
32
# binaries, perhaps by naively splitting on \n or perhaps using
36
33
# something like a rolling checksum.
37
34
 
38
 
# TODO: Perhaps track SHA-1 in the header for protection?  This would
39
 
# be redundant with it being stored in the inventory, but perhaps
40
 
# usefully so?
41
 
 
42
35
# TODO: Track version names as well as indexes. 
43
36
 
44
 
# TODO: Probably do transitive expansion when specifying parents?
45
 
 
46
 
# TODO: Separate out some code to read and write weaves.
47
 
 
48
37
# TODO: End marker for each version so we can stop reading?
49
38
 
50
39
# TODO: Check that no insertion occurs inside a deletion that was
51
40
# active in the version of the insertion.
52
41
 
53
 
# TODO: Perhaps a special slower check() method that verifies more
54
 
# nesting constraints and the MD5 of each version?
 
42
# TODO: In addition to the SHA-1 check, perhaps have some code that
 
43
# checks structural constraints of the weave: ie that insertions are
 
44
# properly nested, that there is no text outside of an insertion, that
 
45
# insertions or deletions are not repeated, etc.
55
46
 
56
47
 
57
48