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 ):
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":
81
79
# set up repo and check it exists
82
the.set_repo( self.repo )
83
80
the.repo.check_dir_exists()
84
# initialise deployment and check if it's ongoing
85
85
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
86
if deployment.is_ongoing():
100
files = deployment.get_conflicts()
87
print "deployment ongoing"
89
# check for conflicts in repo
90
files = the.repo.vcs.get_conflicts()
102
message += 'Deployment conflicts:\n %s\n' % \
92
message += 'conflicts in %s:\n %s\n' % \
93
( the.repo.name, '\n '.join( files ) )
95
# get deployment conflicts
96
conflicts = deployment.get_conflicts()
98
message += 'deployment conflicts:\n %s\n' % \
99
'\n '.join( conflicts )
104
walker = StatusWalker()
107
message += 'modified:\n %s\n' % \
108
'\n '.join( walker.modified )
110
message += 'missing:\n %s\n' % \
111
'\n '.join( walker.missing )
113
message += 'kind changed:\n %s\n' % \
114
'\n '.join( walker.changed )
106
117
if message: print message.rstrip()