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

  • Committer: Tim Marston
  • Date: 2014-02-12 21:51:08 UTC
  • Revision ID: tim@ed.am-20140212215108-stk5z0nlvgpi4oa8
added bzr as a vcs backend; finished init command; implemented deployment

Show diffs side-by-side

added added

removed removed

1
 
# init.py
 
1
# command_init.py
2
2
#
3
3
# Copyright (C) 2013 Tim Marston <tim@edm.am>
4
4
#
20
20
 
21
21
 
22
22
import sys, os, re, getopt, shutil, subprocess
23
 
from command import Command
24
 
import stdhome.the as the
25
 
from stdhome.deployment import Deployment
26
 
 
27
 
 
28
 
class InitCommand( Command ):
 
23
import the
 
24
from deployment import Deployment
 
25
from subprocess import Popen
 
26
 
 
27
 
 
28
class CommandInit:
29
29
 
30
30
 
31
31
        def __init__( self ):
32
 
                self.quiet = False
33
 
                self.vcs = the.config.default_vcs
 
32
                self.repo = None
34
33
 
35
34
 
36
35
        def print_help( self ):
46
45
                print "hostname, it is internally expanded to scp://HOSTNAME/~/.stdhome/REPO)."
47
46
                print
48
47
                print "Options:"
49
 
                print "      --quiet      do not report changes to the home directory"
50
48
                print "  -r, --repo=REPO  select the repo to check-out or create (defaults to 'home')"
51
49
                print "  -v, --verbose    display information about what is being done"
52
 
                print "      --vcs=VCS    select the version control system"
53
50
                print "      --help       display help and exit"
54
51
                exit( 0 )
55
52
 
57
54
        def parse_command_line( self ):
58
55
                opts, args = getopt.gnu_getopt(
59
56
                        sys.argv[ 1: ], "r:v",
60
 
                        [ "quiet", "repo=", "vcs=", "verbose", "help" ] )
 
57
                        [ "repo=", "verbose", "help" ] )
61
58
                for opt, optarg in opts:
62
 
                        if opt == "--quiet":
63
 
                                self.quiet = True
64
 
                        elif opt in [ '--repo', '-r' ]:
65
 
                                if not re.search( '^[-a-zA-z0-9.]+$', optarg ):
 
59
                        if opt in [ '--repo', '-r' ]:
 
60
                                if not re.match( '^[-a-zA-z0-9.]+$', optarg ):
66
61
                                        raise the.program.FatalError(
67
62
                                                'invalid repository name: ' + optarg )
68
 
                                the.repo = optarg
69
 
                        elif opt == "--vcs":
70
 
                                self.vcs = optarg
 
63
                                self.repo = optarg
71
64
                        elif opt in [ '--verbose', '-v' ]:
72
 
                                the.verbose += 1
 
65
                                the.verbose = True
73
66
                        elif opt == "--help":
74
67
                                self.print_help()
75
 
 
 
68
                
76
69
                # discard first argument (the command)
77
70
                args.pop( 0 )
78
71
 
79
72
                # URL argument
80
73
                self.url = args[ 0 ].strip() if len( args ) else None
81
74
 
82
 
                # check remaining arguments
 
75
                # remaining arguments
83
76
                if len( args ) > 1:
84
77
                        raise the.program.UsageError( 'too many arguments' )
85
78
 
87
80
        def run( self ):
88
81
 
89
82
                # set up repo and check it *doesn't* already exists
 
83
                the.set_repo( self.repo )
90
84
                the.repo.check_dir_exists( False )
91
 
                the.repo.set_vcs( self.vcs )
92
85
 
93
86
                # ensure our top-level directory exists
94
87
                if not os.path.exists( the.full_dir ):
98
91
                if self.url:
99
92
 
100
93
                        # expand url if it's a simple hostname
101
 
                        if re.search( '^[0-9a-zA-z.]+$', self.url ):
102
 
                                self.url = the.repo.vcs.expand_repo_url( self.url )
 
94
                        if re.match( '^[0-9a-zA-z.]+$', self.url ):
 
95
                                self.url = 'sftp://%s/%s/%s' % \
 
96
                                                   ( self.url, the.dir, the.repo.name )
103
97
 
104
98
                        # initialise deployment (with an empty repo)
105
99
                        deployment = Deployment()
106
100
                        deployment.copy_in()
107
101
 
108
102
                        # perform bzr checkout
109
 
                        if the.verbose >= 1: print "checking out %s" % the.repo.dir
 
103
                        if the.verbose: print "checking out %s" % the.repo.dir
110
104
                        try:
111
105
                                the.repo.vcs.checkout( self.url )
112
 
                        except Exception:
 
106
                        except Exception as e:
113
107
 
114
108
                                # attempt to clean-up repo dir
115
 
                                if os.path.exists( the.repo.full_dir ):
116
 
                                        try:
117
 
                                                shutil.rmtree( the.repo.full_dir )
118
 
                                        except OSError:
119
 
                                                pass
120
 
 
121
 
                                raise
122
 
 
123
 
                        message = ''
124
 
 
125
 
                        # check for deployment conclicts
126
 
                        conflicts = deployment.get_conflicts()
127
 
                        if conflicts:
128
 
                                message += 'deployment conflicts:\n  %s' % \
129
 
                                                   '\n  '.join( conflicts )
130
 
 
131
 
                        # stop if there are conflicts
132
 
                        if message:
133
 
                                raise the.program.FatalError(
134
 
                                        'there were conflicts...\n' + message )
 
109
                                try:
 
110
                                        shutil.rmtree( the.repo.full_dir )
 
111
                                except OSError:
 
112
                                        pass
 
113
 
 
114
                                raise e
135
115
 
136
116
                        # perform deployment
137
 
                        deployment.copy_out( self.quiet )
 
117
                        try:
 
118
                                deployment.copy_out()
 
119
                        except deployment.Conflict as e:
 
120
                                raise the.program.FatalError( e.msg )
138
121
 
139
122
                else:
140
123
 
141
124
                        # perform bzr init
142
 
                        if the.verbose >= 1: print 'initialising %s' % the.repo.dir
 
125
                        if the.verbose: print 'initialising %s' % the.repo.dir
143
126
                        try:
144
127
                                the.repo.vcs.init()
145
 
                        except Exception:
 
128
                        except Exception as e:
146
129
 
147
130
                                # attempt to clean-up repo dir, and die
148
 
                                if os.path.exists( the.repo.full_dir ):
149
 
                                        try:
150
 
                                                shutil.rmtree( the.repo.full_dir )
151
 
                                        except OSError:
152
 
                                                pass
 
131
                                try:
 
132
                                        shutil.rmtree( the.repo.full_dir )
 
133
                                except OSError:
 
134
                                        pass
153
135
 
154
 
                                raise
 
136
                                raise e