/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
198 by mbp at sourcefrog
- experimental compressed Revfile support
1
#! /usr/bin/env python
2
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
3
# (C) 2005 Canonical Ltd
198 by mbp at sourcefrog
- experimental compressed Revfile support
4
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
5
# based on an idea by Matt Mackall
198 by mbp at sourcefrog
- experimental compressed Revfile support
6
# modified to squish into bzr by Martin Pool
7
8
# This program is free software; you can redistribute it and/or modify
9
# it under the terms of the GNU General Public License as published by
10
# the Free Software Foundation; either version 2 of the License, or
11
# (at your option) any later version.
12
13
# This program is distributed in the hope that it will be useful,
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
# GNU General Public License for more details.
17
18
# You should have received a copy of the GNU General Public License
19
# along with this program; if not, write to the Free Software
20
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21
22
23
"""Packed file revision storage.
24
25
A Revfile holds the text history of a particular source file, such
26
as Makefile.  It can represent a tree of text versions for that
27
file, allowing for microbranches within a single repository.
28
29
This is stored on disk as two files: an index file, and a data file.
30
The index file is short and always read completely into memory; the
31
data file is much longer and only the relevant bits of it,
32
identified by the index file, need to be read.
33
34
Each text version is identified by the SHA-1 of the full text of
35
that version.  It also has a sequence number within the file.
36
37
The index file has a short header and then a sequence of fixed-length
38
records:
39
40
* byte[20]    SHA-1 of text (as binary, not hex)
41
* uint32      sequence number this is based on, or -1 for full text
42
* uint32      flags: 1=zlib compressed
43
* uint32      offset in text file of start
44
* uint32      length of compressed delta in text file
45
* uint32[3]   reserved
46
47
total 48 bytes.
48
199 by mbp at sourcefrog
- use -1 for no_base in revfile
49
The header is also 48 bytes for tidyness and easy calculation.
198 by mbp at sourcefrog
- experimental compressed Revfile support
50
51
Both the index and the text are only ever appended to; a consequence
52
is that sequence numbers are stable references.  But not every
53
repository in the world will assign the same sequence numbers,
54
therefore the SHA-1 is the only universally unique reference.
55
56
This is meant to scale to hold 100,000 revisions of a single file, by
57
which time the index file will be ~4.8MB and a bit big to read
58
sequentially.
59
60
Some of the reserved fields could be used to implement a (semi?)
61
balanced tree indexed by SHA1 so we can much more efficiently find the
62
index associated with a particular hash.  For 100,000 revs we would be
63
able to find it in about 17 random reads, which is not too bad.
224 by mbp at sourcefrog
doc
64
65
This performs pretty well except when trying to calculate deltas of
66
really large files.  For that the main thing would be to plug in
67
something faster than difflib, which is after all pure Python.
68
Another approach is to just store the gzipped full text of big files,
69
though perhaps that's too perverse?
198 by mbp at sourcefrog
- experimental compressed Revfile support
70
"""
71
 
72
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
73
# TODO: Something like pread() would make this slightly simpler and
74
# perhaps more efficient.
75
219 by mbp at sourcefrog
todo
76
# TODO: Could also try to mmap things...  Might be faster for the
77
# index in particular?
78
79
# TODO: Some kind of faster lookup of SHAs?  The bad thing is that probably means
80
# rewriting existing records, which is not so nice.
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
81
224 by mbp at sourcefrog
doc
82
# TODO: Something to check that regions identified in the index file
83
# completely butt up and do not overlap.  Strictly it's not a problem
84
# if there are gaps and that can happen if we're interrupted while
85
# writing to the datafile.  Overlapping would be very bad though.
86
87
198 by mbp at sourcefrog
- experimental compressed Revfile support
88
89
import sys, zlib, struct, mdiff, stat, os, sha
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
90
from binascii import hexlify, unhexlify
198 by mbp at sourcefrog
- experimental compressed Revfile support
91
92
factor = 10
93
94
_RECORDSIZE = 48
95
96
_HEADER = "bzr revfile v1\n"
97
_HEADER = _HEADER + ('\xff' * (_RECORDSIZE - len(_HEADER)))
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
98
_NO_RECORD = 0xFFFFFFFFL
198 by mbp at sourcefrog
- experimental compressed Revfile support
99
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
100
# fields in the index record
101
I_SHA = 0
102
I_BASE = 1
103
I_FLAGS = 2
104
I_OFFSET = 3
105
I_LEN = 4
106
207 by mbp at sourcefrog
Revfile: compress data going into datafile if that would be worthwhile
107
FL_GZIP = 1
108
220 by mbp at sourcefrog
limit the number of chained patches
109
# maximum number of patches in a row before recording a whole text.
227 by mbp at sourcefrog
increase patch chaining limit
110
CHAIN_LIMIT = 50
220 by mbp at sourcefrog
limit the number of chained patches
111
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
112
198 by mbp at sourcefrog
- experimental compressed Revfile support
113
class RevfileError(Exception):
114
    pass
115
220 by mbp at sourcefrog
limit the number of chained patches
116
class LimitHitException(Exception):
117
    pass
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
118
198 by mbp at sourcefrog
- experimental compressed Revfile support
119
class Revfile:
120
    def __init__(self, basename):
202 by mbp at sourcefrog
Revfile:
121
        # TODO: Option to open readonly
122
123
        # TODO: Lock file  while open
124
125
        # TODO: advise of random access
126
198 by mbp at sourcefrog
- experimental compressed Revfile support
127
        self.basename = basename
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
128
        
129
        idxname = basename + '.irev'
130
        dataname = basename + '.drev'
131
132
        idx_exists = os.path.exists(idxname)
133
        data_exists = os.path.exists(dataname)
134
135
        if idx_exists != data_exists:
136
            raise RevfileError("half-assed revfile")
137
        
138
        if not idx_exists:
139
            self.idxfile = open(idxname, 'w+b')
140
            self.datafile = open(dataname, 'w+b')
141
            
198 by mbp at sourcefrog
- experimental compressed Revfile support
142
            print 'init empty file'
143
            self.idxfile.write(_HEADER)
144
            self.idxfile.flush()
145
        else:
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
146
            self.idxfile = open(idxname, 'r+b')
202 by mbp at sourcefrog
Revfile:
147
            self.datafile = open(dataname, 'r+b')
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
148
            
198 by mbp at sourcefrog
- experimental compressed Revfile support
149
            h = self.idxfile.read(_RECORDSIZE)
150
            if h != _HEADER:
151
                raise RevfileError("bad header %r in index of %r"
152
                                   % (h, self.basename))
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
153
154
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
155
    def _check_index(self, idx):
156
        if idx < 0 or idx > len(self):
157
            raise RevfileError("invalid index %r" % idx)
158
159
160
    def find_sha(self, s):
161
        assert isinstance(s, str)
162
        assert len(s) == 20
163
        
164
        for idx, idxrec in enumerate(self):
165
            if idxrec[I_SHA] == s:
166
                return idx
167
        else:
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
168
            return _NO_RECORD
169
170
171
172
    def _add_compressed(self, text_sha, data, base, compress):
173
        # well, maybe compress
174
        flags = 0
175
        if compress:
176
            data_len = len(data)
177
            if data_len > 50:
178
                # don't do compression if it's too small; it's unlikely to win
179
                # enough to be worthwhile
180
                compr_data = zlib.compress(data)
181
                compr_len = len(compr_data)
182
                if compr_len < data_len:
183
                    data = compr_data
184
                    flags = FL_GZIP
185
                    ##print '- compressed %d -> %d, %.1f%%' \
186
                    ##      % (data_len, compr_len, float(compr_len)/float(data_len) * 100.0)
187
        return self._add_raw(text_sha, data, base, flags)
188
        
189
190
191
    def _add_raw(self, text_sha, data, base, flags):
207 by mbp at sourcefrog
Revfile: compress data going into datafile if that would be worthwhile
192
        """Add pre-processed data, can be either full text or delta.
193
194
        This does the compression if that makes sense."""
203 by mbp at sourcefrog
revfile:
195
        idx = len(self)
198 by mbp at sourcefrog
- experimental compressed Revfile support
196
        self.datafile.seek(0, 2)        # to end
197
        self.idxfile.seek(0, 2)
202 by mbp at sourcefrog
Revfile:
198
        assert self.idxfile.tell() == _RECORDSIZE * (idx + 1)
198 by mbp at sourcefrog
- experimental compressed Revfile support
199
        data_offset = self.datafile.tell()
200
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
201
        assert isinstance(data, str) # not unicode or anything wierd
198 by mbp at sourcefrog
- experimental compressed Revfile support
202
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
203
        self.datafile.write(data)
198 by mbp at sourcefrog
- experimental compressed Revfile support
204
        self.datafile.flush()
205
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
206
        assert isinstance(text_sha, str)
207
        entry = text_sha
208
        entry += struct.pack(">IIII12x", base, flags, data_offset, len(data))
198 by mbp at sourcefrog
- experimental compressed Revfile support
209
        assert len(entry) == _RECORDSIZE
210
211
        self.idxfile.write(entry)
212
        self.idxfile.flush()
213
214
        return idx
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
215
        
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
216
217
220 by mbp at sourcefrog
limit the number of chained patches
218
    def _add_full_text(self, text, text_sha, compress):
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
219
        """Add a full text to the file.
220
221
        This is not compressed against any reference version.
222
223
        Returns the index for that text."""
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
224
        return self._add_compressed(text_sha, text, _NO_RECORD, compress)
225
226
227
    def _add_delta(self, text, text_sha, base, compress):
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
228
        """Add a text stored relative to a previous text."""
229
        self._check_index(base)
220 by mbp at sourcefrog
limit the number of chained patches
230
        
231
        try:
232
            base_text = self.get(base, recursion_limit=CHAIN_LIMIT)
233
        except LimitHitException:
234
            return self._add_full_text(text, text_sha, compress)
235
        
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
236
        data = mdiff.bdiff(base_text, text)
213 by mbp at sourcefrog
Revfile: don't store deltas if they'd be larger than just storing the whole text
237
        
238
        # If the delta is larger than the text, we might as well just
239
        # store the text.  (OK, the delta might be more compressible,
240
        # but the overhead of applying it probably still makes it
214 by mbp at sourcefrog
doc
241
        # bad, and I don't want to compress both of them to find out.)
213 by mbp at sourcefrog
Revfile: don't store deltas if they'd be larger than just storing the whole text
242
        if len(data) >= len(text):
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
243
            return self._add_full_text(text, text_sha, compress)
213 by mbp at sourcefrog
Revfile: don't store deltas if they'd be larger than just storing the whole text
244
        else:
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
245
            return self._add_compressed(text_sha, data, base, compress)
246
247
248
    def add(self, text, base=_NO_RECORD, compress=True):
215 by mbp at sourcefrog
Doc
249
        """Add a new text to the revfile.
250
251
        If the text is already present them its existing id is
252
        returned and the file is not changed.
253
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
254
        If compress is true then gzip compression will be used if it
255
        reduces the size.
256
215 by mbp at sourcefrog
Doc
257
        If a base index is specified, that text *may* be used for
258
        delta compression of the new text.  Delta compression will
259
        only be used if it would be a size win and if the existing
260
        base is not at too long of a delta chain already.
261
        """
206 by mbp at sourcefrog
new Revfile.add() dwim
262
        text_sha = sha.new(text).digest()
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
263
206 by mbp at sourcefrog
new Revfile.add() dwim
264
        idx = self.find_sha(text_sha)
265
        if idx != _NO_RECORD:
215 by mbp at sourcefrog
Doc
266
            # TODO: Optional paranoid mode where we read out that record and make sure
267
            # it's the same, in case someone ever breaks SHA-1.
206 by mbp at sourcefrog
new Revfile.add() dwim
268
            return idx                  # already present
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
269
        
206 by mbp at sourcefrog
new Revfile.add() dwim
270
        if base == _NO_RECORD:
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
271
            return self._add_full_text(text, text_sha, compress)
206 by mbp at sourcefrog
new Revfile.add() dwim
272
        else:
217 by mbp at sourcefrog
Revfile: make compression optional, in case people are storing files they know won't compress
273
            return self._add_delta(text, text_sha, base, compress)
206 by mbp at sourcefrog
new Revfile.add() dwim
274
275
276
220 by mbp at sourcefrog
limit the number of chained patches
277
    def get(self, idx, recursion_limit=None):
278
        """Retrieve text of a previous revision.
279
280
        If recursion_limit is an integer then walk back at most that
281
        many revisions and then raise LimitHitException, indicating
282
        that we ought to record a new file text instead of another
283
        delta.  Don't use this when trying to get out an existing
284
        revision."""
285
        
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
286
        idxrec = self[idx]
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
287
        base = idxrec[I_BASE]
288
        if base == _NO_RECORD:
289
            text = self._get_full_text(idx, idxrec)
290
        else:
220 by mbp at sourcefrog
limit the number of chained patches
291
            text = self._get_patched(idx, idxrec, recursion_limit)
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
292
293
        if sha.new(text).digest() != idxrec[I_SHA]:
294
            raise RevfileError("corrupt SHA-1 digest on record %d"
295
                               % idx)
296
297
        return text
298
299
300
301
    def _get_raw(self, idx, idxrec):
209 by mbp at sourcefrog
Revfile: handle decompression
302
        flags = idxrec[I_FLAGS]
303
        if flags & ~FL_GZIP:
304
            raise RevfileError("unsupported index flags %#x on index %d"
305
                               % (flags, idx))
306
        
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
307
        l = idxrec[I_LEN]
308
        if l == 0:
309
            return ''
310
311
        self.datafile.seek(idxrec[I_OFFSET])
312
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
313
        data = self.datafile.read(l)
314
        if len(data) != l:
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
315
            raise RevfileError("short read %d of %d "
316
                               "getting text for record %d in %r"
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
317
                               % (len(data), l, idx, self.basename))
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
318
209 by mbp at sourcefrog
Revfile: handle decompression
319
        if flags & FL_GZIP:
320
            data = zlib.decompress(data)
321
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
322
        return data
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
323
        
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
324
325
    def _get_full_text(self, idx, idxrec):
326
        assert idxrec[I_BASE] == _NO_RECORD
327
328
        text = self._get_raw(idx, idxrec)
329
330
        return text
331
332
220 by mbp at sourcefrog
limit the number of chained patches
333
    def _get_patched(self, idx, idxrec, recursion_limit):
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
334
        base = idxrec[I_BASE]
335
        assert base >= 0
336
        assert base < idx    # no loops!
337
220 by mbp at sourcefrog
limit the number of chained patches
338
        if recursion_limit == None:
339
            sub_limit = None
340
        else:
341
            sub_limit = recursion_limit - 1
342
            if sub_limit < 0:
343
                raise LimitHitException()
344
            
345
        base_text = self.get(base, sub_limit)
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
346
        patch = self._get_raw(idx, idxrec)
347
348
        text = mdiff.bpatch(base_text, patch)
349
350
        return text
351
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
352
353
198 by mbp at sourcefrog
- experimental compressed Revfile support
354
    def __len__(self):
203 by mbp at sourcefrog
revfile:
355
        """Return number of revisions."""
356
        l = os.fstat(self.idxfile.fileno())[stat.ST_SIZE]
357
        if l % _RECORDSIZE:
358
            raise RevfileError("bad length %d on index of %r" % (l, self.basename))
359
        if l < _RECORDSIZE:
360
            raise RevfileError("no header present in index of %r" % (self.basename))
361
        return int(l / _RECORDSIZE) - 1
198 by mbp at sourcefrog
- experimental compressed Revfile support
362
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
363
198 by mbp at sourcefrog
- experimental compressed Revfile support
364
    def __getitem__(self, idx):
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
365
        """Index by sequence id returns the index field"""
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
366
        ## TODO: Can avoid seek if we just moved there...
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
367
        self._seek_index(idx)
368
        return self._read_next_index()
369
370
371
    def _seek_index(self, idx):
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
372
        if idx < 0:
373
            raise RevfileError("invalid index %r" % idx)
198 by mbp at sourcefrog
- experimental compressed Revfile support
374
        self.idxfile.seek((idx + 1) * _RECORDSIZE)
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
375
        
376
377
    def _read_next_index(self):
198 by mbp at sourcefrog
- experimental compressed Revfile support
378
        rec = self.idxfile.read(_RECORDSIZE)
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
379
        if not rec:
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
380
            raise IndexError("end of index file")
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
381
        elif len(rec) != _RECORDSIZE:
198 by mbp at sourcefrog
- experimental compressed Revfile support
382
            raise RevfileError("short read of %d bytes getting index %d from %r"
383
                               % (len(rec), idx, self.basename))
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
384
        
199 by mbp at sourcefrog
- use -1 for no_base in revfile
385
        return struct.unpack(">20sIIII12x", rec)
198 by mbp at sourcefrog
- experimental compressed Revfile support
386
387
        
199 by mbp at sourcefrog
- use -1 for no_base in revfile
388
    def dump(self, f=sys.stdout):
389
        f.write('%-8s %-40s %-8s %-8s %-8s %-8s\n' 
390
                % tuple('idx sha1 base flags offset len'.split()))
391
        f.write('-------- ---------------------------------------- ')
392
        f.write('-------- -------- -------- --------\n')
393
200 by mbp at sourcefrog
revfile: fix up __getitem__ to allow simple iteration
394
        for i, rec in enumerate(self):
199 by mbp at sourcefrog
- use -1 for no_base in revfile
395
            f.write("#%-7d %40s " % (i, hexlify(rec[0])))
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
396
            if rec[1] == _NO_RECORD:
199 by mbp at sourcefrog
- use -1 for no_base in revfile
397
                f.write("(none)   ")
398
            else:
399
                f.write("#%-7d " % rec[1])
400
                
401
            f.write("%8x %8d %8d\n" % (rec[2], rec[3], rec[4]))
222 by mbp at sourcefrog
refactor total_text_size
402
223 by mbp at sourcefrog
doc
403
222 by mbp at sourcefrog
refactor total_text_size
404
    def total_text_size(self):
223 by mbp at sourcefrog
doc
405
        """Return the sum of sizes of all file texts.
406
407
        This is how much space they would occupy if they were stored without
408
        delta and gzip compression.
409
410
        As a side effect this completely validates the Revfile, checking that all
411
        texts can be reproduced with the correct SHA-1."""
222 by mbp at sourcefrog
refactor total_text_size
412
        t = 0L
413
        for idx in range(len(self)):
414
            t += len(self.get(idx))
415
        return t
198 by mbp at sourcefrog
- experimental compressed Revfile support
416
        
417
418
419
def main(argv):
420
    r = Revfile("testrev")
203 by mbp at sourcefrog
revfile:
421
422
    try:
423
        cmd = argv[1]
424
    except IndexError:
198 by mbp at sourcefrog
- experimental compressed Revfile support
425
        sys.stderr.write("usage: revfile dump\n"
201 by mbp at sourcefrog
Revfile: - get full text from a record- fix creation of files if they don't exist- protect against half-assed storage
426
                         "       revfile add\n"
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
427
                         "       revfile add-delta BASE\n"
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
428
                         "       revfile get IDX\n"
221 by mbp at sourcefrog
Revfile: new command total-text-size
429
                         "       revfile find-sha HEX\n"
226 by mbp at sourcefrog
revf: new command 'last'
430
                         "       revfile total-text-size\n"
431
                         "       revfile last\n")
203 by mbp at sourcefrog
revfile:
432
        return 1
218 by mbp at sourcefrog
todo
433
203 by mbp at sourcefrog
revfile:
434
    if cmd == 'add':
206 by mbp at sourcefrog
new Revfile.add() dwim
435
        new_idx = r.add(sys.stdin.read())
216 by mbp at sourcefrog
revfile add and add-delta commands print just the index for use by scripts
436
        print new_idx
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
437
    elif cmd == 'add-delta':
207 by mbp at sourcefrog
Revfile: compress data going into datafile if that would be worthwhile
438
        new_idx = r.add(sys.stdin.read(), int(argv[2]))
216 by mbp at sourcefrog
revfile add and add-delta commands print just the index for use by scripts
439
        print new_idx
203 by mbp at sourcefrog
revfile:
440
    elif cmd == 'dump':
198 by mbp at sourcefrog
- experimental compressed Revfile support
441
        r.dump()
203 by mbp at sourcefrog
revfile:
442
    elif cmd == 'get':
202 by mbp at sourcefrog
Revfile:
443
        try:
203 by mbp at sourcefrog
revfile:
444
            idx = int(argv[2])
202 by mbp at sourcefrog
Revfile:
445
        except IndexError:
203 by mbp at sourcefrog
revfile:
446
            sys.stderr.write("usage: revfile get IDX\n")
447
            return 1
448
449
        if idx < 0 or idx >= len(r):
450
            sys.stderr.write("invalid index %r\n" % idx)
451
            return 1
452
205 by mbp at sourcefrog
Revfile:- store and retrieve deltas!mdiff:- work on bytes not lines
453
        sys.stdout.write(r.get(idx))
204 by mbp at sourcefrog
Revfile:- new find-sha command and implementation- new _check_index helper
454
    elif cmd == 'find-sha':
455
        try:
456
            s = unhexlify(argv[2])
457
        except IndexError:
458
            sys.stderr.write("usage: revfile find-sha HEX\n")
459
            return 1
460
461
        idx = r.find_sha(s)
462
        if idx == _NO_RECORD:
463
            sys.stderr.write("no such record\n")
464
            return 1
465
        else:
466
            print idx
221 by mbp at sourcefrog
Revfile: new command total-text-size
467
    elif cmd == 'total-text-size':
222 by mbp at sourcefrog
refactor total_text_size
468
        print r.total_text_size()
226 by mbp at sourcefrog
revf: new command 'last'
469
    elif cmd == 'last':
470
        print len(r)-1
198 by mbp at sourcefrog
- experimental compressed Revfile support
471
    else:
203 by mbp at sourcefrog
revfile:
472
        sys.stderr.write("unknown command %r\n" % cmd)
473
        return 1
198 by mbp at sourcefrog
- experimental compressed Revfile support
474
    
475
476
if __name__ == '__main__':
477
    import sys
203 by mbp at sourcefrog
revfile:
478
    sys.exit(main(sys.argv) or 0)