/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/status.py

  • Committer: Tim Marston
  • Date: 2021-07-05 19:14:32 UTC
  • Revision ID: tim@ed.am-20210705191432-243ayb7s2nmussvi
python3ification

Show diffs side-by-side

added added

removed removed

20
20
 
21
21
 
22
22
import sys, re, getopt
23
 
from command import Command
 
23
from .command import Command
24
24
import stdhome.the as the
25
25
from stdhome.deployment import Deployment
26
26
from stdhome.walker.status import StatusWalker
30
30
 
31
31
 
32
32
        def print_help( self ):
33
 
                print "Usage: " + the.program.name + " status [--repo=REPO]"
34
 
                print
 
33
                print("Usage: " + the.program.name + " status [--repo=REPO] [FILE]...")
 
34
                print()
35
35
                #      01234567890123456789012345678901234567890123456789012345678901234567890123456789
36
 
                print "Show the state of files in the local repository (including modifications and"
37
 
                print "conflicts)."
38
 
                print
39
 
                print "This lists files in your home directory that have been modified and which differ"
40
 
                print "from those in the local repository.  During an update that resulted in conflicts"
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."
43
 
                print
44
 
                print "For help with adding modified files to the repository, type:"
45
 
                print "    " + the.program.name + " add --help"
46
 
                print
47
 
                print "Options:"
48
 
                print "  -r, --repo=REPO  select the repo to check-out or create (defaults to 'home')"
49
 
                print "  -v, --verbose    display information about what is being done"
50
 
                print "      --help       display help and exit"
 
36
                print("Show the state of files in the local repository (including modifications and")
 
37
                print("conflicts).")
 
38
                print()
 
39
                print("This lists files in your home directory that have been modified and which differ")
 
40
                print("from those in the local repository.  During an update that resulted in conflicts")
 
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.")
 
43
                print()
 
44
                print("For help with adding modified files to the repository, type:")
 
45
                print("    " + the.program.name + " add --help")
 
46
                print()
 
47
                print("Options:")
 
48
                print("  -r, --repo=REPO  select the repo to check-out or create (defaults to 'home')")
 
49
                print("  -v, --verbose    display information about what is being done")
 
50
                print("      --help       display help and exit")
51
51
                exit( 0 )
52
52
 
53
53
 
57
57
                        [ "repo=", "verbose", "help" ] )
58
58
                for opt, optarg in opts:
59
59
                        if opt in [ '--repo', '-r' ]:
60
 
                                if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
 
60
                                if not re.search( '^[-a-zA-z0-9.]+$', optarg ):
61
61
                                        raise the.program.FatalError(
62
62
                                                'invalid repository name: ' + optarg )
63
63
                                the.repo = optarg
65
65
                                the.verbose += 1
66
66
                        elif opt == "--help":
67
67
                                self.print_help()
68
 
                
 
68
 
69
69
                # discard first argument (the command)
70
70
                args.pop( 0 )
71
71
 
72
72
                # remaining arguments
73
 
                if len( args ):
74
 
                        raise the.program.UsageError( 'too many arguments' )
 
73
                self.files = args
75
74
 
76
75
 
77
76
        def run( self ):
79
78
                # set up repo and check it exists
80
79
                the.repo.check_dir_exists()
81
80
 
 
81
                # determine files
 
82
                files = self.expand_files( self.files )
 
83
 
82
84
                message = ''
83
85
 
84
86
                # initialise deployment and check if it's ongoing
85
87
                deployment = Deployment()
86
88
                if deployment.is_ongoing():
 
89
                        print("deployment ongoing")
87
90
 
88
91
                        # check for conflicts in repo
89
92
                        files = the.repo.vcs.get_conflicts()
100
103
                else:
101
104
 
102
105
                        # check status
103
 
                        walker = StatusWalker()
 
106
                        walker = StatusWalker( files if files else None )
104
107
                        walker.walk()
105
108
                        if walker.modified:
106
109
                                message += 'modified:\n  %s\n' % \
113
116
                                                   '\n  '.join( walker.changed )
114
117
 
115
118
                # show status
116
 
                if message: print message.rstrip()
 
119
                if message: print(message.rstrip())