1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
# Copyright (C) 2008 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Import command classes."""
import stat
# There is a bug in git 1.5.4.3 and older by which unquoting a string consumes
# one extra character. Set this variable to True to work-around it. It only
# happens when renaming a file whose name contains spaces and/or quotes, and
# the symptom is:
# % git-fast-import
# fatal: Missing space after source: R "file 1.txt" file 2.txt
# http://git.kernel.org/?p=git/git.git;a=commit;h=c8744d6a8b27115503565041566d97c21e722584
GIT_FAST_IMPORT_NEEDS_EXTRA_SPACE_AFTER_QUOTE = False
# Lists of command names
COMMAND_NAMES = ['blob', 'checkpoint', 'commit', 'feature', 'progress',
'reset', 'tag']
FILE_COMMAND_NAMES = ['filemodify', 'filedelete', 'filecopy', 'filerename',
'filedeleteall']
# Feature names
MULTIPLE_AUTHORS_FEATURE = "multiple-authors"
COMMIT_PROPERTIES_FEATURE = "commit-properties"
EMPTY_DIRS_FEATURE = "empty-directories"
FEATURE_NAMES = [
MULTIPLE_AUTHORS_FEATURE,
COMMIT_PROPERTIES_FEATURE,
EMPTY_DIRS_FEATURE,
]
class ImportCommand(object):
"""Base class for import commands."""
def __init__(self, name):
self.name = name
# List of field names not to display
self._binary = []
def __str__(self):
return repr(self)
def dump_str(self, names=None, child_lists=None, verbose=False):
"""Dump fields as a string.
:param names: the list of fields to include or
None for all public fields
:param child_lists: dictionary of child command names to
fields for that child command to include
:param verbose: if True, prefix each line with the command class and
display fields as a dictionary; if False, dump just the field
values with tabs between them
"""
interesting = {}
if names is None:
fields = [k for k in self.__dict__.keys() if not k.startswith('_')]
else:
fields = names
for field in fields:
value = self.__dict__.get(field)
if field in self._binary and value is not None:
value = '(...)'
interesting[field] = value
if verbose:
return "%s: %s" % (self.__class__.__name__, interesting)
else:
return "\t".join([repr(interesting[k]) for k in fields])
class BlobCommand(ImportCommand):
def __init__(self, mark, data, lineno=0):
ImportCommand.__init__(self, 'blob')
self.mark = mark
self.data = data
self.lineno = lineno
# Provide a unique id in case the mark is missing
if mark is None:
self.id = '@%d' % lineno
else:
self.id = ':' + mark
self._binary = ['data']
def __repr__(self):
if self.mark is None:
mark_line = ""
else:
mark_line = "\nmark :%s" % self.mark
return "blob%s\ndata %d\n%s" % (mark_line, len(self.data), self.data)
class CheckpointCommand(ImportCommand):
def __init__(self):
ImportCommand.__init__(self, 'checkpoint')
def __repr__(self):
return "checkpoint"
class CommitCommand(ImportCommand):
def __init__(self, ref, mark, author, committer, message, from_,
merges, file_iter, lineno=0, more_authors=None, properties=None):
ImportCommand.__init__(self, 'commit')
self.ref = ref
self.mark = mark
self.author = author
self.committer = committer
self.message = message
self.from_ = from_
self.merges = merges
self.file_iter = file_iter
self.more_authors = more_authors
self.properties = properties
self.lineno = lineno
self._binary = ['file_iter']
# Provide a unique id in case the mark is missing
if mark is None:
self.id = '@%d' % lineno
else:
self.id = ':%s' % mark
def __repr__(self):
return self.to_string(include_file_contents=True)
def __str__(self):
return self.to_string(include_file_contents=False)
def to_string(self, use_features=True, include_file_contents=False):
if self.mark is None:
mark_line = ""
else:
mark_line = "\nmark :%s" % self.mark
if self.author is None:
author_section = ""
else:
author_section = "\nauthor %s" % format_who_when(self.author)
if use_features and self.more_authors:
for author in self.more_authors:
author_section += "\nauthor %s" % format_who_when(author)
committer = "committer %s" % format_who_when(self.committer)
if self.message is None:
msg_section = ""
else:
msg = self.message
msg_section = "\ndata %d\n%s" % (len(msg), msg)
if self.from_ is None:
from_line = ""
else:
from_line = "\nfrom %s" % self.from_
if self.merges is None:
merge_lines = ""
else:
merge_lines = "".join(["\nmerge %s" % (m,)
for m in self.merges])
if use_features and self.properties:
property_lines = []
for name in sorted(self.properties):
value = self.properties[name]
property_lines.append("\n" + format_property(name, value))
properties_section = "".join(property_lines)
else:
properties_section = ""
if self.file_iter is None:
filecommands = ""
else:
if include_file_contents:
format_str = "\n%r"
else:
format_str = "\n%s"
filecommands = "".join([format_str % (c,)
for c in self.iter_files()])
return "commit %s%s%s\n%s%s%s%s%s%s" % (self.ref, mark_line,
author_section, committer, msg_section, from_line, merge_lines,
properties_section, filecommands)
def dump_str(self, names=None, child_lists=None, verbose=False):
result = [ImportCommand.dump_str(self, names, verbose=verbose)]
for f in self.iter_files():
if child_lists is None:
continue
try:
child_names = child_lists[f.name]
except KeyError:
continue
result.append("\t%s" % f.dump_str(child_names, verbose=verbose))
return '\n'.join(result)
def iter_files(self):
"""Iterate over files."""
# file_iter may be a callable or an iterator
if callable(self.file_iter):
return self.file_iter()
return iter(self.file_iter)
class FeatureCommand(ImportCommand):
def __init__(self, feature_name, value=None, lineno=0):
ImportCommand.__init__(self, 'feature')
self.feature_name = feature_name
self.value = value
self.lineno = lineno
def __repr__(self):
if self.value is None:
value_text = ""
else:
value_text = "=%s" % self.value
return "feature %s%s" % (self.feature_name, value_text)
class ProgressCommand(ImportCommand):
def __init__(self, message):
ImportCommand.__init__(self, 'progress')
self.message = message
def __repr__(self):
return "progress %s" % (self.message,)
class ResetCommand(ImportCommand):
def __init__(self, ref, from_):
ImportCommand.__init__(self, 'reset')
self.ref = ref
self.from_ = from_
def __repr__(self):
if self.from_ is None:
from_line = ""
else:
# According to git-fast-import(1), the extra LF is optional here;
# however, versions of git up to 1.5.4.3 had a bug by which the LF
# was needed. Always emit it, since it doesn't hurt and maintains
# compatibility with older versions.
# http://git.kernel.org/?p=git/git.git;a=commit;h=655e8515f279c01f525745d443f509f97cd805ab
from_line = "\nfrom %s\n" % self.from_
return "reset %s%s" % (self.ref, from_line)
class TagCommand(ImportCommand):
def __init__(self, id, from_, tagger, message):
ImportCommand.__init__(self, 'tag')
self.id = id
self.from_ = from_
self.tagger = tagger
self.message = message
def __repr__(self):
if self.from_ is None:
from_line = ""
else:
from_line = "\nfrom %s" % self.from_
if self.tagger is None:
tagger_line = ""
else:
tagger_line = "\ntagger %s" % format_who_when(self.tagger)
if self.message is None:
msg_section = ""
else:
msg = self.message
msg_section = "\ndata %d\n%s" % (len(msg), msg)
return "tag %s%s%s%s" % (self.id, from_line, tagger_line, msg_section)
class FileCommand(ImportCommand):
"""Base class for file commands."""
pass
class FileModifyCommand(FileCommand):
def __init__(self, path, mode, dataref, data):
# Either dataref or data should be null
FileCommand.__init__(self, 'filemodify')
self.path = check_path(path)
self.mode = mode
self.dataref = dataref
self.data = data
self._binary = ['data']
def __repr__(self):
return self.to_string(include_file_contents=True)
def __str__(self):
return self.to_string(include_file_contents=False)
def _format_mode(self, mode):
if mode in (0755, 0100755):
return "755"
elif mode in (0644, 0100644):
return "644"
elif mode == 040000:
return "040000"
elif mode == 0120000:
return "120000"
elif mode == 0160000:
return "160000"
else:
raise AssertionError("Unknown mode %o" % mode)
def to_string(self, include_file_contents=False):
datastr = ""
if stat.S_ISDIR(self.mode):
dataref = '-'
elif self.dataref is None:
dataref = "inline"
if include_file_contents:
datastr = "\ndata %d\n%s" % (len(self.data), self.data)
else:
dataref = "%s" % (self.dataref,)
path = format_path(self.path)
return "M %s %s %s%s" % (self._format_mode(self.mode), dataref, path, datastr)
class FileDeleteCommand(FileCommand):
def __init__(self, path):
FileCommand.__init__(self, 'filedelete')
self.path = check_path(path)
def __repr__(self):
return "D %s" % (format_path(self.path),)
class FileCopyCommand(FileCommand):
def __init__(self, src_path, dest_path):
FileCommand.__init__(self, 'filecopy')
self.src_path = check_path(src_path)
self.dest_path = check_path(dest_path)
def __repr__(self):
return "C %s %s" % (
format_path(self.src_path, quote_spaces=True),
format_path(self.dest_path))
class FileRenameCommand(FileCommand):
def __init__(self, old_path, new_path):
FileCommand.__init__(self, 'filerename')
self.old_path = check_path(old_path)
self.new_path = check_path(new_path)
def __repr__(self):
return "R %s %s" % (
format_path(self.old_path, quote_spaces=True),
format_path(self.new_path))
class FileDeleteAllCommand(FileCommand):
def __init__(self):
FileCommand.__init__(self, 'filedeleteall')
def __repr__(self):
return "deleteall"
def check_path(path):
"""Check that a path is legal.
:return: the path if all is OK
:raise ValueError: if the path is illegal
"""
if path is None or path == '' or path[0] == "/":
raise ValueError("illegal path '%s'" % path)
if type(path) != str:
raise TypeError("illegale type for path '%r'" % path)
return path
def format_path(p, quote_spaces=False):
"""Format a path in utf8, quoting it if necessary."""
if '\n' in p:
import re
p = re.sub('\n', '\\n', p)
quote = True
else:
quote = p[0] == '"' or (quote_spaces and ' ' in p)
if quote:
extra = GIT_FAST_IMPORT_NEEDS_EXTRA_SPACE_AFTER_QUOTE and ' ' or ''
p = '"%s"%s' % (p, extra)
return p
def format_who_when(fields):
"""Format a tuple of name,email,secs-since-epoch,utc-offset-secs as a string."""
offset = fields[3]
if offset < 0:
offset_sign = '-'
offset = abs(offset)
else:
offset_sign = '+'
offset_hours = offset / 3600
offset_minutes = offset / 60 - offset_hours * 60
offset_str = "%s%02d%02d" % (offset_sign, offset_hours, offset_minutes)
name = fields[0]
if name == '':
sep = ''
else:
sep = ' '
if isinstance(name, unicode):
name = name.encode('utf8')
email = fields[1]
if isinstance(email, unicode):
email = email.encode('utf8')
result = "%s%s<%s> %d %s" % (name, sep, email, fields[2], offset_str)
return result
def format_property(name, value):
"""Format the name and value (both unicode) of a property as a string."""
utf8_name = name.encode('utf8')
if value is not None:
utf8_value = value.encode('utf8')
result = "property %s %d %s" % (utf8_name, len(utf8_value), utf8_value)
else:
result = "property %s" % (utf8_name,)
return result
|