Fix up help string for "stg clone"
[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
e7dc3866
CL
27crt_series = None
28
fcee87cf
CM
29
30# Command exception class
31class CmdException(Exception):
32 pass
33
34
fcee87cf 35# Utility functions
a2dcde71 36def git_id(string):
fcee87cf
CM
37 """Return the GIT id
38 """
39 if not string:
40 return None
41
42 string_list = string.split('/')
a2dcde71
CM
43 if len(string_list) == 2:
44 patch_id = string_list[1]
45 if not patch_id:
46 patch_id = 'top'
47 elif len(string_list) == 1:
48 patch_id = 'top'
49 else:
50 patch_id = None
fcee87cf 51
a2dcde71
CM
52 patch_branch = string_list[0].split('@')
53 if len(patch_branch) == 1:
54 series = crt_series
55 elif len(patch_branch) == 2:
56 series = stack.Series(patch_branch[1])
57 else:
58 raise CmdException, 'Unknown id: %s' % string
fcee87cf 59
a2dcde71
CM
60 patch_name = patch_branch[0]
61 if not patch_name:
62 patch_name = series.get_current()
fcee87cf
CM
63 if not patch_name:
64 raise CmdException, 'No patches applied'
fcee87cf 65
a2dcde71
CM
66 # patch
67 if patch_name in series.get_applied() \
68 or patch_name in series.get_unapplied():
69 if patch_id == 'top':
70 return series.get_patch(patch_name).get_top()
71 elif patch_id == 'bottom':
72 return series.get_patch(patch_name).get_bottom()
54b09584
PBG
73 # Note we can return None here.
74 elif patch_id == 'top.old':
75 return series.get_patch(patch_name).get_old_top()
76 elif patch_id == 'bottom.old':
77 return series.get_patch(patch_name).get_old_bottom()
a2dcde71
CM
78
79 # base
80 if patch_name == 'base' and len(string_list) == 1:
81 return read_string(series.get_base_file())
fcee87cf 82
a2dcde71
CM
83 # anything else failed
84 return git.rev_parse(string)
fcee87cf
CM
85
86def check_local_changes():
87 if git.local_changes():
88 raise CmdException, \
89 'local changes in the tree. Use "refresh" to commit them'
90
91def check_head_top_equal():
92 if not crt_series.head_top_equal():
93 raise CmdException, \
94 'HEAD and top are not the same. You probably committed\n' \
95 ' changes to the tree ouside of StGIT. If you know what you\n' \
96 ' are doing, use the "refresh -f" command'
97
98def check_conflicts():
99 if os.path.exists(os.path.join(git.base_dir, 'conflicts')):
100 raise CmdException, 'Unsolved conflicts. Please resolve them first'
101
94b7894d
CL
102def print_crt_patch(branch = None):
103 if not branch:
104 patch = crt_series.get_current()
105 else:
106 patch = stack.Series(branch).get_current()
107
fcee87cf
CM
108 if patch:
109 print 'Now at patch "%s"' % patch
110 else:
111 print 'No patches applied'
112
7c47d096
CM
113def resolved(filename, reset = None):
114 if reset:
115 reset_file = filename + '.' + reset
116 if os.path.isfile(reset_file):
117 if os.path.isfile(filename):
118 os.remove(filename)
119 os.rename(reset_file, filename)
120
402ad990 121 git.update_cache([filename], force = True)
7c47d096 122
fcee87cf
CM
123 for ext in ['.local', '.older', '.remote']:
124 fn = filename + ext
125 if os.path.isfile(fn):
126 os.remove(fn)
127
7c47d096 128def resolved_all(reset = None):
fcee87cf
CM
129 conflicts = git.get_conflicts()
130 if conflicts:
131 for filename in conflicts:
7c47d096 132 resolved(filename, reset)
fcee87cf 133 os.remove(os.path.join(git.base_dir, 'conflicts'))
19cd0a8f
CM
134
135def name_email(string):
136 """Return a tuple consisting of the name and email parsed from a
137 standard 'name <email>' string
138 """
9cd0fc96
CM
139 string = re.sub('([^\w\s<>@.])', '\\\\\\1', string)
140 str_list = re.findall('^(.*)\s*<(.*)>\s*$', string)
37a4d1bf 141 if not str_list:
19cd0a8f
CM
142 raise CmdException, 'Incorrect "name <email>" string: %s' % string
143
37a4d1bf
CM
144 return str_list[0]
145
146def name_email_date(string):
147 """Return a tuple consisting of the name, email and date parsed
148 from a 'name <email> date' string
149 """
9cd0fc96
CM
150 string = re.sub('([^\w\s<>@.])', '\\\\\\1', string)
151 str_list = re.findall('^(.*)\s*<(.*)>\s*(.*)\s*$', string)
37a4d1bf
CM
152 if not str_list:
153 raise CmdException, 'Incorrect "name <email> date" string: %s' % string
154
155 return str_list[0]