/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/command/resolve.py

  • Committer: Tim Marston
  • Date: 2014-04-18 14:42:00 UTC
  • Revision ID: tim@ed.am-20140418144200-ksbr3l58p2v3jhy2
fixed bugs in command.expand_files, where results could be not unique, nor
sorted, and make sure the last component of the files is not resolved if it is a
symlink

Show diffs side-by-side

added added

removed removed

1
 
# command_resolve.py
 
1
# resolve.py
2
2
#
3
3
# Copyright (C) 2014 Tim Marston <tim@edm.am>
4
4
#
20
20
 
21
21
 
22
22
import sys, re, getopt
23
 
import the
24
 
from deployment import Deployment
25
 
 
26
 
 
27
 
class CommandResolve:
28
 
 
29
 
 
30
 
        def __init__( self ):
31
 
                self.repo = None
 
23
from command import Command
 
24
import stdhome.the as the
 
25
from stdhome.deployment import Deployment
 
26
 
 
27
 
 
28
class ResolveCommand( Command ):
32
29
 
33
30
 
34
31
        def print_help( self ):
62
59
                                if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
63
60
                                        raise the.program.FatalError(
64
61
                                                'invalid repository name: ' + optarg )
65
 
                                self.repo = optarg
 
62
                                the.repo = optarg
66
63
                        elif opt in [ '--verbose', '-v' ]:
67
 
                                the.verbose = True
 
64
                                the.verbose += 1
68
65
                        elif opt == "--help":
69
66
                                self.print_help()
70
67
                
79
76
        def run( self ):
80
77
 
81
78
                # set up repo and check it exists
82
 
                the.set_repo( self.repo )
83
79
                the.repo.check_dir_exists()
84
80
 
85
81
                # initialise deployment (check it's valid)
91
87
                # check for conflicts in repo
92
88
                files = the.repo.vcs.get_conflicts()
93
89
                if files:
94
 
                        message += 'Conflicts in %s:\n  %s' % \
 
90
                        message += 'conflicts in %s:\n  %s' % \
95
91
                                           ( the.repo.name, '\n  '.join( files ) )
96
92
 
97
93
                # check for deployment conclicts
98
94
                conflicts = deployment.get_conflicts()
99
95
                if conflicts:
100
 
                        message += 'Deployment conflicts:\n  %s' % \
 
96
                        message += 'deployment conflicts:\n  %s' % \
101
97
                                           '\n  '.join( conflicts )
102
98
 
103
99
                # stop if there are conflicts
109
105
                deployment.copy_out()
110
106
 
111
107
                # now we've copied-out, revert any copied-in changes!
112
 
                if the.verbose: print "reverting %s" % the.repo.dir
 
108
                if the.verbose >= 1: print "reverting %s" % the.repo.dir
113
109
                the.repo.vcs.revert()