/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/vcs/bzr.py

  • Committer: Tim Marston
  • Date: 2016-03-13 10:33:35 UTC
  • Revision ID: tim@ed.am-20160313103335-ffrpj5xuw1441aac
tweaked debug output

Show diffs side-by-side

added added

removed removed

21
21
 
22
22
import subprocess, os, re, shutil
23
23
from subprocess import Popen
24
 
import io
25
 
from .vcs import Vcs
 
24
import StringIO
 
25
from vcs import Vcs
26
26
from stdhome import the
27
27
 
28
28
 
36
36
                """
37
37
 
38
38
                self.dir = dir
39
 
                self.ignored_files = [ '.bzr', '.bzrignore' ]
40
39
 
41
40
 
42
41
        def has_authority( self ):
105
104
                output = self.run( [ 'bzr', 'revno', '--tree' ] )
106
105
 
107
106
                # parse revno
108
 
                buf = io.StringIO( output )
 
107
                buf = StringIO.StringIO( output )
109
108
                return buf.readline().rstrip()
110
109
 
111
110
 
129
128
                                        raise RunTimeError(
130
129
                                                'failed to parse bzr kind change: %s' % file )
131
130
                                file = matches.group( 1 )
132
 
                                if the.verbose >= 2: print("removing (kind changed): " + file)
 
131
                                if the.verbose >= 2: print "removing (kind changed): " + file
133
132
                                full_file = os.path.join( self.dir, file )
134
133
                                if os.path.isfile( full_file ) or os.path.islink( full_file ):
135
134
                                        os.unlink( full_file )
153
152
                                        raise RunTimeError(
154
153
                                                'failed to parse bzr unknowns: %s' % file )
155
154
                                file = matches.group( 1 )
156
 
                                if the.verbose >= 2: print("removing (unknown): " + file)
 
155
                                if the.verbose >= 2: print "removing (unknown): " + file
157
156
                                full_file = os.path.join( self.dir, file )
158
157
                                if os.path.isfile( full_file ) or os.path.islink( full_file ):
159
158
                                        os.unlink( full_file )
219
218
 
220
219
                # parse output (see logic in report() in bzrlib/delta.py)
221
220
                files = list()
222
 
                buf = io.StringIO( output )
 
221
                buf = StringIO.StringIO( output )
223
222
                for line in buf:
224
223
                        if not re.search( '^[-R+ ?][K NMD!][* ] ', line ): continue
225
224
                        line = line.rstrip()
287
286
                """
288
287
 
289
288
                # bzr commit
290
 
                try:
291
 
                        self.run( [ 'bzr', 'commit', '-m', '' ] )
292
 
                except self.VcsError as e:
293
 
                        if re.search( 'Working tree is out of date', e.output ):
294
 
                                raise the.program.FatalError(
295
 
                                        'you must update your files first.\n' +
296
 
                                        'Hint: see "%s update --help"' % the.program.name );
297
 
                        else:
298
 
                                raise e
 
289
                self.run( [ 'bzr', 'commit', '-m', '' ] )
299
290
 
300
291
 
301
292
        def run( self, cmd ):
302
 
                if the.verbose >= 2: print('exec: %s' % ' '.join( cmd ))
 
293
                if the.verbose >= 2: print 'exec: %s' % ' '.join( cmd )
303
294
                p = Popen( cmd, cwd = self.dir,
304
295
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
305
 
                output = p.communicate()[ 0 ].decode()
 
296
                output = p.communicate()[ 0 ]
306
297
                if p.returncode > 0:
307
298
                        raise self.VcsError( ' '.join( cmd[ : 2 ] ), output )
308
299
                if the.verbose >= 2:
309
300
                        verbose_output = output.rstrip()
310
301
                        if len( verbose_output ):
311
 
                                print(re.sub( '(^|\n)', '\\1  : ', verbose_output ))
 
302
                                print re.sub( '(^|\n)', '\\1  : ', verbose_output )
312
303
                return output
313
304
 
314
305
 
315
306
        def parse_file_blocks( self, output ):
316
307
                res = dict()
317
308
                current = None
318
 
                buf = io.StringIO( output )
 
309
                buf = StringIO.StringIO( output )
319
310
                for line in buf:
320
311
                        matches = re.search( '^([a-z ]+):$', line, re.I )
321
312
                        if matches: