/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-02-13 13:23:51 UTC
  • Revision ID: tim@ed.am-20160213132351-8ly2s0rtol5w1kpc
fixed syntax error and remove debug print

Show diffs side-by-side

added added

removed removed

26
26
from stdhome import the
27
27
 
28
28
 
29
 
class VcsBzr( Vcs ):
 
29
class BzrVcs( Vcs ):
30
30
 
31
31
 
32
32
        def __init__( self, dir ):
34
34
 
35
35
                @param dir the fully-qualified directory to work in.
36
36
                """
 
37
 
37
38
                self.dir = dir
38
39
 
39
40
 
45
46
                os.mkdir( self.dir )
46
47
 
47
48
                # bzr init
48
 
                p = Popen( [ 'bzr', 'init', '.' ], cwd = self.dir,
49
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
50
 
                output = p.communicate()[ 0 ]
51
 
                if p.returncode > 0:
 
49
                try:
 
50
                        self.run( [ 'bzr', 'init', '.' ] )
 
51
                except self.VcsError as e:
52
52
 
53
53
                        # attempt to clean-up dir
54
54
                        try:
56
56
                        except OSError:
57
57
                                pass
58
58
 
59
 
                        raise self.VcsError( 'bzr init failed', output )
 
59
                        raise
60
60
 
61
61
 
62
62
        def checkout( self, url ):
69
69
                os.mkdir( self.dir )
70
70
 
71
71
                # bzr co
72
 
                p = Popen( [ 'bzr', 'co', url, '.' ], cwd = self.dir,
73
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
74
 
                output = p.communicate()[ 0 ]
75
 
                if p.returncode > 0:
 
72
                try:
 
73
                        self.run( [ 'bzr', 'checkout', url, '.' ] )
 
74
                except self.VcsError as e:
76
75
 
77
76
                        # attempt to clean-up dir
78
77
                        try:
80
79
                        except OSError:
81
80
                                pass
82
81
 
83
 
                        raise self.VcsError( 'bzr checkout failed', output )
84
 
 
85
 
 
86
 
        def revert( self ):
 
82
                        raise
 
83
 
 
84
 
 
85
        def get_revno( self ):
 
86
                """Obtain some sort of revision identifier
 
87
                """
 
88
 
 
89
                # bzr revert
 
90
                output = self.run( [ 'bzr', 'revno', '--tree' ] )
 
91
 
 
92
                # parse revno
 
93
                buf = StringIO.StringIO( output )
 
94
                return buf.readline().rstrip()
 
95
 
 
96
 
 
97
        def revert( self, revno = None ):
87
98
                """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
 
100
                revision.
88
101
                """
89
102
 
 
103
                # bzr st
 
104
                output = self.run( [ 'bzr', 'status' ] )
 
105
                files = self.parse_file_blocks( output )
 
106
 
 
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.match( r'(.+?)[/@+]? \([^)]+\)', file )
 
113
                                if not matches:
 
114
                                        raise RunTimeError(
 
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 )
 
123
                                else:
 
124
                                        raise RuntimeError( 'exotic file in repo: %s' % file )
 
125
 
90
126
                # bzr revert
91
 
                p = Popen( [ 'bzr', 'revert', '--no-backup' ], cwd = self.dir,
92
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
93
 
                output = p.communicate()[ 0 ]
94
 
                if p.returncode > 0:
95
 
                        raise self.VcsError( 'bzr revert failed', output )
 
127
                self.run( [ 'bzr', 'revert', '--no-backup' ] )
96
128
 
97
129
                # bzr st
98
 
                p = Popen( [ 'bzr', 'st' ], cwd = self.dir,
99
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
100
 
                output = p.communicate()[ 0 ]
101
 
                if p.returncode > 0:
102
 
                        raise self.VcsError( 'bzr status failed', output )
 
130
                output = self.run( [ 'bzr', 'status' ] )
103
131
                files = self.parse_file_blocks( output )
104
132
 
105
133
                # remove unknown files
106
134
                if 'unknown' in files:
107
135
                        for file in files[ 'unknown' ]:
 
136
                                if the.verbose >= 2: print "removing (unknown): " + file
108
137
                                full_file = os.path.join( self.dir, file )
109
138
                                if os.path.isfile( full_file ):
110
139
                                        os.unlink( full_file )
111
 
                                elif os.full_file.isdir( full_file ):
 
140
                                elif os.path.isdir( full_file ):
112
141
                                        shutil.rmtree( full_file )
113
142
                                else:
114
143
                                        raise RuntimeError( 'exotic file in repo: %s' % file )
115
144
 
 
145
                # if a revision identifier has been given, ensure we're updated to that
 
146
                if revno is not None and self.get_revno() != revno:
 
147
 
 
148
                        # bzr update
 
149
                        self.run( [ 'bzr', 'update', '-r', revno ] )
 
150
 
116
151
 
117
152
        def update( self ):
118
153
                """Update the branch, pulling down any upstream changes and merging them.  This
120
155
                operation.
121
156
                """
122
157
 
123
 
                # bzr update
124
 
                p = Popen( [ 'bzr', 'update' ], cwd = self.dir,
125
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
126
 
                output = p.communicate()[ 0 ]
127
 
                if p.returncode > 0:
128
 
                        raise self.VcsError( 'bzr update failed', output )
 
158
#               WARNING: the following might cause bzr to ask for your ssh password more than
 
159
#               once during an update!!!
 
160
#
 
161
#               # get revno
 
162
#               revno = self.get_revno()
 
163
#
 
164
#               # update to current revision (pull in history without updating tree)
 
165
#               self.run( [ 'bzr', 'update', '-r', revno ] )
 
166
#
 
167
#               # get log output
 
168
#               next_revno = str( int( revno ) + 1 )
 
169
#               output = self.run( [ 'bzr', 'log', '-r', next_revno + '..' ] )
 
170
#
 
171
#               # parse output
 
172
#               keep_files = list()
 
173
#               buf = StringIO.StringIO( output )
 
174
#               in_message = False
 
175
#               for line in buf:
 
176
#                       line = line.rstrip( '\n' )
 
177
#                       if line.lower() == 'message:':
 
178
#                               in_message = True
 
179
#                       elif in_message:
 
180
#                               if line[ : 2 ] != '  ':
 
181
#                                       in_message = False
 
182
#                               else:
 
183
#                                       line = line[ 2 : ]
 
184
#
 
185
#                                       # process directives
 
186
#                                       if line[ : 6 ].lower() == 'keep: ':
 
187
#                                               file = line[ 6 : ]
 
188
#                                               if file in rename_files: file = rename_files[ file ]
 
189
#                                               keep_files.append( file )
 
190
#                                       elif line[ : 8 ].lower() == 'rename: ':
 
191
#                                               rename_from = line[ 8 : ]
 
192
#                                       elif line[ : 4 ].lower() == 'to: ':
 
193
#                                               if rename_from in rename_files:
 
194
#                                                       rename_from = rename_files[ rename_from ]
 
195
#                                               rename_files[ line[ 4 : ] ] = rename_from
 
196
 
 
197
                # bzr update properly
 
198
                output = self.run( [ 'bzr', 'update' ] )
129
199
 
130
200
                # parse output (see logic in report() in bzrlib/delta.py)
131
201
                files = list()
133
203
                for line in buf:
134
204
                        if not re.search( '^[-R+ ?][K NMD!][* ] ', line ): continue
135
205
                        line = line.rstrip()
136
 
                        if the.verbose: print '  %s' % line
 
206
                        if the.verbose >= 2: print '  %s' % line
137
207
 
138
208
                        # renames show before and after file names
139
209
                        matches = re.search( '^R.. (.*?)[/@+]? => (.*?)[/@+]?$', line )
155
225
                                continue
156
226
 
157
227
                        raise RuntimeError(
158
 
                                'failed to parse bzr update output line:\n%' % line )
 
228
                                'failed to parse bzr update output line:\n%s' % line )
159
229
 
160
230
                return files
161
231
 
165
235
                """
166
236
 
167
237
                # bzr status
168
 
                p = Popen( [ 'bzr', 'status', '--no-pending' ], cwd = self.dir,
169
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
170
 
                output = p.communicate()[ 0 ]
171
 
                if p.returncode > 0:
172
 
                        raise self.VcsError( 'bzr status failed', output )
 
238
                output = self.run( [ 'bzr', 'status', '--no-pending' ] )
 
239
 
 
240
                # parse output
173
241
                files = self.parse_file_blocks( output )
174
242
                return True if len( files ) else False
175
243
 
179
247
                """
180
248
 
181
249
                # bzr status
182
 
                p = Popen( [ 'bzr', 'status', '--no-pending' ], cwd = self.dir,
183
 
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
184
 
                output = p.communicate()[ 0 ]
185
 
                if p.returncode > 0:
186
 
                        raise self.VcsError( 'bzr status failed', output )
 
250
                output = self.run( [ 'bzr', 'status', '--no-pending' ] )
 
251
 
 
252
                # parse output
187
253
                files = self.parse_file_blocks( output )
188
254
                return files['conflicts'] if 'conflicts' in files else None
189
255
 
190
256
 
 
257
        def add( self, files ):
 
258
                """Make sure files are added to version control.
 
259
                @param files a list of relative filenames
 
260
                """
 
261
 
 
262
                # bzr add
 
263
                self.run( [ 'bzr', 'add', '-N' ] + files )
 
264
 
 
265
 
 
266
        def commit( self ):
 
267
                """Commit changes to the repo.
 
268
                """
 
269
 
 
270
                # bzr commit
 
271
                self.run( [ 'bzr', 'commit', '-m', '' ] )
 
272
 
 
273
 
 
274
        def run( self, cmd ):
 
275
                if the.verbose >= 2: print 'exec: %s' % ' '.join( cmd )
 
276
                p = Popen( cmd, cwd = self.dir,
 
277
                                   stdout = subprocess.PIPE, stderr = subprocess.STDOUT )
 
278
                output = p.communicate()[ 0 ]
 
279
                if p.returncode > 0:
 
280
                        raise self.VcsError( ' '.join( cmd[ : 2 ] ), output )
 
281
                return output
 
282
 
 
283
 
191
284
        def parse_file_blocks( self, output ):
192
285
                res = dict()
193
286
                current = None
204
297
                                                res[ current ] = list()
205
298
                                        res[ current ].append( matches.group( 1 ) )
206
299
                                        continue
207
 
                        if re.search( '^[0-9]+ shelf exists', line ): continue
 
300
                        if re.search( '^[0-9]+ shel(?:f|ves) exists?', line ): continue
208
301
                        if re.search( '^working tree is out of date', line ): continue
209
302
                        raise self.ParseError( "unrecognised line: %s" % line )
210
303
                return res