Ask vim to avoid backup copies of .stgit.msg
[stgit] / stgit / commands / common.py
CommitLineData
fcee87cf
CM
1"""Function/variables commmon to all the commands
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
19cd0a8f 21import sys, os, re
fcee87cf
CM
22from optparse import OptionParser, make_option
23
24from stgit.utils import *
25from stgit import stack, git
26
27
28# Command exception class
29class CmdException(Exception):
30 pass
31
32
fcee87cf 33# Utility functions
a2dcde71 34def git_id(string):
fcee87cf
CM
35 """Return the GIT id
36 """
37 if not string:
38 return None
39
40 string_list = string.split('/')
a2dcde71
CM
41 if len(string_list) == 2:
42 patch_id = string_list[1]
43 if not patch_id:
44 patch_id = 'top'
45 elif len(string_list) == 1:
46 patch_id = 'top'
47 else:
48 patch_id = None
fcee87cf 49
a2dcde71
CM
50 patch_branch = string_list[0].split('@')
51 if len(patch_branch) == 1:
52 series = crt_series
53 elif len(patch_branch) == 2:
54 series = stack.Series(patch_branch[1])
55 else:
56 raise CmdException, 'Unknown id: %s' % string
fcee87cf 57
a2dcde71
CM
58 patch_name = patch_branch[0]
59 if not patch_name:
60 patch_name = series.get_current()
fcee87cf
CM
61 if not patch_name:
62 raise CmdException, 'No patches applied'
fcee87cf 63
a2dcde71
CM
64 # patch
65 if patch_name in series.get_applied() \
66 or patch_name in series.get_unapplied():
67 if patch_id == 'top':
68 return series.get_patch(patch_name).get_top()
69 elif patch_id == 'bottom':
70 return series.get_patch(patch_name).get_bottom()
54b09584
PBG
71 # Note we can return None here.
72 elif patch_id == 'top.old':
73 return series.get_patch(patch_name).get_old_top()
74 elif patch_id == 'bottom.old':
75 return series.get_patch(patch_name).get_old_bottom()
a2dcde71
CM
76
77 # base
78 if patch_name == 'base' and len(string_list) == 1:
79 return read_string(series.get_base_file())
fcee87cf 80
a2dcde71
CM
81 # anything else failed
82 return git.rev_parse(string)
fcee87cf
CM
83
84def check_local_changes():
85 if git.local_changes():
86 raise CmdException, \
87 'local changes in the tree. Use "refresh" to commit them'
88
89def check_head_top_equal():
90 if not crt_series.head_top_equal():
91 raise CmdException, \
92 'HEAD and top are not the same. You probably committed\n' \
93 ' changes to the tree ouside of StGIT. If you know what you\n' \
94 ' are doing, use the "refresh -f" command'
95
96def check_conflicts():
97 if os.path.exists(os.path.join(git.base_dir, 'conflicts')):
98 raise CmdException, 'Unsolved conflicts. Please resolve them first'
99
94b7894d
CL
100def print_crt_patch(branch = None):
101 if not branch:
102 patch = crt_series.get_current()
103 else:
104 patch = stack.Series(branch).get_current()
105
fcee87cf
CM
106 if patch:
107 print 'Now at patch "%s"' % patch
108 else:
109 print 'No patches applied'
110
7c47d096
CM
111def resolved(filename, reset = None):
112 if reset:
113 reset_file = filename + '.' + reset
114 if os.path.isfile(reset_file):
115 if os.path.isfile(filename):
116 os.remove(filename)
117 os.rename(reset_file, filename)
118
402ad990 119 git.update_cache([filename], force = True)
7c47d096 120
fcee87cf
CM
121 for ext in ['.local', '.older', '.remote']:
122 fn = filename + ext
123 if os.path.isfile(fn):
124 os.remove(fn)
125
7c47d096 126def resolved_all(reset = None):
fcee87cf
CM
127 conflicts = git.get_conflicts()
128 if conflicts:
129 for filename in conflicts:
7c47d096 130 resolved(filename, reset)
fcee87cf 131 os.remove(os.path.join(git.base_dir, 'conflicts'))
19cd0a8f
CM
132
133def name_email(string):
134 """Return a tuple consisting of the name and email parsed from a
135 standard 'name <email>' string
136 """
9cd0fc96
CM
137 string = re.sub('([^\w\s<>@.])', '\\\\\\1', string)
138 str_list = re.findall('^(.*)\s*<(.*)>\s*$', string)
37a4d1bf 139 if not str_list:
19cd0a8f
CM
140 raise CmdException, 'Incorrect "name <email>" string: %s' % string
141
37a4d1bf
CM
142 return str_list[0]
143
144def name_email_date(string):
145 """Return a tuple consisting of the name, email and date parsed
146 from a 'name <email> date' string
147 """
9cd0fc96
CM
148 string = re.sub('([^\w\s<>@.])', '\\\\\\1', string)
149 str_list = re.findall('^(.*)\s*<(.*)>\s*(.*)\s*$', string)
37a4d1bf
CM
150 if not str_list:
151 raise CmdException, 'Incorrect "name <email> date" string: %s' % string
152
153 return str_list[0]