File: debpartial-mirror

package info (click to toggle)
debpartial-mirror 0.2.99
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 480 kB
  • ctags: 437
  • sloc: python: 3,062; makefile: 16
file content (177 lines) | stat: -rwxr-xr-x 4,394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
#!/usr/bin/env python
"""
Tool to build partial debian mirrors (and more)
"""

# debpartial-mirror - partial debian mirror package tool
# (c) 2004 Otavio Salvador <otavio@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA	02111-1307	USA

# -------
# Imports
# -------
import getopt
import os
import signal
import sys

from debpartial_mirror import Config
from debpartial_mirror import Controller
from debpartial_mirror import Download

# ---------
# Variables
# ---------

# Defaults
version_str = '0.2.99'

conffile  = "/etc/debpartial-mirror.conf"

# User command descriptions
cmnds_desc = {
  'all':	 'Update, upgrade, merge the selected mirror(s)',
  'update':	 'Update selected mirror(s) (download Package and Source lists)',
  'upgrade': 'Upgrade selected mirror(s) (download binary and source packages)',
  'merge': 'Merge selected mirror(s)',
  'clean': 'Clean selected mirror(s)',
}

# Sorted list of user commands
cmnds_list = cmnds_desc.keys()
cmnds_list.sort()

# ---------
# Functions
# ---------

def version():
	"""Print package version"""
	print """debpartial-mirror %s - Partial mirroring tool for Debian
This program is free software and was released under the terms of the GNU General Public License
""" % (version_str)


def usage(ret=2):
	"""Print program usage message"""
	global conffile
	global cmnds_desc
	global cmnds_list

	cmnds_string = ""
	for c in cmnds_list:
		cmnds_string += "  %-27s %s\n" % (c, cmnds_desc[c])

	print """Usage: debpartial-mirror [OPTIONS] COMMAND [MIRROR ..]

Where OPTIONS is one of:
  -h, --help				 Display this help end exit
  -c, --configfile=FILE		 Select a config file (currently '%s')
  -v, --version				 Show program version

COMMAND is one of:
%s
And MIRROR selects which mirrors we should work with (all by default).
""" % (conffile, cmnds_string)
	sys.exit(ret)


def sigint_handler(signum, frame):
	d = Download.Download()
	if len (d.d_fetchers_list) > 0:
		d.wait_all()
	print "\n\rInterrupting download due a user request ..."
	sys.exit(1)


def main():
	"""Main program"""
	global conffile
	global cmnds_list
	global mirrors
	global merges

	cmnd = None

	# Parse options
	try:
		opts, args = getopt.getopt(sys.argv[1:], 'hvdc:',
								   ["help", "version", "debug", "configfile="])
	except getopt.GetoptError:
		print "ERROR reading program options\n"
		usage()

	for o, v in opts:
		if o in ("-h", "--help"):
			usage()
		if o in ("-v", "--version"):
			version()
			sys.exit(0)
		if o in ("-d", "--debug"):
			import logging
			logger = logging.getLogger()
			logger.setLevel(logging.DEBUG)
			logger.addHandler(logging.StreamHandler(sys.stderr))

		if o in ("-c", "--configfile"):
			if v == '':
				usage()
			conffile = v

	if not os.path.exists(conffile):
		print "ERROR: no configuration file %s" % conffile
		sys.exit(1)
		
	if not os.path.isfile(conffile):
		print "ERROR: %s is not a file" % conffile
		sys.exit(1)
		
	if len(args) > 0:
		cmnd = args[0]
	if cmnd not in cmnds_list:
		print "ERROR: Unknown command '%s'" % cmnd
		usage()

	mirrorNames = []
	if len(args) > 1:
		for i in range(1, len(args)):
			mirrorNames.append(args[i])

	# Load configuration file
	try:
		cnf = Config.Config(conffile)
	except Config.ConfigException, ex:
		print "ERROR: %s in file '%s'." % (ex.getErrorMessage(), conffile)
		sys.exit(1)

	# Verify if mirror names valid
	for mirror in mirrorNames:
		if not cnf.has_section(mirror):
			print("Unknown MIRROR [%s] on '%s'." % (mirrorNames, conffile))
			sys.exit(1)

	controller = Controller.Controller(cnf, mirrorNames)
	if not controller.isValidCommand(cmnd):
		usage()
	controller.executeCommand(cmnd)


# ------------
# Main Program
# ------------
if __name__ == '__main__':
	signal.signal(signal.SIGINT, sigint_handler)
	main()