82
raise the.program.FatalError( 'bzr checkout failed', output )
100
def get_revno( self ):
101
"""Obtain some sort of revision identifier
105
output = self.run( [ 'bzr', 'revno', '--tree' ] )
108
buf = io.StringIO( output )
109
return buf.readline().rstrip()
112
def revert( self, revno = None ):
86
113
"""Revert the branch so that there are no outstanding changes or unknown files.
114
If a revno is supplied, then the repository is reverted to that
119
output = self.run( [ 'bzr', 'status' ] )
120
files = self.parse_file_blocks( output )
122
# remove kind changed files (or they can cause `bzr revert` to break in
123
# strange situations, like when a directory has been replaced with a
124
# symlink to a non-existant file)
125
if 'kind changed' in files:
126
for file in files[ 'kind changed' ]:
127
matches = re.search( '^(.+?)[/@+]? \([^)]+\)$', file )
130
'failed to parse bzr kind change: %s' % file )
131
file = matches.group( 1 )
132
if the.verbose >= 2: print("removing (kind changed): " + file)
133
full_file = os.path.join( self.dir, file )
134
if os.path.isfile( full_file ) or os.path.islink( full_file ):
135
os.unlink( full_file )
136
elif os.path.isdir( full_file ):
137
shutil.rmtree( full_file )
139
raise RuntimeError( 'exotic file in repo: %s' % file )
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 )
142
self.run( [ 'bzr', 'revert', '--no-backup' ] )
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 )
145
output = self.run( [ 'bzr', 'status' ] )
102
146
files = self.parse_file_blocks( output )
104
148
# remove unknown files
105
149
if 'unknown' in files:
106
150
for file in files[ 'unknown' ]:
151
matches = re.search( r'^(.+?)[/@+]?$', file )
154
'failed to parse bzr unknowns: %s' % file )
155
file = matches.group( 1 )
156
if the.verbose >= 2: print("removing (unknown): " + file)
107
157
full_file = os.path.join( self.dir, file )
108
if os.path.isfile( full_file ):
158
if os.path.isfile( full_file ) or os.path.islink( full_file ):
109
159
os.unlink( full_file )
110
elif os.full_file.isdir( full_file ):
160
elif os.path.isdir( full_file ):
111
161
shutil.rmtree( full_file )
113
163
raise RuntimeError( 'exotic file in repo: %s' % file )
165
# if a revision identifier has been given, ensure we're updated to that
166
if revno is not None and self.get_revno() != revno:
169
self.run( [ 'bzr', 'update', '-r', revno ] )
116
172
def update( self ):
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 )
173
"""Update the branch, pulling down any upstream changes and merging them. This
174
method returns a list of the files that were modified as part of this
178
# WARNING: the following might cause bzr to ask for your ssh password more than
179
# once during an update!!!
182
# revno = self.get_revno()
184
# # update to current revision (pull in history without updating tree)
185
# self.run( [ 'bzr', 'update', '-r', revno ] )
188
# next_revno = str( int( revno ) + 1 )
189
# output = self.run( [ 'bzr', 'log', '-r', next_revno + '..' ] )
192
# keep_files = list()
193
# buf = StringIO.StringIO( output )
196
# line = line.rstrip( '\n' )
197
# if line.lower() == 'message:':
200
# if line[ : 2 ] != ' ':
205
# # process directives
206
# if line[ : 6 ].lower() == 'keep: ':
208
# if file in rename_files: file = rename_files[ file ]
209
# keep_files.append( file )
210
# elif line[ : 8 ].lower() == 'rename: ':
211
# rename_from = line[ 8 : ]
212
# elif line[ : 4 ].lower() == 'to: ':
213
# if rename_from in rename_files:
214
# rename_from = rename_files[ rename_from ]
215
# rename_files[ line[ 4 : ] ] = rename_from
217
# bzr update properly
218
output = self.run( [ 'bzr', 'update' ] )
220
# parse output (see logic in report() in bzrlib/delta.py)
222
buf = io.StringIO( output )
224
if not re.search( '^[-R+ ?][K NMD!][* ] ', line ): continue
227
# renames show before and after file names
228
matches = re.search( '^R.. (.*?)[/@+]? => (.*?)[/@+]?$', line )
230
files.append( matches.group( 1 ) )
231
files.append( matches.group( 2 ) )
234
# kind changes shows the same name twice
235
matches = re.search( '^.K. (.*?)[/@+]? => (.*?)[/@+]?$', line )
237
files.append( matches.group( 1 ) )
240
# other entries have only one filename
241
matches = re.search( '^... (.*?)[/@+]?$', line )
243
files.append( matches.group( 1 ) )
247
'failed to parse bzr update output line:\n%s' % line )
253
"""Get a list of any local modifications. This method returns a list of files
259
output = self.run( [ 'bzr', 'status', '--no-pending' ] )
262
return self.parse_file_blocks( output )
128
265
def has_changes( self ):
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 )
282
output = self.run( [ 'bzr', 'status', '--no-pending' ] )
152
285
files = self.parse_file_blocks( output )
153
286
return files['conflicts'] if 'conflicts' in files else None
289
def add( self, files ):
290
"""Make sure files are added to version control.
291
@param files a list of relative filenames
295
self.run( [ 'bzr', 'add', '-N' ] + files )
299
"""Commit changes to the repo.
304
self.run( [ 'bzr', 'commit', '-m', '' ] )
305
except self.VcsError as e:
306
if re.search( 'Working tree is out of date', e.output ):
307
raise the.program.FatalError(
308
'you must update your files first.\n' +
309
'Hint: see "%s update --help"' % the.program.name );
314
def run( self, cmd ):
315
if the.verbose >= 2: print('exec: %s' % ' '.join( cmd ))
316
p = Popen( cmd, cwd = self.dir,
317
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
318
output = p.communicate()[ 0 ].decode()
320
raise self.VcsError( ' '.join( cmd[ : 2 ] ), output )
322
verbose_output = output.rstrip()
323
if len( verbose_output ):
324
print(re.sub( '(^|\n)', '\\1 : ', verbose_output ))
156
328
def parse_file_blocks( self, output ):
159
buf = StringIO.StringIO( output )
331
buf = io.StringIO( output )
161
333
matches = re.search( '^([a-z ]+):$', line, re.I )