1
"""Import upstream source into a branch"""
5
from StringIO import StringIO
10
from bzrlib import generate_ids
11
from bzrlib.bzrdir import BzrDir
12
from bzrlib.errors import NoSuchFile, BzrCommandError, NotBranchError
13
from bzrlib.osutils import (pathjoin, isdir, file_iterator, basename,
15
from bzrlib.trace import warning
16
from bzrlib.transform import TreeTransform, resolve_conflicts, cook_conflicts
17
from bzrlib.workingtree import WorkingTree
18
from bzrlib.plugins.bzrtools.bzrtools import open_from_url
20
class ZipFileWrapper(object):
22
def __init__(self, fileobj, mode):
23
self.zipfile = zipfile.ZipFile(fileobj, mode)
26
for info in self.zipfile.infolist():
27
yield ZipInfoWrapper(self.zipfile, info)
29
def extractfile(self, infowrapper):
30
return StringIO(self.zipfile.read(infowrapper.name))
32
def add(self, filename):
34
self.zipfile.writestr(filename+'/', '')
36
self.zipfile.write(filename)
42
class ZipInfoWrapper(object):
44
def __init__(self, zipfile, info):
47
self.name = info.filename
48
self.zipfile = zipfile
53
return bool(self.name.endswith('/'))
57
return not self.isdir()
60
class DirWrapper(object):
61
def __init__(self, fileobj, mode='r'):
62
assert mode == 'r', mode
63
self.root = os.path.realpath(fileobj.read())
66
return 'DirWrapper(%r)' % self.root
68
def getmembers(self, subdir=None):
69
if subdir is not None:
70
mydir = pathjoin(self.root, subdir)
73
for child in os.listdir(mydir):
74
if subdir is not None:
75
child = pathjoin(subdir, child)
76
fi = FileInfo(self.root, child)
79
for v in self.getmembers(child):
82
def extractfile(self, member):
83
return open(member.fullpath)
86
class FileInfo(object):
88
def __init__(self, root, filepath):
89
self.fullpath = pathjoin(root, filepath)
92
self.name = pathjoin(basename(root), filepath)
94
print 'root %r' % root
95
self.name = basename(root)
97
stat = os.lstat(self.fullpath)
98
self.mode = stat.st_mode
103
return 'FileInfo(%r)' % self.name
106
return stat.S_ISREG(self.mode)
109
return stat.S_ISDIR(self.mode)
112
if stat.S_ISLNK(self.mode):
113
self.linkname = os.readlink(self.fullpath)
120
"""Return the top directory given in a path."""
121
components = splitpath(path)
122
if len(components) > 0:
128
def common_directory(names):
129
"""Determine a single directory prefix from a list of names"""
130
possible_prefix = None
132
name_top = top_path(name)
135
if possible_prefix is None:
136
possible_prefix = name_top
138
if name_top != possible_prefix:
140
return possible_prefix
143
def do_directory(tt, trans_id, tree, relative_path, path):
144
if isdir(path) and tree.path2id(relative_path) is not None:
145
tt.cancel_deletion(trans_id)
147
tt.create_directory(trans_id)
150
def add_implied_parents(implied_parents, path):
151
"""Update the set of implied parents from a path"""
152
parent = os.path.dirname(path)
153
if parent in implied_parents:
155
implied_parents.add(parent)
156
add_implied_parents(implied_parents, parent)
159
def names_of_files(tar_file):
160
for member in tar_file.getmembers():
161
if member.type != "g":
165
def should_ignore(relative_path):
166
return top_path(relative_path) == '.bzr'
169
def import_tar(tree, tar_input):
170
"""Replace the contents of a working directory with tarfile contents.
171
The tarfile may be a gzipped stream. File ids will be updated.
173
tar_file = tarfile.open('lala', 'r', tar_input)
174
import_archive(tree, tar_file)
176
def import_zip(tree, zip_input):
177
zip_file = ZipFileWrapper(zip_input, 'r')
178
import_archive(tree, zip_file)
180
def import_dir(tree, dir_input):
181
dir_file = DirWrapper(dir_input)
182
import_archive(tree, dir_file)
185
def import_archive(tree, archive_file):
186
tt = TreeTransform(tree)
188
import_archive_to_transform(tree, archive_file, tt)
194
def import_archive_to_transform(tree, archive_file, tt):
195
prefix = common_directory(names_of_files(archive_file))
197
for path, entry in tree.inventory.iter_entries():
198
if entry.parent_id is None:
200
trans_id = tt.trans_id_tree_path(path)
201
tt.delete_contents(trans_id)
205
implied_parents = set()
207
for member in archive_file.getmembers():
208
if member.type == 'g':
209
# type 'g' is a header
211
# Inverse functionality in bzr uses utf-8. We could also
212
# interpret relative to fs encoding, which would match native
214
relative_path = member.name.decode('utf-8')
215
if prefix is not None:
216
relative_path = relative_path[len(prefix)+1:]
217
relative_path = relative_path.rstrip('/')
218
if relative_path == '':
220
if should_ignore(relative_path):
222
add_implied_parents(implied_parents, relative_path)
223
trans_id = tt.trans_id_tree_path(relative_path)
224
added.add(relative_path.rstrip('/'))
225
path = tree.abspath(relative_path)
226
if member.name in seen:
227
if tt.final_kind(trans_id) == 'file':
228
tt.set_executability(None, trans_id)
229
tt.cancel_creation(trans_id)
230
seen.add(member.name)
232
tt.create_file(file_iterator(archive_file.extractfile(member)),
234
executable = (member.mode & 0111) != 0
235
tt.set_executability(executable, trans_id)
237
do_directory(tt, trans_id, tree, relative_path, path)
239
tt.create_symlink(member.linkname, trans_id)
242
if tt.tree_file_id(trans_id) is None:
243
name = basename(member.name.rstrip('/'))
244
file_id = generate_ids.gen_file_id(name)
245
tt.version_file(file_id, trans_id)
247
for relative_path in implied_parents.difference(added):
248
if relative_path == "":
250
trans_id = tt.trans_id_tree_path(relative_path)
251
path = tree.abspath(relative_path)
252
do_directory(tt, trans_id, tree, relative_path, path)
253
if tt.tree_file_id(trans_id) is None:
254
tt.version_file(trans_id, trans_id)
255
added.add(relative_path)
257
for path in removed.difference(added):
258
tt.unversion_file(tt.trans_id_tree_path(path))
260
for conflict in cook_conflicts(resolve_conflicts(tt), tt):
264
def do_import(source, tree_directory=None):
265
"""Implementation of import command. Intended for UI only"""
266
if tree_directory is not None:
268
tree = WorkingTree.open(tree_directory)
269
except NotBranchError:
270
if not os.path.exists(tree_directory):
271
os.mkdir(tree_directory)
272
branch = BzrDir.create_branch_convenience(tree_directory)
273
tree = branch.bzrdir.open_workingtree()
275
tree = WorkingTree.open_containing('.')[0]
278
if tree.changes_from(tree.basis_tree()).has_changed():
279
raise BzrCommandError("Working tree has uncommitted changes.")
281
if (source.endswith('.tar') or source.endswith('.tar.gz') or
282
source.endswith('.tar.bz2') or source.endswith('.tgz') or
283
source.endswith('.tar.lzma') or source.endswith('.tar.xz')):
285
tar_input = open_from_url(source)
286
if source.endswith('.bz2'):
288
tar_input = StringIO(bz2.decompress(tar_input.read()))
289
elif source.endswith('.xz') or source.endswith('.lzma'):
291
tar_input = StringIO(lzma.decompress(tar_input.read()))
293
if e.errno == errno.ENOENT:
294
raise NoSuchFile(source)
296
import_tar(tree, tar_input)
299
elif source.endswith('.zip'):
300
import_zip(tree, open_from_url(source))
301
elif file_kind(source) == 'directory':
306
raise BzrCommandError('Unhandled import source')