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
26
from stdhome.walker.status import StatusWalker
29
class StatusCommand( Command ):
34
32
def print_help( self ):
35
print "Usage: " + the.program.name + " status [--repo=REPO]"
33
print "Usage: " + the.program.name + " status [--repo=REPO] [FILE]..."
37
35
# 01234567890123456789012345678901234567890123456789012345678901234567890123456789
38
36
print "Show the state of files in the local repository (including modifications and"
41
39
print "This lists files in your home directory that have been modified and which differ"
42
40
print "from those in the local repository. During an update that resulted in conflicts"
43
print "this also lists files which have conflicts in the local local respository, or"
44
print "which can not be deployed due to conflicts with your home directory."
41
print "this also lists files which have conflicts in the local respository, or which"
42
print "can not be deployed due to conflicts with your home directory."
46
44
print "For help with adding modified files to the repository, type:"
47
45
print " " + the.program.name + " add --help"
62
60
if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
63
61
raise the.program.FatalError(
64
62
'invalid repository name: ' + optarg )
66
64
elif opt in [ '--verbose', '-v' ]:
68
66
elif opt == "--help":
74
72
# remaining arguments
76
raise the.program.UsageError( 'too many arguments' )
81
78
# set up repo and check it exists
82
the.set_repo( self.repo )
83
79
the.repo.check_dir_exists()
82
files = self.expand_files( self.files )
86
# initialise deployment and check if it's ongoing
85
87
deployment = Deployment()
88
# check for differing files
89
files = deployment.get_diffs()
91
message += 'Modified files in %s\n %s\n' % \
92
( the.fsdir, '\n '.join( files ) )
95
files = the.repo.vcs.get_conflicts()
97
message += 'Conflicts in %s:\n %s\n' % \
98
( the.repo.dir, '\n '.join( files ) )
99
88
if deployment.is_ongoing():
100
files = deployment.get_conflicts()
89
print "deployment ongoing"
91
# check for conflicts in repo
92
files = the.repo.vcs.get_conflicts()
102
message += 'Deployment conflicts:\n %s\n' % \
94
message += 'conflicts in %s:\n %s\n' % \
95
( the.repo.name, '\n '.join( files ) )
97
# get deployment conflicts
98
conflicts = deployment.get_conflicts()
100
message += 'deployment conflicts:\n %s\n' % \
101
'\n '.join( conflicts )
106
walker = StatusWalker( files if files else None )
109
message += 'modified:\n %s\n' % \
110
'\n '.join( walker.modified )
112
message += 'missing:\n %s\n' % \
113
'\n '.join( walker.missing )
115
message += 'kind changed:\n %s\n' % \
116
'\n '.join( walker.changed )
106
119
if message: print message.rstrip()