19
19
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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
28
class InitCommand( Command ):
33
self.vcs = the.config.default_vcs
28
36
def print_help( self ):
29
print "Usage: " + self.program + " init [URL] [--repo=REPO]"
37
print "Usage: " + the.program.name + " init [URL] [--repo=REPO]"
31
39
# 01234567890123456789012345678901234567890123456789012345678901234567890123456789
32
40
print "Initialise a local repository."
38
46
print "hostname, it is internally expanded to scp://HOSTNAME/~/.stdhome/REPO)."
41
print " --repo select the repo to check-out or create (defaults to 'home')"
42
print " --help display help and exit"
49
print " --quiet do not report changes to the home directory"
50
print " -r, --repo=REPO select the repo to check-out or create (defaults to 'home')"
51
print " -v, --verbose display information about what is being done"
52
print " --vcs=VCS select the version control system"
53
print " --help display help and exit"
46
def run( self, stdhome ):
49
opts, args = getopt.gnu_getopt(
52
except getopt.GetoptError as e:
53
stdhome.print_usage( e )
54
for opt, optargs in opts:
57
def parse_command_line( self ):
58
opts, args = getopt.gnu_getopt(
59
sys.argv[ 1: ], "r:v",
60
[ "quiet", "repo=", "vcs=", "verbose", "help" ] )
61
for opt, optarg in opts:
64
elif opt in [ '--repo', '-r' ]:
65
if not re.search( '^[-a-zA-z0-9.]+$', optarg ):
66
raise the.program.FatalError(
67
'invalid repository name: ' + optarg )
71
elif opt in [ '--verbose', '-v' ]:
57
elif aopt == "--repo":
76
# discard first argument (the command)
80
self.url = args[ 0 ].strip() if len( args ) else None
82
# check remaining arguments
84
raise the.program.UsageError( 'too many arguments' )
89
# set up repo and check it *doesn't* already exists
90
the.repo.check_dir_exists( False )
91
the.repo.set_vcs( self.vcs )
93
# ensure our top-level directory exists
94
if not os.path.exists( the.full_dir ):
95
os.mkdir( the.full_dir )
97
# checkout a remote repo, or create an empty local one?
100
# 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 )
104
# initialise deployment (with an empty repo)
105
deployment = Deployment()
108
# perform bzr checkout
109
if the.verbose >= 1: print "checking out %s" % the.repo.dir
111
the.repo.vcs.checkout( self.url )
114
# attempt to clean-up repo dir
115
if os.path.exists( the.repo.full_dir ):
117
shutil.rmtree( the.repo.full_dir )
125
# check for deployment conclicts
126
conflicts = deployment.get_conflicts()
128
message += 'deployment conflicts:\n %s' % \
129
'\n '.join( conflicts )
131
# stop if there are conflicts
133
raise the.program.FatalError(
134
'there were conflicts...\n' + message )
137
deployment.copy_out( self.quiet )
142
if the.verbose >= 1: print 'initialising %s' % the.repo.dir
147
# attempt to clean-up repo dir, and die
148
if os.path.exists( the.repo.full_dir ):
150
shutil.rmtree( the.repo.full_dir )