85
def get_revno( self ):
86
"""Obtain some sort of revision identifier
90
output = self.run( [ 'bzr', 'revno', '--tree' ] )
93
buf = StringIO.StringIO( output )
94
return buf.readline().rstrip()
97
def revert( self, revno = None ):
82
raise the.program.FatalError( 'bzr checkout failed', output )
98
86
"""Revert the branch so that there are no outstanding changes or unknown files.
99
If a revno is supplied, then the repository is reverted to that
104
output = self.run( [ 'bzr', 'status' ] )
105
files = self.parse_file_blocks( output )
107
# remove kind changed files (or they can cause `bzr revert` to break in
108
# strange situations, like when a directory has been replaced with a
109
# symlink to a non-existant file)
110
if 'kind changed' in files:
111
for file in files[ 'kind changed' ]:
112
matches = re.search( '^(.+?)[/@+]? \([^)]+\)$', file )
115
'failed to parse bzr kind change: %s' % file )
116
file = matches.group( 1 )
117
if the.verbose >= 2: print "removing (kind changed): " + file
118
full_file = os.path.join( self.dir, file )
119
if os.path.isfile( full_file ) or os.path.islink( full_file ):
120
os.unlink( full_file )
121
elif os.path.isdir( full_file ):
122
shutil.rmtree( full_file )
124
raise RuntimeError( 'exotic file in repo: %s' % file )
127
self.run( [ 'bzr', 'revert', '--no-backup' ] )
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 )
130
output = self.run( [ 'bzr', 'status' ] )
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 )
131
102
files = self.parse_file_blocks( output )
133
104
# remove unknown files
134
105
if 'unknown' in files:
135
106
for file in files[ 'unknown' ]:
136
matches = re.search( r'^(.+?)[/@+]?$', file )
139
'failed to parse bzr unknowns: %s' % file )
140
file = matches.group( 1 )
141
if the.verbose >= 2: print "removing (unknown): " + file
142
107
full_file = os.path.join( self.dir, file )
143
if os.path.isfile( full_file ) or os.path.islink( full_file ):
108
if os.path.isfile( full_file ):
144
109
os.unlink( full_file )
145
elif os.path.isdir( full_file ):
110
elif os.full_file.isdir( full_file ):
146
111
shutil.rmtree( full_file )
148
113
raise RuntimeError( 'exotic file in repo: %s' % file )
150
# if a revision identifier has been given, ensure we're updated to that
151
if revno is not None and self.get_revno() != revno:
154
self.run( [ 'bzr', 'update', '-r', revno ] )
157
116
def update( self ):
158
"""Update the branch, pulling down any upstream changes and merging them. This
159
method returns a list of the files that were modified as part of this
117
"""Update the branch, pulling down any upstream changes and merging them.
163
# WARNING: the following might cause bzr to ask for your ssh password more than
164
# once during an update!!!
167
# revno = self.get_revno()
169
# # update to current revision (pull in history without updating tree)
170
# self.run( [ 'bzr', 'update', '-r', revno ] )
173
# next_revno = str( int( revno ) + 1 )
174
# output = self.run( [ 'bzr', 'log', '-r', next_revno + '..' ] )
177
# keep_files = list()
178
# buf = StringIO.StringIO( output )
181
# line = line.rstrip( '\n' )
182
# if line.lower() == 'message:':
185
# if line[ : 2 ] != ' ':
190
# # process directives
191
# if line[ : 6 ].lower() == 'keep: ':
193
# if file in rename_files: file = rename_files[ file ]
194
# keep_files.append( file )
195
# elif line[ : 8 ].lower() == 'rename: ':
196
# rename_from = line[ 8 : ]
197
# elif line[ : 4 ].lower() == 'to: ':
198
# if rename_from in rename_files:
199
# rename_from = rename_files[ rename_from ]
200
# rename_files[ line[ 4 : ] ] = rename_from
202
# bzr update properly
203
output = self.run( [ 'bzr', 'update' ] )
205
# parse output (see logic in report() in bzrlib/delta.py)
207
buf = StringIO.StringIO( output )
209
if not re.search( '^[-R+ ?][K NMD!][* ] ', line ): continue
212
# renames show before and after file names
213
matches = re.search( '^R.. (.*?)[/@+]? => (.*?)[/@+]?$', line )
215
files.append( matches.group( 1 ) )
216
files.append( matches.group( 2 ) )
219
# kind changes shows the same name twice
220
matches = re.search( '^.K. (.*?)[/@+]? => (.*?)[/@+]?$', line )
222
files.append( matches.group( 1 ) )
225
# other entries have only one filename
226
matches = re.search( '^... (.*?)[/@+]?$', line )
228
files.append( matches.group( 1 ) )
232
'failed to parse bzr update output line:\n%s' % line )
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 )
237
128
def has_changes( self ):
254
output = self.run( [ 'bzr', '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 )
257
152
files = self.parse_file_blocks( output )
258
153
return files['conflicts'] if 'conflicts' in files else None
261
def add( self, files ):
262
"""Make sure files are added to version control.
263
@param files a list of relative filenames
267
self.run( [ 'bzr', 'add', '-N' ] + files )
271
"""Commit changes to the repo.
275
self.run( [ 'bzr', 'commit', '-m', '' ] )
278
def run( self, cmd ):
279
if the.verbose >= 2: print 'exec: %s' % ' '.join( cmd )
280
p = Popen( cmd, cwd = self.dir,
281
stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
282
output = p.communicate()[ 0 ]
284
raise self.VcsError( ' '.join( cmd[ : 2 ] ), output )
286
print re.sub( '(^|\n)', '\\1 > ', output.rstrip() )
290
156
def parse_file_blocks( self, output ):