]> arthur.barton.de Git - bup.git/blob - lib/bup/cmd/ftp.py
ftp: use sys.exc_info(); import traceback unconditionally
[bup.git] / lib / bup / cmd / ftp.py
1
2 # For now, this completely relies on the assumption that the current
3 # encoding (LC_CTYPE, etc.) is ASCII compatible, and that it returns
4 # the exact same bytes from a decode/encode round-trip (or the reverse
5 # (e.g. ISO-8859-1).
6
7 from __future__ import absolute_import, print_function
8 import os, fnmatch, stat, sys, traceback
9
10 from bup import _helpers, options, git, shquote, ls, vfs
11 from bup.compat import argv_bytes
12 from bup.helpers import chunkyreader, log
13 from bup.io import byte_stream, path_msg
14 from bup.repo import LocalRepo
15
16
17 repo = None
18
19 class OptionError(Exception):
20     pass
21
22
23 def do_ls(repo, pwd, args, out):
24     pwd_str = b'/'.join(name for name, item in pwd) or b'/'
25     try:
26         opt = ls.opts_from_cmdline(args, onabort=OptionError, pwd=pwd_str)
27     except OptionError as e:
28         log('error: %s' % e)
29         return None
30     return ls.within_repo(repo, opt, out, pwd_str)
31
32
33 def write_to_file(inf, outf):
34     for blob in chunkyreader(inf):
35         outf.write(blob)
36
37
38 def _completer_get_subs(repo, line):
39     (qtype, lastword) = shquote.unfinished_word(line)
40     dir, name = os.path.split(lastword)
41     dir_path = vfs.resolve(repo, dir or b'/')
42     _, dir_item = dir_path[-1]
43     if not dir_item:
44         subs = tuple()
45     else:
46         subs = tuple(dir_path + (entry,)
47                      for entry in vfs.contents(repo, dir_item)
48                      if (entry[0] != b'.' and entry[0].startswith(name)))
49     return qtype, lastword, subs
50
51
52 _attempt_start = None
53 _attempt_end = None
54 def attempt_completion(text, start, end):
55     global _attempt_start, _attempt_end
56     _attempt_start = start
57     _attempt_end = end
58
59 _last_line = None
60 _last_res = None
61 def enter_completion(text, iteration):
62     global repo
63     global _attempt_end
64     global _last_line
65     global _last_res
66     try:
67         line = _helpers.get_line_buffer()[:_attempt_end]
68         if _last_line != line:
69             _last_res = _completer_get_subs(repo, line)
70             _last_line = line
71         qtype, lastword, subs = _last_res
72         if iteration < len(subs):
73             path = subs[iteration]
74             leaf_name, leaf_item = path[-1]
75             res = vfs.try_resolve(repo, leaf_name, parent=path[:-1])
76             leaf_name, leaf_item = res[-1]
77             fullname = os.path.join(*(name for name, item in res))
78             if stat.S_ISDIR(vfs.item_mode(leaf_item)):
79                 ret = shquote.what_to_add(qtype, lastword, fullname + b'/',
80                                           terminate=False)
81             else:
82                 ret = shquote.what_to_add(qtype, lastword, fullname,
83                                           terminate=True) + b' '
84             return text + ret
85     except Exception as e:
86         log('\n')
87         _, _, tb = sys.exc_info()
88         traceback.print_tb(tb)
89         log('\nError in completion: %s\n' % e)
90     return None
91
92
93 optspec = """
94 bup ftp [commands...]
95 """
96
97 def main(argv):
98     o = options.Options(optspec)
99     opt, flags, extra = o.parse_bytes(argv[1:])
100
101     git.check_repo_or_die()
102
103     global repo
104
105     sys.stdout.flush()
106     out = byte_stream(sys.stdout)
107     stdin = byte_stream(sys.stdin)
108     repo = LocalRepo()
109     pwd = vfs.resolve(repo, b'/')
110     rv = 0
111
112     def inputiter(f):
113         if os.isatty(f.fileno()):
114             while 1:
115                 prompt = b'bup %s> ' % (b'/'.join(name for name, item in pwd) or b'/', )
116                 if hasattr(_helpers, 'readline'):
117                     try:
118                         yield _helpers.readline(prompt)
119                     except EOFError:
120                         print()  # Clear the line for the terminal's next prompt
121                         break
122                 else:
123                     out.write(prompt)
124                     out.flush()
125                     read_line = f.readline()
126                     if not read_line:
127                         print('')
128                         break
129                     yield read_line
130         else:
131             for line in f:
132                 yield line
133
134
135     if extra:
136         lines = (argv_bytes(arg) for arg in extra)
137     else:
138         if hasattr(_helpers, 'readline'):
139             _helpers.set_completer_word_break_characters(b' \t\n\r/')
140             _helpers.set_attempted_completion_function(attempt_completion)
141             _helpers.set_completion_entry_function(enter_completion)
142             if sys.platform.startswith('darwin'):
143                 # MacOS uses a slightly incompatible clone of libreadline
144                 _helpers.parse_and_bind(b'bind ^I rl_complete')
145             _helpers.parse_and_bind(b'tab: complete')
146         lines = inputiter(stdin)
147
148     for line in lines:
149         if not line.strip():
150             continue
151         words = [word for (wordstart,word) in shquote.quotesplit(line)]
152         cmd = words[0].lower()
153         #log('execute: %r %r\n' % (cmd, parm))
154         try:
155             if cmd == b'ls':
156                 do_ls(repo, pwd, words[1:], out)
157                 out.flush()
158             elif cmd == b'cd':
159                 np = pwd
160                 for parm in words[1:]:
161                     res = vfs.resolve(repo, parm, parent=np)
162                     _, leaf_item = res[-1]
163                     if not leaf_item:
164                         raise Exception('%s does not exist'
165                                         % path_msg(b'/'.join(name for name, item
166                                                              in res)))
167                     if not stat.S_ISDIR(vfs.item_mode(leaf_item)):
168                         raise Exception('%s is not a directory' % path_msg(parm))
169                     np = res
170                 pwd = np
171             elif cmd == b'pwd':
172                 if len(pwd) == 1:
173                     out.write(b'/')
174                 out.write(b'/'.join(name for name, item in pwd) + b'\n')
175                 out.flush()
176             elif cmd == b'cat':
177                 for parm in words[1:]:
178                     res = vfs.resolve(repo, parm, parent=pwd)
179                     _, leaf_item = res[-1]
180                     if not leaf_item:
181                         raise Exception('%s does not exist' %
182                                         path_msg(b'/'.join(name for name, item
183                                                            in res)))
184                     with vfs.fopen(repo, leaf_item) as srcfile:
185                         write_to_file(srcfile, out)
186                 out.flush()
187             elif cmd == b'get':
188                 if len(words) not in [2,3]:
189                     rv = 1
190                     raise Exception('Usage: get <filename> [localname]')
191                 rname = words[1]
192                 (dir,base) = os.path.split(rname)
193                 lname = len(words) > 2 and words[2] or base
194                 res = vfs.resolve(repo, rname, parent=pwd)
195                 _, leaf_item = res[-1]
196                 if not leaf_item:
197                     raise Exception('%s does not exist' %
198                                     path_msg(b'/'.join(name for name, item in res)))
199                 with vfs.fopen(repo, leaf_item) as srcfile:
200                     with open(lname, 'wb') as destfile:
201                         log('Saving %s\n' % path_msg(lname))
202                         write_to_file(srcfile, destfile)
203             elif cmd == b'mget':
204                 for parm in words[1:]:
205                     dir, base = os.path.split(parm)
206
207                     res = vfs.resolve(repo, dir, parent=pwd)
208                     _, dir_item = res[-1]
209                     if not dir_item:
210                         raise Exception('%s does not exist' % path_msg(dir))
211                     for name, item in vfs.contents(repo, dir_item):
212                         if name == b'.':
213                             continue
214                         if fnmatch.fnmatch(name, base):
215                             if stat.S_ISLNK(vfs.item_mode(item)):
216                                 deref = vfs.resolve(repo, name, parent=res)
217                                 deref_name, deref_item = deref[-1]
218                                 if not deref_item:
219                                     raise Exception('%s does not exist' %
220                                                     path_msg('/'.join(name for name, item
221                                                                       in deref)))
222                                 item = deref_item
223                             with vfs.fopen(repo, item) as srcfile:
224                                 with open(name, 'wb') as destfile:
225                                     log('Saving %s\n' % path_msg(name))
226                                     write_to_file(srcfile, destfile)
227             elif cmd in (b'help', b'?'):
228                 out.write(b'Commands: ls cd pwd cat get mget help quit\n')
229                 out.flush()
230             elif cmd in (b'quit', b'exit', b'bye'):
231                 break
232             else:
233                 rv = 1
234                 raise Exception('no such command %r' % cmd)
235         except Exception as e:
236             rv = 1
237             log('error: %s\n' % e)
238             raise
239
240     sys.exit(rv)