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, line, comment, show_patch = True):
69 tmpl = os.path.join(git.get_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 nobackup:'
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, series_dir):
126 self.__series_dir = series_dir
128 self.__dir = os.path.join(self.__series_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.__series_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 line = read_string(id_file, multiline)
161 def __set_field(self, name, value, multiline = False):
162 fname = os.path.join(self.__dir, name)
163 if value and value != '':
164 write_string(fname, value, multiline)
165 elif os.path.isfile(fname):
168 def get_old_bottom(self):
169 return self.__get_field('bottom.old')
171 def get_bottom(self):
172 return self.__get_field('bottom')
174 def set_bottom(self, value, backup = False):
176 curr = self.__get_field('bottom')
178 self.__set_field('bottom.old', curr)
180 self.__set_field('bottom.old', None)
181 self.__set_field('bottom', value)
183 def get_old_top(self):
184 return self.__get_field('top.old')
187 return self.__get_field('top')
189 def set_top(self, value, backup = False):
191 curr = self.__get_field('top')
193 self.__set_field('top.old', curr)
195 self.__set_field('top.old', None)
196 self.__set_field('top', value)
198 def restore_old_boundaries(self):
199 bottom = self.__get_field('bottom.old')
200 top = self.__get_field('top.old')
203 self.__set_field('bottom', bottom)
204 self.__set_field('top', top)
209 def get_description(self):
210 return self.__get_field('description', True)
212 def set_description(self, line):
213 self.__set_field('description', line, True)
215 def get_authname(self):
216 return self.__get_field('authname')
218 def set_authname(self, name):
220 if config.has_option('stgit', 'authname'):
221 name = config.get('stgit', 'authname')
222 elif 'GIT_AUTHOR_NAME' in os.environ:
223 name = os.environ['GIT_AUTHOR_NAME']
224 self.__set_field('authname', name)
226 def get_authemail(self):
227 return self.__get_field('authemail')
229 def set_authemail(self, address):
231 if config.has_option('stgit', 'authemail'):
232 address = config.get('stgit', 'authemail')
233 elif 'GIT_AUTHOR_EMAIL' in os.environ:
234 address = os.environ['GIT_AUTHOR_EMAIL']
235 self.__set_field('authemail', address)
237 def get_authdate(self):
238 return self.__get_field('authdate')
240 def set_authdate(self, date):
241 if not date and 'GIT_AUTHOR_DATE' in os.environ:
242 date = os.environ['GIT_AUTHOR_DATE']
243 self.__set_field('authdate', date)
245 def get_commname(self):
246 return self.__get_field('commname')
248 def set_commname(self, name):
250 if config.has_option('stgit', 'commname'):
251 name = config.get('stgit', 'commname')
252 elif 'GIT_COMMITTER_NAME' in os.environ:
253 name = os.environ['GIT_COMMITTER_NAME']
254 self.__set_field('commname', name)
256 def get_commemail(self):
257 return self.__get_field('commemail')
259 def set_commemail(self, address):
261 if config.has_option('stgit', 'commemail'):
262 address = config.get('stgit', 'commemail')
263 elif 'GIT_COMMITTER_EMAIL' in os.environ:
264 address = os.environ['GIT_COMMITTER_EMAIL']
265 self.__set_field('commemail', address)
269 """Class including the operations on series
271 def __init__(self, name = None):
272 """Takes a series name as the parameter.
278 self.__name = git.get_head_file()
279 base_dir = git.get_base_dir()
280 except git.GitException, ex:
281 raise StackException, 'GIT tree not initialised: %s' % ex
283 self.__series_dir = os.path.join(base_dir, 'patches',
285 self.__base_file = os.path.join(base_dir, 'refs', 'bases',
288 self.__applied_file = os.path.join(self.__series_dir, 'applied')
289 self.__unapplied_file = os.path.join(self.__series_dir, 'unapplied')
290 self.__current_file = os.path.join(self.__series_dir, 'current')
291 self.__descr_file = os.path.join(self.__series_dir, 'description')
293 # where this series keeps its patches
294 self.__patch_dir = os.path.join(self.__series_dir, 'patches')
295 if not os.path.isdir(self.__patch_dir):
296 self.__patch_dir = self.__series_dir
298 def get_branch(self):
299 """Return the branch name for the Series object
303 def __set_current(self, name):
304 """Sets the topmost patch
307 write_string(self.__current_file, name)
309 create_empty_file(self.__current_file)
311 def get_patch(self, name):
312 """Return a Patch object for the given name
314 return Patch(name, self.__patch_dir)
316 def get_current(self):
317 """Return a Patch object representing the topmost patch
319 if os.path.isfile(self.__current_file):
320 name = read_string(self.__current_file)
328 def get_applied(self):
329 if not os.path.isfile(self.__applied_file):
330 raise StackException, 'Branch "%s" not initialised' % self.__name
331 f = file(self.__applied_file)
332 names = [line.strip() for line in f.readlines()]
336 def get_unapplied(self):
337 if not os.path.isfile(self.__unapplied_file):
338 raise StackException, 'Branch "%s" not initialised' % self.__name
339 f = file(self.__unapplied_file)
340 names = [line.strip() for line in f.readlines()]
344 def get_base_file(self):
345 return self.__base_file
347 def get_protected(self):
348 return os.path.isfile(os.path.join(self.__series_dir, 'protected'))
351 protect_file = os.path.join(self.__series_dir, 'protected')
352 if not os.path.isfile(protect_file):
353 create_empty_file(protect_file)
356 protect_file = os.path.join(self.__series_dir, 'protected')
357 if os.path.isfile(protect_file):
358 os.remove(protect_file)
360 def get_description(self):
361 if os.path.isfile(self.__descr_file):
362 return read_string(self.__descr_file)
366 def __patch_is_current(self, patch):
367 return patch.get_name() == read_string(self.__current_file)
369 def __patch_applied(self, name):
370 """Return true if the patch exists in the applied list
372 return name in self.get_applied()
374 def __patch_unapplied(self, name):
375 """Return true if the patch exists in the unapplied list
377 return name in self.get_unapplied()
379 def __begin_stack_check(self):
380 """Save the current HEAD into .git/refs/heads/base if the stack
383 if len(self.get_applied()) == 0:
384 head = git.get_head()
385 write_string(self.__base_file, head)
387 def __end_stack_check(self):
388 """Remove .git/refs/heads/base if the stack is empty.
389 This warning should never happen
391 if len(self.get_applied()) == 0 \
392 and read_string(self.__base_file) != git.get_head():
393 print 'Warning: stack empty but the HEAD and base are different'
395 def head_top_equal(self):
396 """Return true if the head and the top are the same
398 crt = self.get_current()
400 # we don't care, no patches applied
402 return git.get_head() == Patch(crt, self.__patch_dir).get_top()
404 def is_initialised(self):
405 """Checks if series is already initialised
407 return os.path.isdir(self.__patch_dir)
410 """Initialises the stgit series
412 bases_dir = os.path.join(git.get_base_dir(), 'refs', 'bases')
414 if self.is_initialised():
415 raise StackException, self.__patch_dir + ' already exists'
416 os.makedirs(self.__patch_dir)
418 if not os.path.isdir(bases_dir):
419 os.makedirs(bases_dir)
421 create_empty_file(self.__applied_file)
422 create_empty_file(self.__unapplied_file)
423 create_empty_file(self.__descr_file)
424 os.makedirs(os.path.join(self.__series_dir, 'patches'))
425 self.__begin_stack_check()
428 """Either convert to use a separate patch directory, or
429 unconvert to place the patches in the same directory with
432 if self.__patch_dir == self.__series_dir:
433 print 'Converting old-style to new-style...',
436 self.__patch_dir = os.path.join(self.__series_dir, 'patches')
437 os.makedirs(self.__patch_dir)
439 for p in self.get_applied() + self.get_unapplied():
440 src = os.path.join(self.__series_dir, p)
441 dest = os.path.join(self.__patch_dir, p)
447 print 'Converting new-style to old-style...',
450 for p in self.get_applied() + self.get_unapplied():
451 src = os.path.join(self.__patch_dir, p)
452 dest = os.path.join(self.__series_dir, p)
455 if not os.listdir(self.__patch_dir):
456 os.rmdir(self.__patch_dir)
459 print 'Patch directory %s is not empty.' % self.__name
461 self.__patch_dir = self.__series_dir
463 def rename(self, to_name):
466 to_stack = Series(to_name)
468 if to_stack.is_initialised():
469 raise StackException, '"%s" already exists' % to_stack.get_branch()
470 if os.path.exists(to_stack.__base_file):
471 os.remove(to_stack.__base_file)
473 git.rename_branch(self.__name, to_name)
475 if os.path.isdir(self.__series_dir):
476 os.rename(self.__series_dir, to_stack.__series_dir)
477 if os.path.exists(self.__base_file):
478 os.rename(self.__base_file, to_stack.__base_file)
480 self.__init__(to_name)
482 def clone(self, target_series):
485 base = read_string(self.get_base_file())
486 git.create_branch(target_series, tree_id = base)
487 Series(target_series).init()
488 new_series = Series(target_series)
490 # generate an artificial description file
491 write_string(new_series.__descr_file, 'clone of "%s"' % self.__name)
493 # clone self's entire series as unapplied patches
494 patches = self.get_applied() + self.get_unapplied()
497 patch = self.get_patch(p)
498 new_series.new_patch(p, message = patch.get_description(),
499 can_edit = False, unapplied = True,
500 bottom = patch.get_bottom(),
501 top = patch.get_top(),
502 author_name = patch.get_authname(),
503 author_email = patch.get_authemail(),
504 author_date = patch.get_authdate())
506 # fast forward the cloned series to self's top
507 new_series.forward_patches(self.get_applied())
509 def delete(self, force = False):
510 """Deletes an stgit series
512 if self.is_initialised():
513 patches = self.get_unapplied() + self.get_applied()
514 if not force and patches:
515 raise StackException, \
516 'Cannot delete: the series still contains patches'
518 Patch(p, self.__patch_dir).delete()
520 if os.path.exists(self.__applied_file):
521 os.remove(self.__applied_file)
522 if os.path.exists(self.__unapplied_file):
523 os.remove(self.__unapplied_file)
524 if os.path.exists(self.__current_file):
525 os.remove(self.__current_file)
526 if os.path.exists(self.__descr_file):
527 os.remove(self.__descr_file)
528 if not os.listdir(self.__patch_dir):
529 os.rmdir(self.__patch_dir)
531 print 'Patch directory %s is not empty.' % self.__name
532 if not os.listdir(self.__series_dir):
533 os.rmdir(self.__series_dir)
535 print 'Series directory %s is not empty.' % self.__name
537 if os.path.exists(self.__base_file):
538 os.remove(self.__base_file)
540 def refresh_patch(self, files = None, message = None, edit = False,
543 author_name = None, author_email = None,
545 committer_name = None, committer_email = None):
546 """Generates a new commit for the given patch
548 name = self.get_current()
550 raise StackException, 'No patches applied'
552 patch = Patch(name, self.__patch_dir)
554 descr = patch.get_description()
555 if not (message or descr):
561 if not message and edit:
562 descr = edit_file(self, descr.rstrip(), \
563 'Please edit the description for patch "%s" ' \
564 'above.' % name, show_patch)
567 author_name = patch.get_authname()
569 author_email = patch.get_authemail()
571 author_date = patch.get_authdate()
572 if not committer_name:
573 committer_name = patch.get_commname()
574 if not committer_email:
575 committer_email = patch.get_commemail()
577 commit_id = git.commit(files = files,
578 message = descr, parents = [patch.get_bottom()],
579 cache_update = cache_update,
581 author_name = author_name,
582 author_email = author_email,
583 author_date = author_date,
584 committer_name = committer_name,
585 committer_email = committer_email)
587 patch.set_top(commit_id)
588 patch.set_description(descr)
589 patch.set_authname(author_name)
590 patch.set_authemail(author_email)
591 patch.set_authdate(author_date)
592 patch.set_commname(committer_name)
593 patch.set_commemail(committer_email)
597 def new_patch(self, name, message = None, can_edit = True,
598 unapplied = False, show_patch = False,
599 top = None, bottom = None,
600 author_name = None, author_email = None, author_date = None,
601 committer_name = None, committer_email = None):
602 """Creates a new patch
604 if self.__patch_applied(name) or self.__patch_unapplied(name):
605 raise StackException, 'Patch "%s" already exists' % name
607 if not message and can_edit:
608 descr = edit_file(self, None, \
609 'Please enter the description for patch "%s" ' \
610 'above.' % name, show_patch)
614 head = git.get_head()
616 self.__begin_stack_check()
618 patch = Patch(name, self.__patch_dir)
622 patch.set_bottom(bottom)
624 patch.set_bottom(head)
630 patch.set_description(descr)
631 patch.set_authname(author_name)
632 patch.set_authemail(author_email)
633 patch.set_authdate(author_date)
634 patch.set_commname(committer_name)
635 patch.set_commemail(committer_email)
638 patches = [patch.get_name()] + self.get_unapplied()
640 f = file(self.__unapplied_file, 'w+')
641 f.writelines([line + '\n' for line in patches])
644 append_string(self.__applied_file, patch.get_name())
645 self.__set_current(name)
647 def delete_patch(self, name):
650 patch = Patch(name, self.__patch_dir)
652 if self.__patch_is_current(patch):
654 elif self.__patch_applied(name):
655 raise StackException, 'Cannot remove an applied patch, "%s", ' \
656 'which is not current' % name
657 elif not name in self.get_unapplied():
658 raise StackException, 'Unknown patch "%s"' % name
662 unapplied = self.get_unapplied()
663 unapplied.remove(name)
664 f = file(self.__unapplied_file, 'w+')
665 f.writelines([line + '\n' for line in unapplied])
668 def forward_patches(self, names):
669 """Try to fast-forward an array of patches.
671 On return, patches in names[0:returned_value] have been pushed on the
672 stack. Apply the rest with push_patch
674 unapplied = self.get_unapplied()
675 self.__begin_stack_check()
681 assert(name in unapplied)
683 patch = Patch(name, self.__patch_dir)
686 bottom = patch.get_bottom()
687 top = patch.get_top()
689 # top != bottom always since we have a commit for each patch
691 # reset the backup information
692 patch.set_bottom(head, backup = True)
693 patch.set_top(top, backup = True)
696 head_tree = git.get_commit(head).get_tree()
697 bottom_tree = git.get_commit(bottom).get_tree()
698 if head_tree == bottom_tree:
699 # We must just reparent this patch and create a new commit
701 descr = patch.get_description()
702 author_name = patch.get_authname()
703 author_email = patch.get_authemail()
704 author_date = patch.get_authdate()
705 committer_name = patch.get_commname()
706 committer_email = patch.get_commemail()
708 top_tree = git.get_commit(top).get_tree()
710 top = git.commit(message = descr, parents = [head],
711 cache_update = False,
714 author_name = author_name,
715 author_email = author_email,
716 author_date = author_date,
717 committer_name = committer_name,
718 committer_email = committer_email)
720 patch.set_bottom(head, backup = True)
721 patch.set_top(top, backup = True)
724 # stop the fast-forwarding, must do a real merge
728 unapplied.remove(name)
735 append_strings(self.__applied_file, names[0:forwarded])
737 f = file(self.__unapplied_file, 'w+')
738 f.writelines([line + '\n' for line in unapplied])
741 self.__set_current(name)
745 def push_patch(self, name):
746 """Pushes a patch on the stack
748 unapplied = self.get_unapplied()
749 assert(name in unapplied)
751 self.__begin_stack_check()
753 patch = Patch(name, self.__patch_dir)
755 head = git.get_head()
756 bottom = patch.get_bottom()
757 top = patch.get_top()
762 # top != bottom always since we have a commit for each patch
764 # reset the backup information
765 patch.set_bottom(bottom, backup = True)
766 patch.set_top(top, backup = True)
770 # new patch needs to be refreshed.
771 # The current patch is empty after merge.
772 patch.set_bottom(head, backup = True)
773 patch.set_top(head, backup = True)
775 # Try the fast applying first. If this fails, fall back to the
777 if not git.apply_diff(bottom, top):
778 # if git.apply_diff() fails, the patch requires a diff3
779 # merge and can be reported as modified
782 # merge can fail but the patch needs to be pushed
784 git.merge(bottom, head, top)
785 except git.GitException, ex:
786 print >> sys.stderr, \
787 'The merge failed during "push". ' \
788 'Use "refresh" after fixing the conflicts'
790 append_string(self.__applied_file, name)
792 unapplied.remove(name)
793 f = file(self.__unapplied_file, 'w+')
794 f.writelines([line + '\n' for line in unapplied])
797 self.__set_current(name)
799 # head == bottom case doesn't need to refresh the patch
802 # if the merge was OK and no conflicts, just refresh the patch
803 # The GIT cache was already updated by the merge operation
804 self.refresh_patch(cache_update = False)
806 raise StackException, str(ex)
811 name = self.get_current()
814 patch = Patch(name, self.__patch_dir)
817 return patch.restore_old_boundaries()
819 def pop_patch(self, name):
820 """Pops the top patch from the stack
822 applied = self.get_applied()
824 assert(name in applied)
826 patch = Patch(name, self.__patch_dir)
828 git.switch(patch.get_bottom())
830 # save the new applied list
831 idx = applied.index(name) + 1
833 popped = applied[:idx]
835 unapplied = popped + self.get_unapplied()
837 f = file(self.__unapplied_file, 'w+')
838 f.writelines([line + '\n' for line in unapplied])
844 f = file(self.__applied_file, 'w+')
845 f.writelines([line + '\n' for line in applied])
849 self.__set_current(None)
851 self.__set_current(applied[-1])
853 self.__end_stack_check()
855 def empty_patch(self, name):
856 """Returns True if the patch is empty
858 patch = Patch(name, self.__patch_dir)
859 bottom = patch.get_bottom()
860 top = patch.get_top()
864 elif git.get_commit(top).get_tree() \
865 == git.get_commit(bottom).get_tree():
870 def rename_patch(self, oldname, newname):
871 applied = self.get_applied()
872 unapplied = self.get_unapplied()
874 if oldname == newname:
875 raise StackException, '"To" name and "from" name are the same'
877 if newname in applied or newname in unapplied:
878 raise StackException, 'Patch "%s" already exists' % newname
880 if oldname in unapplied:
881 Patch(oldname, self.__patch_dir).rename(newname)
882 unapplied[unapplied.index(oldname)] = newname
884 f = file(self.__unapplied_file, 'w+')
885 f.writelines([line + '\n' for line in unapplied])
887 elif oldname in applied:
888 Patch(oldname, self.__patch_dir).rename(newname)
889 if oldname == self.get_current():
890 self.__set_current(newname)
892 applied[applied.index(oldname)] = newname
894 f = file(self.__applied_file, 'w+')
895 f.writelines([line + '\n' for line in applied])
898 raise StackException, 'Unknown patch "%s"' % oldname