1 """Function/variables commmon to all the commands
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
22 from optparse import OptionParser, make_option
24 from stgit.utils import *
25 from stgit import stack, git
28 # Command exception class
29 class CmdException(Exception):
35 crt_series = stack.Series()
36 except (IOError, stack.StackException, git.GitException), err:
37 print >> sys.stderr, err
48 string_list = string.split('/')
50 if len(string_list) == 1:
52 git_id = string_list[0]
57 return read_string(crt_series.get_base_file())
59 for path in [os.path.join(git.base_dir, 'refs', 'heads'),
60 os.path.join(git.base_dir, 'refs', 'tags')]:
61 id_file = os.path.join(path, git_id)
62 if os.path.isfile(id_file):
63 return read_string(id_file)
64 elif len(string_list) == 2:
65 patch_name = string_list[0]
67 patch_name = crt_series.get_current()
68 git_id = string_list[1]
71 raise CmdException, 'No patches applied'
72 elif not (patch_name in crt_series.get_applied()
73 + crt_series.get_unapplied()):
74 raise CmdException, 'Unknown patch "%s"' % patch_name
76 if git_id == 'bottom':
77 return crt_series.get_patch(patch_name).get_bottom()
79 return crt_series.get_patch(patch_name).get_top()
81 raise CmdException, 'Unknown id: %s' % string
83 def check_local_changes():
84 if git.local_changes():
86 'local changes in the tree. Use "refresh" to commit them'
88 def check_head_top_equal():
89 if not crt_series.head_top_equal():
91 'HEAD and top are not the same. You probably committed\n' \
92 ' changes to the tree ouside of StGIT. If you know what you\n' \
93 ' are doing, use the "refresh -f" command'
95 def check_conflicts():
96 if os.path.exists(os.path.join(git.base_dir, 'conflicts')):
97 raise CmdException, 'Unsolved conflicts. Please resolve them first'
99 def print_crt_patch():
100 patch = crt_series.get_current()
102 print 'Now at patch "%s"' % patch
104 print 'No patches applied'
106 def resolved(filename):
107 git.update_cache([filename])
108 for ext in ['.local', '.older', '.remote']:
110 if os.path.isfile(fn):
114 conflicts = git.get_conflicts()
116 for filename in conflicts:
118 os.remove(os.path.join(git.base_dir, 'conflicts'))