]> arthur.barton.de Git - bup.git/blob - cmd/server-cmd.py
client/server:Handle multiple suggestions and misc
[bup.git] / cmd / server-cmd.py
1 #!/usr/bin/env python
2 import os, sys, struct
3 from bup import options, git
4 from bup.helpers import *
5
6 suspended_w = None
7 dumb_server_mode = False
8
9 def _set_mode():
10     global dumb_server_mode
11     dumb_server_mode = os.path.exists(git.repo('bup-dumb-server'))
12     debug1('bup server: serving in %s mode\n' 
13            % (dumb_server_mode and 'dumb' or 'smart'))
14
15
16 def init_dir(conn, arg):
17     git.init_repo(arg)
18     debug1('bup server: bupdir initialized: %r\n' % git.repodir)
19     _set_mode()
20     conn.ok()
21
22
23 def set_dir(conn, arg):
24     git.check_repo_or_die(arg)
25     debug1('bup server: bupdir is %r\n' % git.repodir)
26     _set_mode()
27     conn.ok()
28
29     
30 def list_indexes(conn, junk):
31     git.check_repo_or_die()
32     suffix = ''
33     if dumb_server_mode:
34         suffix = ' load'
35     for f in os.listdir(git.repo('objects/pack')):
36         if f.endswith('.idx'):
37             conn.write('%s%s\n' % (f, suffix))
38     conn.ok()
39
40
41 def send_index(conn, name):
42     git.check_repo_or_die()
43     assert(name.find('/') < 0)
44     assert(name.endswith('.idx'))
45     idx = git.open_idx(git.repo('objects/pack/%s' % name))
46     conn.write(struct.pack('!I', len(idx.map)))
47     conn.write(idx.map)
48     conn.ok()
49
50
51 def receive_objects_v2(conn, junk):
52     global suspended_w
53     git.check_repo_or_die()
54     suggested = set()
55     if suspended_w:
56         w = suspended_w
57         suspended_w = None
58     else:
59         if dumb_server_mode:
60             w = git.PackWriter(objcache_maker=None)
61         else:
62             w = git.PackWriter()
63     while 1:
64         ns = conn.read(4)
65         if not ns:
66             w.abort()
67             raise Exception('object read: expected length header, got EOF\n')
68         n = struct.unpack('!I', ns)[0]
69         #debug2('expecting %d bytes\n' % n)
70         if not n:
71             debug1('bup server: received %d object%s.\n' 
72                 % (w.count, w.count!=1 and "s" or ''))
73             fullpath = w.close(run_midx=not dumb_server_mode)
74             if fullpath:
75                 (dir, name) = os.path.split(fullpath)
76                 conn.write('%s.idx\n' % name)
77             conn.ok()
78             return
79         elif n == 0xffffffff:
80             debug2('bup server: receive-objects suspended.\n')
81             suspended_w = w
82             conn.ok()
83             return
84             
85         shar = conn.read(20)
86         crcr = struct.unpack('!I', conn.read(4))[0]
87         n -= 20 + 4
88         buf = conn.read(n)  # object sizes in bup are reasonably small
89         #debug2('read %d bytes\n' % n)
90         _check(w, n, len(buf), 'object read: expected %d bytes, got %d\n')
91         if not dumb_server_mode:
92             oldpack = w.exists(shar)
93             if oldpack:
94                 if oldpack == True or oldpack.endswith('.midx'):
95                     # FIXME: we shouldn't really have to know about midx files
96                     # at this layer.  But exists() on a midx doesn't return the
97                     # packname (since it doesn't know)... probably we should
98                     # just fix that deficiency of midx files eventually,
99                     # although it'll make the files bigger.  This method is
100                     # certainly not very efficient.
101                     oldpack = w.objcache.packname_containing(shar)
102                     debug2('new suggestion: %r\n' % oldpack)
103                     w.objcache.refresh()
104                 assert(oldpack.endswith('.idx'))
105                 (dir,name) = os.path.split(oldpack)
106                 if not (name in suggested):
107                     debug1("bup server: suggesting index %s\n" % name)
108                     conn.write('index %s\n' % name)
109                     suggested.add(name)
110                 continue
111         nw, crc = w._raw_write((buf,), sha=shar)
112         _check(w, crcr, crc, 'object read: expected crc %d, got %d\n')
113     # NOTREACHED
114     
115
116 def _check(w, expected, actual, msg):
117     if expected != actual:
118         w.abort()
119         raise Exception(msg % (expected, actual))
120
121
122 def read_ref(conn, refname):
123     git.check_repo_or_die()
124     r = git.read_ref(refname)
125     conn.write('%s\n' % (r or '').encode('hex'))
126     conn.ok()
127
128
129 def update_ref(conn, refname):
130     git.check_repo_or_die()
131     newval = conn.readline().strip()
132     oldval = conn.readline().strip()
133     git.update_ref(refname, newval.decode('hex'), oldval.decode('hex'))
134     conn.ok()
135
136
137 cat_pipe = None
138 def cat(conn, id):
139     global cat_pipe
140     git.check_repo_or_die()
141     if not cat_pipe:
142         cat_pipe = git.CatPipe()
143     try:
144         for blob in cat_pipe.join(id):
145             conn.write(struct.pack('!I', len(blob)))
146             conn.write(blob)
147     except KeyError, e:
148         log('server: error: %s\n' % e)
149         conn.write('\0\0\0\0')
150         conn.error(e)
151     else:
152         conn.write('\0\0\0\0')
153         conn.ok()
154
155
156 optspec = """
157 bup server
158 """
159 o = options.Options('bup server', optspec)
160 (opt, flags, extra) = o.parse(sys.argv[1:])
161
162 if extra:
163     o.fatal('no arguments expected')
164
165 debug2('bup server: reading from stdin.\n')
166
167 commands = {
168     'init-dir': init_dir,
169     'set-dir': set_dir,
170     'list-indexes': list_indexes,
171     'send-index': send_index,
172     'receive-objects-v2': receive_objects_v2,
173     'read-ref': read_ref,
174     'update-ref': update_ref,
175     'cat': cat,
176 }
177
178 # FIXME: this protocol is totally lame and not at all future-proof.
179 # (Especially since we abort completely as soon as *anything* bad happens)
180 conn = Conn(sys.stdin, sys.stdout)
181 lr = linereader(conn)
182 for _line in lr:
183     line = _line.strip()
184     if not line:
185         continue
186     debug1('bup server: command: %r\n' % line)
187     words = line.split(' ', 1)
188     cmd = words[0]
189     rest = len(words)>1 and words[1] or ''
190     if cmd == 'quit':
191         break
192     else:
193         cmd = commands.get(cmd)
194         if cmd:
195             cmd(conn, rest)
196         else:
197             raise Exception('unknown server command: %r\n' % line)
198
199 debug1('bup server: done\n')