1 """Basic quilt-like functionality
5 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 from stgit.utils import *
25 from stgit.config import config
28 # stack exception class
29 class StackException(Exception):
34 self.should_print = True
35 def __call__(self, x, until_test, prefix):
37 self.should_print = False
39 return x[0:len(prefix)] != prefix
45 __comment_prefix = 'STG:'
46 __patch_prefix = 'STG_PATCH:'
48 def __clean_comments(f):
49 """Removes lines marked for status in a commit file
53 # remove status-prefixed lines
56 patch_filter = FilterUntil()
57 until_test = lambda t: t == (__patch_prefix + '\n')
58 lines = [l for l in lines if patch_filter(l, until_test, __comment_prefix)]
60 # remove empty lines at the end
61 while len(lines) != 0 and lines[-1] == '\n':
64 f.seek(0); f.truncate()
67 def edit_file(series, string, comment, show_patch = True):
69 tmpl = os.path.join(git.base_dir, 'patchdescr.tmpl')
74 elif os.path.isfile(tmpl):
75 print >> f, file(tmpl).read().rstrip()
78 print >> f, __comment_prefix, comment
79 print >> f, __comment_prefix, \
80 'Lines prefixed with "%s" will be automatically removed.' \
82 print >> f, __comment_prefix, \
83 'Trailing empty lines will be automatically removed.'
86 print >> f, __patch_prefix
87 # series.get_patch(series.get_current()).get_top()
88 git.diff([], series.get_patch(series.get_current()).get_bottom(), None, f)
90 #Vim modeline must be near the end.
91 print >> f, __comment_prefix, 'vi: set textwidth=75 filetype=diff:'
95 if config.has_option('stgit', 'editor'):
96 editor = config.get('stgit', 'editor')
97 elif 'EDITOR' in os.environ:
98 editor = os.environ['EDITOR']
101 editor += ' %s' % fname
103 print 'Invoking the editor: "%s"...' % editor,
105 print 'done (exit code: %d)' % os.system(editor)
107 f = file(fname, 'r+')
123 """Basic patch implementation
125 def __init__(self, name, patch_dir):
126 self.__patch_dir = patch_dir
128 self.__dir = os.path.join(self.__patch_dir, self.__name)
132 create_empty_file(os.path.join(self.__dir, 'bottom'))
133 create_empty_file(os.path.join(self.__dir, 'top'))
136 for f in os.listdir(self.__dir):
137 os.remove(os.path.join(self.__dir, f))
143 def rename(self, newname):
145 self.__name = newname
146 self.__dir = os.path.join(self.__patch_dir, self.__name)
148 os.rename(olddir, self.__dir)
150 def __get_field(self, name, multiline = False):
151 id_file = os.path.join(self.__dir, name)
152 if os.path.isfile(id_file):
153 string = read_string(id_file, multiline)
161 def __set_field(self, name, string, multiline = False):
162 fname = os.path.join(self.__dir, name)
163 if string and string != '':
164 write_string(fname, string, multiline)
165 elif os.path.isfile(fname):
168 def get_bottom(self):
169 return self.__get_field('bottom')
171 def set_bottom(self, string, backup = False):
173 curr = self.__get_field('bottom')
175 self.__set_field('bottom.old', curr)
177 self.__set_field('bottom.old', None)
178 self.__set_field('bottom', string)
181 return self.__get_field('top')
183 def set_top(self, string, backup = False):
185 curr = self.__get_field('top')
187 self.__set_field('top.old', curr)
189 self.__set_field('top.old', None)
190 self.__set_field('top', string)
192 def restore_old_boundaries(self):
193 bottom = self.__get_field('bottom.old')
194 top = self.__get_field('top.old')
197 self.__set_field('bottom', bottom)
198 self.__set_field('top', top)
203 def get_description(self):
204 return self.__get_field('description', True)
206 def set_description(self, string):
207 self.__set_field('description', string, True)
209 def get_authname(self):
210 return self.__get_field('authname')
212 def set_authname(self, string):
213 if not string and config.has_option('stgit', 'authname'):
214 string = config.get('stgit', 'authname')
215 self.__set_field('authname', string)
217 def get_authemail(self):
218 return self.__get_field('authemail')
220 def set_authemail(self, string):
221 if not string and config.has_option('stgit', 'authemail'):
222 string = config.get('stgit', 'authemail')
223 self.__set_field('authemail', string)
225 def get_authdate(self):
226 return self.__get_field('authdate')
228 def set_authdate(self, string):
229 self.__set_field('authdate', string)
231 def get_commname(self):
232 return self.__get_field('commname')
234 def set_commname(self, string):
235 if not string and config.has_option('stgit', 'commname'):
236 string = config.get('stgit', 'commname')
237 self.__set_field('commname', string)
239 def get_commemail(self):
240 return self.__get_field('commemail')
242 def set_commemail(self, string):
243 if not string and config.has_option('stgit', 'commemail'):
244 string = config.get('stgit', 'commemail')
245 self.__set_field('commemail', string)
249 """Class including the operations on series
251 def __init__(self, name = None):
252 """Takes a series name as the parameter.
257 self.__name = git.get_head_file()
260 self.__patch_dir = os.path.join(git.base_dir, 'patches',
262 self.__base_file = os.path.join(git.base_dir, 'refs', 'bases',
264 self.__applied_file = os.path.join(self.__patch_dir, 'applied')
265 self.__unapplied_file = os.path.join(self.__patch_dir, 'unapplied')
266 self.__current_file = os.path.join(self.__patch_dir, 'current')
267 self.__descr_file = os.path.join(self.__patch_dir, 'description')
269 def get_branch(self):
270 """Return the branch name for the Series object
274 def __set_current(self, name):
275 """Sets the topmost patch
278 write_string(self.__current_file, name)
280 create_empty_file(self.__current_file)
282 def get_patch(self, name):
283 """Return a Patch object for the given name
285 return Patch(name, self.__patch_dir)
287 def get_current(self):
288 """Return a Patch object representing the topmost patch
290 if os.path.isfile(self.__current_file):
291 name = read_string(self.__current_file)
299 def get_applied(self):
300 if not os.path.isfile(self.__applied_file):
301 raise StackException, 'Branch "%s" not initialised' % self.__name
302 f = file(self.__applied_file)
303 names = [line.strip() for line in f.readlines()]
307 def get_unapplied(self):
308 if not os.path.isfile(self.__unapplied_file):
309 raise StackException, 'Branch "%s" not initialised' % self.__name
310 f = file(self.__unapplied_file)
311 names = [line.strip() for line in f.readlines()]
315 def get_base_file(self):
316 return self.__base_file
318 def get_protected(self):
319 return os.path.isfile(os.path.join(self.__patch_dir, 'protected'))
322 protect_file = os.path.join(self.__patch_dir, 'protected')
323 if not os.path.isfile(protect_file):
324 create_empty_file(protect_file)
327 protect_file = os.path.join(self.__patch_dir, 'protected')
328 if os.path.isfile(protect_file):
329 os.remove(protect_file)
331 def get_description(self):
332 if os.path.isfile(self.__descr_file):
333 return read_string(self.__descr_file)
337 def __patch_is_current(self, patch):
338 return patch.get_name() == read_string(self.__current_file)
340 def __patch_applied(self, name):
341 """Return true if the patch exists in the applied list
343 return name in self.get_applied()
345 def __patch_unapplied(self, name):
346 """Return true if the patch exists in the unapplied list
348 return name in self.get_unapplied()
350 def __begin_stack_check(self):
351 """Save the current HEAD into .git/refs/heads/base if the stack
354 if len(self.get_applied()) == 0:
355 head = git.get_head()
356 write_string(self.__base_file, head)
358 def __end_stack_check(self):
359 """Remove .git/refs/heads/base if the stack is empty.
360 This warning should never happen
362 if len(self.get_applied()) == 0 \
363 and read_string(self.__base_file) != git.get_head():
364 print 'Warning: stack empty but the HEAD and base are different'
366 def head_top_equal(self):
367 """Return true if the head and the top are the same
369 crt = self.get_current()
371 # we don't care, no patches applied
373 return git.get_head() == Patch(crt, self.__patch_dir).get_top()
376 """Initialises the stgit series
378 bases_dir = os.path.join(git.base_dir, 'refs', 'bases')
380 if os.path.isdir(self.__patch_dir):
381 raise StackException, self.__patch_dir + ' already exists'
382 os.makedirs(self.__patch_dir)
384 if not os.path.isdir(bases_dir):
385 os.makedirs(bases_dir)
387 create_empty_file(self.__applied_file)
388 create_empty_file(self.__unapplied_file)
389 create_empty_file(self.__descr_file)
390 self.__begin_stack_check()
392 def delete(self, force = False):
393 """Deletes an stgit series
395 if os.path.isdir(self.__patch_dir):
396 patches = self.get_unapplied() + self.get_applied()
397 if not force and patches:
398 raise StackException, \
399 'Cannot delete: the series still contains patches'
404 if os.path.isfile(self.__applied_file):
405 os.remove(self.__applied_file)
406 if os.path.isfile(self.__unapplied_file):
407 os.remove(self.__unapplied_file)
408 if os.path.isfile(self.__current_file):
409 os.remove(self.__current_file)
410 if os.path.isfile(self.__descr_file):
411 os.remove(self.__descr_file)
412 if not os.listdir(self.__patch_dir):
413 os.rmdir(self.__patch_dir)
415 print 'Series directory %s is not empty.' % self.__name
417 if os.path.isfile(self.__base_file):
418 os.remove(self.__base_file)
420 def refresh_patch(self, message = None, edit = False, show_patch = False,
422 author_name = None, author_email = None,
424 committer_name = None, committer_email = None):
425 """Generates a new commit for the given patch
427 name = self.get_current()
429 raise StackException, 'No patches applied'
431 patch = Patch(name, self.__patch_dir)
433 descr = patch.get_description()
434 if not (message or descr):
440 if not message and edit:
441 descr = edit_file(self, descr.rstrip(), \
442 'Please edit the description for patch "%s" ' \
443 'above.' % name, show_patch)
446 author_name = patch.get_authname()
448 author_email = patch.get_authemail()
450 author_date = patch.get_authdate()
451 if not committer_name:
452 committer_name = patch.get_commname()
453 if not committer_email:
454 committer_email = patch.get_commemail()
456 commit_id = git.commit(message = descr, parents = [patch.get_bottom()],
457 cache_update = cache_update,
459 author_name = author_name,
460 author_email = author_email,
461 author_date = author_date,
462 committer_name = committer_name,
463 committer_email = committer_email)
465 patch.set_top(commit_id)
466 patch.set_description(descr)
467 patch.set_authname(author_name)
468 patch.set_authemail(author_email)
469 patch.set_authdate(author_date)
470 patch.set_commname(committer_name)
471 patch.set_commemail(committer_email)
475 def new_patch(self, name, message = None, can_edit = True,
476 unapplied = False, show_patch = False,
477 top = None, bottom = None,
478 author_name = None, author_email = None, author_date = None,
479 committer_name = None, committer_email = None):
480 """Creates a new patch
482 if self.__patch_applied(name) or self.__patch_unapplied(name):
483 raise StackException, 'Patch "%s" already exists' % name
485 if not message and can_edit:
486 descr = edit_file(self, None, \
487 'Please enter the description for patch "%s" ' \
488 'above.' % name, show_patch)
492 head = git.get_head()
494 self.__begin_stack_check()
496 patch = Patch(name, self.__patch_dir)
500 patch.set_bottom(bottom)
502 patch.set_bottom(head)
508 patch.set_description(descr)
509 patch.set_authname(author_name)
510 patch.set_authemail(author_email)
511 patch.set_authdate(author_date)
512 patch.set_commname(committer_name)
513 patch.set_commemail(committer_email)
516 patches = [patch.get_name()] + self.get_unapplied()
518 f = file(self.__unapplied_file, 'w+')
519 f.writelines([line + '\n' for line in patches])
522 append_string(self.__applied_file, patch.get_name())
523 self.__set_current(name)
525 def delete_patch(self, name):
528 patch = Patch(name, self.__patch_dir)
530 if self.__patch_is_current(patch):
532 elif self.__patch_applied(name):
533 raise StackException, 'Cannot remove an applied patch, "%s", ' \
534 'which is not current' % name
535 elif not name in self.get_unapplied():
536 raise StackException, 'Unknown patch "%s"' % name
540 unapplied = self.get_unapplied()
541 unapplied.remove(name)
542 f = file(self.__unapplied_file, 'w+')
543 f.writelines([line + '\n' for line in unapplied])
546 def forward_patches(self, names):
547 """Try to fast-forward an array of patches.
549 On return, patches in names[0:returned_value] have been pushed on the
550 stack. Apply the rest with push_patch
552 unapplied = self.get_unapplied()
553 self.__begin_stack_check()
559 assert(name in unapplied)
561 patch = Patch(name, self.__patch_dir)
564 bottom = patch.get_bottom()
565 top = patch.get_top()
567 # top != bottom always since we have a commit for each patch
569 # reset the backup information
570 patch.set_bottom(head, backup = True)
571 patch.set_top(top, backup = True)
574 head_tree = git.get_commit(head).get_tree()
575 bottom_tree = git.get_commit(bottom).get_tree()
576 if head_tree == bottom_tree:
577 # We must just reparent this patch and create a new commit
579 descr = patch.get_description()
580 author_name = patch.get_authname()
581 author_email = patch.get_authemail()
582 author_date = patch.get_authdate()
583 committer_name = patch.get_commname()
584 committer_email = patch.get_commemail()
586 top_tree = git.get_commit(top).get_tree()
588 top = git.commit(message = descr, parents = [head],
589 cache_update = False,
592 author_name = author_name,
593 author_email = author_email,
594 author_date = author_date,
595 committer_name = committer_name,
596 committer_email = committer_email)
598 patch.set_bottom(head, backup = True)
599 patch.set_top(top, backup = True)
602 # stop the fast-forwarding, must do a real merge
606 unapplied.remove(name)
610 append_strings(self.__applied_file, names[0:forwarded])
612 f = file(self.__unapplied_file, 'w+')
613 f.writelines([line + '\n' for line in unapplied])
616 self.__set_current(name)
620 def push_patch(self, name):
621 """Pushes a patch on the stack
623 unapplied = self.get_unapplied()
624 assert(name in unapplied)
626 self.__begin_stack_check()
628 patch = Patch(name, self.__patch_dir)
630 head = git.get_head()
631 bottom = patch.get_bottom()
632 top = patch.get_top()
636 # top != bottom always since we have a commit for each patch
638 # reset the backup information
639 patch.set_bottom(bottom, backup = True)
640 patch.set_top(top, backup = True)
644 # new patch needs to be refreshed.
645 # The current patch is empty after merge.
646 patch.set_bottom(head, backup = True)
647 patch.set_top(head, backup = True)
649 # Try the fast applying first. If this fails, fall back to the
651 if not git.apply_diff(bottom, top):
652 # merge can fail but the patch needs to be pushed
654 git.merge(bottom, head, top)
655 except git.GitException, ex:
656 print >> sys.stderr, \
657 'The merge failed during "push". ' \
658 'Use "refresh" after fixing the conflicts'
660 append_string(self.__applied_file, name)
662 unapplied.remove(name)
663 f = file(self.__unapplied_file, 'w+')
664 f.writelines([line + '\n' for line in unapplied])
667 self.__set_current(name)
669 # head == bottom case doesn't need to refresh the patch
672 # if the merge was OK and no conflicts, just refresh the patch
673 # The GIT cache was already updated by the merge operation
674 self.refresh_patch(cache_update = False)
676 raise StackException, str(ex)
679 name = self.get_current()
682 patch = Patch(name, self.__patch_dir)
685 return patch.restore_old_boundaries()
687 def pop_patch(self, name):
688 """Pops the top patch from the stack
690 applied = self.get_applied()
692 assert(name in applied)
694 patch = Patch(name, self.__patch_dir)
696 git.switch(patch.get_bottom())
698 # save the new applied list
699 idx = applied.index(name) + 1
701 popped = applied[:idx]
703 unapplied = popped + self.get_unapplied()
705 f = file(self.__unapplied_file, 'w+')
706 f.writelines([line + '\n' for line in unapplied])
712 f = file(self.__applied_file, 'w+')
713 f.writelines([line + '\n' for line in applied])
717 self.__set_current(None)
719 self.__set_current(applied[-1])
721 self.__end_stack_check()
723 def empty_patch(self, name):
724 """Returns True if the patch is empty
726 patch = Patch(name, self.__patch_dir)
727 bottom = patch.get_bottom()
728 top = patch.get_top()
732 elif git.get_commit(top).get_tree() \
733 == git.get_commit(bottom).get_tree():
738 def rename_patch(self, oldname, newname):
739 applied = self.get_applied()
740 unapplied = self.get_unapplied()
742 if newname in applied or newname in unapplied:
743 raise StackException, 'Patch "%s" already exists' % newname
745 if oldname in unapplied:
746 Patch(oldname, self.__patch_dir).rename(newname)
747 unapplied[unapplied.index(oldname)] = newname
749 f = file(self.__unapplied_file, 'w+')
750 f.writelines([line + '\n' for line in unapplied])
752 elif oldname in applied:
753 Patch(oldname, self.__patch_dir).rename(newname)
754 if oldname == self.get_current():
755 self.__set_current(newname)
757 applied[applied.index(oldname)] = newname
759 f = file(self.__applied_file, 'w+')
760 f.writelines([line + '\n' for line in applied])
763 raise StackException, 'Unknown patch "%s"' % oldname