105
def get_revno( self ):
106
"""Obtain some sort of revision identifier
110
output = self.run( [ 'brz', 'revno', '--tree' ] )
113
buf = io.StringIO( output )
114
return buf.readline().rstrip()
117
def revert( self, revno = None ):
82
raise the.program.FatalError( 'bzr checkout failed', output )
118
86
"""Revert the branch so that there are no outstanding changes or unknown files.
119
If a revno is supplied, then the repository is reverted to that
124
output = self.run( [ 'brz', 'status' ] )
125
files = self.parse_file_blocks( output )
127
# remove kind changed files (or they can cause `brz revert` to break in
128
# strange situations, like when a directory has been replaced with a
129
# symlink to a non-existant file)
130
if 'kind changed' in files:
131
for file in files[ 'kind changed' ]:
132
matches = re.search( '^(.+?)[/@+]? \([^)]+\)$', file )
135
'failed to parse brz kind change: %s' % file )
136
file = matches.group( 1 )
137
if the.verbose >= 2: print("removing (kind changed): " + file)
138
full_file = os.path.join( self.dir, file )
139
if os.path.isfile( full_file ) or os.path.islink( full_file ):
140
os.unlink( full_file )
141
elif os.path.isdir( full_file ):
142
shutil.rmtree( full_file )
144
raise RuntimeError( 'exotic file in repo: %s' % file )
147
self.run( [ 'brz', 'revert', '--no-backup' ] )
150
output = self.run( [ 'brz', 'status' ] )
90
p = Popen( [ 'bzr', 'revert', '--no-backup' ], cwd = self.dir,
91
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
92
output = p.communicate()[ 0 ]
94
raise the.program.FatalError( 'bzr revert failed', output )
97
p = Popen( [ 'bzr', 'st' ], cwd = self.dir,
98
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
99
output = p.communicate()[ 0 ]
101
raise the.program.FatalError( 'bzr status failed', output )
151
102
files = self.parse_file_blocks( output )
153
104
# remove unknown files
154
105
if 'unknown' in files:
155
106
for file in files[ 'unknown' ]:
156
matches = re.search( r'^(.+?)[/@+]?$', file )
159
'failed to parse brz unknowns: %s' % file )
160
file = matches.group( 1 )
161
if the.verbose >= 2: print("removing (unknown): " + file)
162
107
full_file = os.path.join( self.dir, file )
163
if os.path.isfile( full_file ) or os.path.islink( full_file ):
108
if os.path.isfile( full_file ):
164
109
os.unlink( full_file )
165
elif os.path.isdir( full_file ):
110
elif os.full_file.isdir( full_file ):
166
111
shutil.rmtree( full_file )
168
113
raise RuntimeError( 'exotic file in repo: %s' % file )
170
# if a revision identifier has been given, ensure we're updated to that
171
if revno is not None and self.get_revno() != revno:
174
self.run( [ 'brz', 'update', '-r', revno ] )
177
116
def update( self ):
178
"""Update the branch, pulling down any upstream changes and merging them. This
179
method returns a list of the files that were modified as part of this
183
# WARNING: the following might cause brz to ask for your ssh password more than
184
# once during an update!!!
187
# revno = self.get_revno()
189
# # update to current revision (pull in history without updating tree)
190
# self.run( [ 'brz', 'update', '-r', revno ] )
193
# next_revno = str( int( revno ) + 1 )
194
# output = self.run( [ 'brz', 'log', '-r', next_revno + '..' ] )
197
# keep_files = list()
198
# buf = StringIO.StringIO( output )
201
# line = line.rstrip( '\n' )
202
# if line.lower() == 'message:':
205
# if line[ : 2 ] != ' ':
210
# # process directives
211
# if line[ : 6 ].lower() == 'keep: ':
213
# if file in rename_files: file = rename_files[ file ]
214
# keep_files.append( file )
215
# elif line[ : 8 ].lower() == 'rename: ':
216
# rename_from = line[ 8 : ]
217
# elif line[ : 4 ].lower() == 'to: ':
218
# if rename_from in rename_files:
219
# rename_from = rename_files[ rename_from ]
220
# rename_files[ line[ 4 : ] ] = rename_from
222
# brz update properly
223
output = self.run( [ 'brz', 'update' ] )
225
# parse output (see logic in report() in bzrlib/delta.py)
227
buf = io.StringIO( output )
229
if not re.search( '^[-R+ ?][K NMD!][* ] ', line ): continue
232
# renames show before and after file names
233
matches = re.search( '^R.. (.*?)[/@+]? => (.*?)[/@+]?$', line )
235
files.append( matches.group( 1 ) )
236
files.append( matches.group( 2 ) )
239
# kind changes shows the same name twice
240
matches = re.search( '^.K. (.*?)[/@+]? => (.*?)[/@+]?$', line )
242
files.append( matches.group( 1 ) )
245
# other entries have only one filename
246
matches = re.search( '^... (.*?)[/@+]?$', line )
248
files.append( matches.group( 1 ) )
252
'failed to parse brz update output line:\n%s' % line )
258
"""Get a list of any local modifications. This method returns a list of files
264
output = self.run( [ 'bzr', 'status', '--no-pending' ] )
267
return self.parse_file_blocks( output )
117
"""Update the branch, pulling down any upstream changes and merging them.
121
p = Popen( [ 'bzr', 'update' ], cwd = self.dir,
122
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
123
output = p.communicate()[ 0 ]
125
raise the.program.FatalError( 'bzr update failed', output )
270
128
def has_changes( self ):
271
129
"""Check if the branch has any local modifications.
275
output = self.run( [ 'brz', 'status', '--no-pending' ] )
133
p = Popen( [ 'bzr', 'status', '--no-pending' ], cwd = self.dir,
134
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
135
output = p.communicate()[ 0 ]
137
raise the.program.FatalError( 'bzr status failed', output )
278
138
files = self.parse_file_blocks( output )
279
139
return True if len( files ) else False
283
143
"""Return a list of files that have conflicts.
287
output = self.run( [ 'brz', 'status', '--no-pending' ] )
147
p = Popen( [ 'bzr', 'status', '--no-pending' ], cwd = self.dir,
148
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
149
output = p.communicate()[ 0 ]
151
raise the.program.FatalError( 'bzr status failed', output )
290
152
files = self.parse_file_blocks( output )
291
153
return files['conflicts'] if 'conflicts' in files else None
294
def add( self, files ):
295
"""Make sure files are added to version control.
296
@param files a list of relative filenames
300
self.run( [ 'brz', 'add', '-N' ] + files )
304
"""Commit changes to the repo.
309
self.run( [ 'brz', 'commit', '-m', '' ] )
310
except self.VcsError as e:
311
if re.search( 'Working tree is out of date', e.output ):
312
raise the.program.FatalError(
313
'you must update your files first.\n' +
314
'Hint: see "%s update --help"' % the.program.name );
319
def run( self, cmd ):
320
if the.verbose >= 2: print('exec: %s' % ' '.join( cmd ))
321
p = Popen( cmd, cwd = self.dir,
322
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
323
output = p.communicate()[ 0 ].decode()
325
raise self.VcsError( ' '.join( cmd[ : 2 ] ), output )
327
verbose_output = output.rstrip()
328
if len( verbose_output ):
329
print(re.sub( '(^|\n)', '\\1 : ', verbose_output ))
333
156
def parse_file_blocks( self, output ):
336
buf = io.StringIO( output )
159
buf = StringIO.StringIO( output )
338
161
matches = re.search( '^([a-z ]+):$', line, re.I )