]> arthur.barton.de Git - bup.git/blob - cmd/save-cmd.py
cmd/save: if file.read() returns an error, don't abort.
[bup.git] / cmd / save-cmd.py
1 #!/usr/bin/env python
2 import sys, stat, time, math
3 from bup import hashsplit, git, options, index, client
4 from bup.helpers import *
5
6
7 optspec = """
8 bup save [-tc] [-n name] <filenames...>
9 --
10 r,remote=  hostname:/path/to/repo of remote repository
11 t,tree     output a tree id
12 c,commit   output a commit id
13 n,name=    name of backup set to update (if any)
14 d,date=    date for the commit (seconds since the epoch)
15 v,verbose  increase log output (can be used more than once)
16 q,quiet    don't show progress meter
17 smaller=   only back up files smaller than n bytes
18 bwlimit=   maximum bytes/sec to transmit to server
19 """
20 o = options.Options('bup save', optspec)
21 (opt, flags, extra) = o.parse(sys.argv[1:])
22
23 git.check_repo_or_die()
24 if not (opt.tree or opt.commit or opt.name):
25     o.fatal("use one or more of -t, -c, -n")
26 if not extra:
27     o.fatal("no filenames given")
28
29 opt.progress = (istty and not opt.quiet)
30 opt.smaller = parse_num(opt.smaller or 0)
31 if opt.bwlimit:
32     client.bwlimit = parse_num(opt.bwlimit)
33
34 if opt.date:
35     date = parse_date_or_fatal(opt.date, o.fatal)
36 else:
37     date = time.time()
38
39 is_reverse = os.environ.get('BUP_SERVER_REVERSE')
40 if is_reverse and opt.remote:
41     o.fatal("don't use -r in reverse mode; it's automatic")
42
43 refname = opt.name and 'refs/heads/%s' % opt.name or None
44 if opt.remote or is_reverse:
45     if opt.remote and opt.remote.find(":") == -1:
46         o.fatal("--remote argument must contain a colon")
47     try:
48         cli = client.Client(opt.remote)
49     except client.ClientError:
50         o.fatal("server exited unexpectedly; see errors above")
51     oldref = refname and cli.read_ref(refname) or None
52     w = cli.new_packwriter()
53 else:
54     cli = None
55     oldref = refname and git.read_ref(refname) or None
56     w = git.PackWriter()
57
58 handle_ctrl_c()
59
60
61 def eatslash(dir):
62     if dir.endswith('/'):
63         return dir[:-1]
64     else:
65         return dir
66
67
68 parts = ['']
69 shalists = [[]]
70
71 def _push(part):
72     assert(part)
73     parts.append(part)
74     shalists.append([])
75
76 def _pop(force_tree):
77     assert(len(parts) >= 1)
78     part = parts.pop()
79     shalist = shalists.pop()
80     tree = force_tree or w.new_tree(shalist)
81     if shalists:
82         shalists[-1].append(('40000',
83                              git.mangle_name(part, 040000, 40000),
84                              tree))
85     else:  # this was the toplevel, so put it back for sanity
86         shalists.append(shalist)
87     return tree
88
89 lastremain = None
90 lastprint = 0
91 def progress_report(n):
92     global count, subcount, lastremain, lastprint
93     subcount += n
94     cc = count + subcount
95     pct = total and (cc*100.0/total) or 0
96     now = time.time()
97     elapsed = now - tstart
98     kps = elapsed and int(cc/1024./elapsed)
99     kps_frac = 10 ** int(math.log(kps+1, 10) - 1)
100     kps = int(kps/kps_frac)*kps_frac
101     if cc:
102         remain = elapsed*1.0/cc * (total-cc)
103     else:
104         remain = 0.0
105     if (lastremain and (remain > lastremain)
106           and ((remain - lastremain)/lastremain < 0.05)):
107         remain = lastremain
108     else:
109         lastremain = remain
110     hours = int(remain/60/60)
111     mins = int(remain/60 - hours*60)
112     secs = int(remain - hours*60*60 - mins*60)
113     if elapsed < 30:
114         remainstr = ''
115         kpsstr = ''
116     else:
117         kpsstr = '%dk/s' % kps
118         if hours:
119             remainstr = '%dh%dm' % (hours, mins)
120         elif mins:
121             remainstr = '%dm%d' % (mins, secs)
122         else:
123             remainstr = '%ds' % secs
124     if now - lastprint > 0.1:
125         progress('Saving: %.2f%% (%d/%dk, %d/%d files) %s %s\r'
126                  % (pct, cc/1024, total/1024, fcount, ftotal,
127                     remainstr, kpsstr))
128         lastprint = now
129
130
131 def vlog(s):
132     global lastprint
133     lastprint = 0
134     log(s)
135
136
137 r = index.Reader(git.repo('bupindex'))
138
139 def already_saved(ent):
140     return ent.is_valid() and w.exists(ent.sha) and ent.sha
141
142 def wantrecurse_pre(ent):
143     return not already_saved(ent)
144
145 def wantrecurse_during(ent):
146     return not already_saved(ent) or ent.sha_missing()
147
148 total = ftotal = 0
149 if opt.progress:
150     for (transname,ent) in r.filter(extra, wantrecurse=wantrecurse_pre):
151         if not (ftotal % 10024):
152             progress('Reading index: %d\r' % ftotal)
153         exists = ent.exists()
154         hashvalid = already_saved(ent)
155         ent.set_sha_missing(not hashvalid)
156         if not opt.smaller or ent.size < opt.smaller:
157             if exists and not hashvalid:
158                 total += ent.size
159         ftotal += 1
160     progress('Reading index: %d, done.\n' % ftotal)
161     hashsplit.progress_callback = progress_report
162
163 tstart = time.time()
164 count = subcount = fcount = 0
165 lastskip_name = None
166 lastdir = ''
167 for (transname,ent) in r.filter(extra, wantrecurse=wantrecurse_during):
168     (dir, file) = os.path.split(ent.name)
169     exists = (ent.flags & index.IX_EXISTS)
170     hashvalid = already_saved(ent)
171     wasmissing = ent.sha_missing()
172     oldsize = ent.size
173     if opt.verbose:
174         if not exists:
175             status = 'D'
176         elif not hashvalid:
177             if ent.sha == index.EMPTY_SHA:
178                 status = 'A'
179             else:
180                 status = 'M'
181         else:
182             status = ' '
183         if opt.verbose >= 2:
184             vlog('%s %-70s\n' % (status, ent.name))
185         elif not stat.S_ISDIR(ent.mode) and lastdir != dir:
186             if not lastdir.startswith(dir):
187                 vlog('%s %-70s\n' % (status, os.path.join(dir, '')))
188             lastdir = dir
189
190     if opt.progress:
191         progress_report(0)
192     fcount += 1
193     
194     if not exists:
195         continue
196     if opt.smaller and ent.size >= opt.smaller:
197         if exists and not hashvalid:
198             add_error('skipping large file "%s"' % ent.name)
199             lastskip_name = ent.name
200         continue
201
202     assert(dir.startswith('/'))
203     dirp = dir.split('/')
204     while parts > dirp:
205         _pop(force_tree = None)
206     if dir != '/':
207         for part in dirp[len(parts):]:
208             _push(part)
209
210     if not file:
211         # no filename portion means this is a subdir.  But
212         # sub/parentdirectories already handled in the pop/push() part above.
213         oldtree = already_saved(ent) # may be None
214         newtree = _pop(force_tree = oldtree)
215         if not oldtree:
216             if lastskip_name and lastskip_name.startswith(ent.name):
217                 ent.invalidate()
218             else:
219                 ent.validate(040000, newtree)
220             ent.repack()
221         if exists and wasmissing:
222             count += oldsize
223         continue
224
225     # it's not a directory
226     id = None
227     if hashvalid:
228         mode = '%o' % ent.gitmode
229         id = ent.sha
230         shalists[-1].append((mode, 
231                              git.mangle_name(file, ent.mode, ent.gitmode),
232                              id))
233     else:
234         if stat.S_ISREG(ent.mode):
235             try:
236                 f = hashsplit.open_noatime(ent.name)
237             except IOError, e:
238                 add_error(e)
239                 lastskip_name = ent.name
240             except OSError, e:
241                 add_error(e)
242                 lastskip_name = ent.name
243             else:
244                 try:
245                     (mode, id) = hashsplit.split_to_blob_or_tree(w, [f],
246                                             keep_boundaries=False)
247                 except IOError, e:
248                     add_error('%s: %s' % (ent.name, e))
249                     lastskip_name = ent.name
250         else:
251             if stat.S_ISDIR(ent.mode):
252                 assert(0)  # handled above
253             elif stat.S_ISLNK(ent.mode):
254                 try:
255                     rl = os.readlink(ent.name)
256                 except OSError, e:
257                     add_error(e)
258                     lastskip_name = ent.name
259                 except IOError, e:
260                     add_error(e)
261                     lastskip_name = ent.name
262                 else:
263                     (mode, id) = ('120000', w.new_blob(rl))
264             else:
265                 add_error(Exception('skipping special file "%s"' % ent.name))
266                 lastskip_name = ent.name
267         if id:
268             ent.validate(int(mode, 8), id)
269             ent.repack()
270             shalists[-1].append((mode,
271                                  git.mangle_name(file, ent.mode, ent.gitmode),
272                                  id))
273     if exists and wasmissing:
274         count += oldsize
275         subcount = 0
276
277
278 if opt.progress:
279     pct = total and count*100.0/total or 100
280     progress('Saving: %.2f%% (%d/%dk, %d/%d files), done.    \n'
281              % (pct, count/1024, total/1024, fcount, ftotal))
282
283 while len(parts) > 1:
284     _pop(force_tree = None)
285 assert(len(shalists) == 1)
286 tree = w.new_tree(shalists[-1])
287 if opt.tree:
288     print tree.encode('hex')
289 if opt.commit or opt.name:
290     msg = 'bup save\n\nGenerated by command:\n%r' % sys.argv
291     ref = opt.name and ('refs/heads/%s' % opt.name) or None
292     commit = w.new_commit(oldref, tree, date, msg)
293     if opt.commit:
294         print commit.encode('hex')
295
296 w.close()  # must close before we can update the ref
297         
298 if opt.name:
299     if cli:
300         cli.update_ref(refname, commit, oldref)
301     else:
302         git.update_ref(refname, commit, oldref)
303
304 if cli:
305     cli.close()
306
307 if saved_errors:
308     log('WARNING: %d errors encountered while saving.\n' % len(saved_errors))
309     sys.exit(1)