14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Export a Tree to a non-versioned directory.
17
"""Export a Tree to a zip file.
20
from __future__ import absolute_import
28
from bzrlib.export import _export_iter_entries
29
from bzrlib.filters import (
31
filtered_output_bytes,
33
from bzrlib.trace import mutter
36
# Windows expects this bit to be set in the 'external_attr' section
37
# Or it won't consider the entry a directory
31
from ..archive import _export_iter_entries
32
from ..trace import mutter
35
# Windows expects this bit to be set in the 'external_attr' section,
36
# or it won't consider the entry a directory.
38
37
ZIP_DIRECTORY_BIT = (1 << 4)
39
FILE_PERMISSIONS = (0644 << 16)
38
FILE_PERMISSIONS = (0o644 << 16)
39
DIR_PERMISSIONS = (0o755 << 16)
41
41
_FILE_ATTR = stat.S_IFREG | FILE_PERMISSIONS
42
_DIR_ATTR = stat.S_IFDIR | ZIP_DIRECTORY_BIT
45
def zip_exporter(tree, dest, root, subdir, filtered=False,
46
per_file_timestamps=False):
42
_DIR_ATTR = stat.S_IFDIR | ZIP_DIRECTORY_BIT | DIR_PERMISSIONS
45
def zip_archive_generator(tree, dest, root, subdir=None,
46
force_mtime=None, fileobj=None):
47
47
""" Export this tree to a new zip file.
49
49
`dest` will be created holding the contents of this tree; if it
50
50
already exists, it will be overwritten".
52
mutter('export version %r', tree)
54
now = time.localtime()[:6]
56
53
compression = zipfile.ZIP_DEFLATED
54
if fileobj is not None:
57
58
zipf = zipfile.ZipFile(dest, "w", compression)
60
for dp, ie in _export_iter_entries(tree, subdir):
60
for dp, tp, ie in _export_iter_entries(tree, subdir):
61
61
file_id = ie.file_id
62
62
mutter(" export {%s} kind %s to %s", file_id, ie.kind, dest)
64
64
# zipfile.ZipFile switches all paths to forward
65
65
# slashes anyway, so just stick with that.
66
if per_file_timestamps:
67
mtime = tree.get_file_mtime(ie.file_id, dp)
66
if force_mtime is not None:
69
mtime = tree.get_file_mtime(tp, ie.file_id)
70
date_time = time.localtime(mtime)[:6]
70
71
filename = osutils.pathjoin(root, dp).encode('utf8')
71
72
if ie.kind == "file":
72
73
zinfo = zipfile.ZipInfo(
75
76
zinfo.compress_type = compression
76
77
zinfo.external_attr = _FILE_ATTR
78
chunks = tree.get_file_lines(file_id)
79
filters = tree._content_filter_stack(dp)
80
context = ContentFilterContext(dp, tree, ie)
81
contents = filtered_output_bytes(chunks, filters, context)
82
content = ''.join(contents)
84
content = tree.get_file_text(file_id)
78
content = tree.get_file_text(tp, file_id)
85
79
zipf.writestr(zinfo, content)
86
elif ie.kind == "directory":
80
elif ie.kind in ("directory", "tree-reference"):
87
81
# Directories must contain a trailing slash, to indicate
88
82
# to the zip routine that they are really directories and
89
83
# not just empty files.
90
84
zinfo = zipfile.ZipInfo(
91
85
filename=filename + '/',
93
87
zinfo.compress_type = compression
94
88
zinfo.external_attr = _DIR_ATTR
95
zipf.writestr(zinfo,'')
89
zipf.writestr(zinfo, '')
96
90
elif ie.kind == "symlink":
97
91
zinfo = zipfile.ZipInfo(
98
92
filename=(filename + '.lnk'),
100
94
zinfo.compress_type = compression
101
95
zinfo.external_attr = _FILE_ATTR
102
zipf.writestr(zinfo, ie.symlink_target)
96
zipf.writestr(zinfo, tree.get_symlink_target(tp, file_id))
106
101
except UnicodeEncodeError:
109
from bzrlib.errors import BzrError
104
from breezy.errors import BzrError
110
105
raise BzrError("Can't export non-ascii filenames to zip")