22
22
import sys, re, getopt
24
from deployment import Deployment
23
from command import Command
24
import stdhome.the as the
25
from stdhome.deployment import Deployment
28
class UpdateCommand( Command ):
30
31
def __init__( self ):
34
35
def print_help( self ):
47
48
print "Conflicts that arise from files already existing in your home directory must be"
48
49
print "dealt with by moving those files aside (currently)."
50
print "You can resume the redeployment of your repository by typing:"
51
print "After a failed update, you can list outstanding conflicts by typing:"
52
print " " + the.program.name + " conflicts"
54
print "After fixing outstanding conflicts, you can re-attempt the redeployment of"
55
print "your repository by typing:"
51
56
print " " + the.program.name + " resolve"
53
print "You can list outstanding conflicts by typing:"
54
print " " + the.program.name + " conflicts"
58
print "To back out of trying to update and revert the local repository, type:"
59
print " " + the.program.name + " stage-revert"
62
print " --quiet do not report changes to the home directory"
57
63
print " -r, --repo=REPO select the repo to check-out or create (defaults to 'home')"
58
64
print " -v, --verbose display information about what is being done"
59
65
print " --help display help and exit"
63
69
def parse_command_line( self ):
64
70
opts, args = getopt.gnu_getopt(
65
sys.argv[ 1: ], "r:v",
66
[ "repo=", "verbose", "help" ] )
71
sys.argv[ 1: ], "qr:v",
72
[ "quiet", "repo=", "verbose", "help" ] )
67
73
for opt, optarg in opts:
68
if opt in [ '--repo', '-r' ]:
69
if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
76
elif opt in [ '--repo', '-r' ]:
77
if not re.search( '^[-a-zA-z0-9.]+$', optarg ):
70
78
raise the.program.FatalError(
71
79
'invalid repository name: ' + optarg )
73
81
elif opt in [ '--verbose', '-v' ]:
75
83
elif opt == "--help":
78
86
# discard first argument (the command)
88
96
# set up repo and check it exists
89
the.set_repo( self.repo )
90
97
the.repo.check_dir_exists()
92
# initialise deployment (check it's valid)
99
# initialise deployment (and check it)
93
100
deployment = Deployment()
94
101
deployment.check_ongoing( False )
97
104
if the.repo.vcs.has_changes():
98
105
raise the.program.FatalError(
99
106
'repo has local changes: %s\n'
100
'Hint: see "%s stage-revert --help"' %
107
'Hint: see "%s stage-revert --help"' %
101
108
( the.repo.name, the.program.name ) )
103
110
# copy-in changes to repo
106
except( deployment.Conflict, deployment.DeploymentOngoing ) as e:
107
raise the.program.FatalError( e.msg )
109
113
# perform vcs update
110
if the.verbose: print "updating %s" % the.repo.dir
111
the.repo.vcs.update()
114
if the.verbose >= 1: print "updating %s" % the.repo.dir
115
updated_files = the.repo.vcs.update()
113
# check for conflicts
119
# check for conflicts in repo
115
120
files = the.repo.vcs.get_conflicts()
117
message += 'Conflicts in %s:\n %s' % \
122
message += 'conflicts in %s:\n %s' % \
118
123
( the.repo.name, '\n '.join( files ) )
119
files = deployment.get_conflicts()
121
message += 'Deployment conflicts:\n %s' % \
125
# check for deployment conclicts
126
conflicts = deployment.get_conflicts( updated_files )
128
message += 'deployment conflicts:\n %s' % \
129
'\n '.join( conflicts )
131
# stop if there are conflicts
124
133
raise the.program.FatalError(
125
134
'there were conflicts...\n' + message )
127
136
# copy-out changes from repo
129
deployment.copy_out()
130
except deployment.Conflict as e:
131
raise the.program.FatalError( e.msg )
137
deployment.copy_out( self.quiet )
133
139
# now we've copied-out, revert any copied-in changes!
134
if the.verbose: print "reverting %s" % the.repo.dir
140
if the.verbose >= 1: print "reverting %s" % the.repo.dir
135
141
the.repo.vcs.revert()