examples: Add newlines to accidentally unwrapped comment lines
[catalyst.git] / catalyst
1 #!/usr/bin/python -OO
2
3 # Maintained in full by:
4 # Catalyst Team <catalyst@gentoo.org>
5 # Release Engineering Team <releng@gentoo.org>
6 # Andrew Gaffney <agaffney@gentoo.org>
7 # Chris Gianelloni <wolf31o2@wolf31o2.org>
8 # $Id$
9
10 import os, sys, imp, string, getopt
11 import pdb
12 import os.path
13
14 __selfpath__ = os.path.abspath(os.path.dirname(__file__))
15
16 sys.path.append(__selfpath__ + "/modules")
17
18 import catalyst.config
19 import catalyst.util
20
21 __maintainer__="Catalyst <catalyst@gentoo.org>"
22 __version__="2.0.12.2"
23
24 conf_values={}
25
26 def usage():
27         print "Usage catalyst [options] [-C variable=value...] [ -s identifier]"
28         print " -a --clear-autoresume   clear autoresume flags"
29         print " -c --config     use specified configuration file"
30         print " -C --cli        catalyst commandline (MUST BE LAST OPTION)"
31         print " -d --debug      enable debugging"
32         print " -f --file       read specfile"
33         print " -F --fetchonly  fetch files only"
34         print " -h --help       print this help message"
35         print " -p --purge      clear tmp dirs,package cache and autoresume flags"
36         print " -P --purgeonly  clear tmp dirs,package cache and autoresume flags and exit"
37         print " -T --purgetmponly  clear tmp dirs and autoresume flags and exit"
38         print " -s --snapshot   generate a release snapshot"
39         print " -V --version    display version information"
40         print " -v --verbose    verbose output"
41         print
42         print "Usage examples:"
43         print
44         print "Using the commandline option (-C, --cli) to build a Portage snapshot:"
45         print "catalyst -C target=snapshot version_stamp=my_date"
46         print
47         print "Using the snapshot option (-s, --snapshot) to build a release snapshot:"
48         print "catalyst -s 20071121"
49         print
50         print "Using the specfile option (-f, --file) to build a stage target:"
51         print "catalyst -f stage1-specfile.spec"
52
53 def version():
54         print "Catalyst, version "+__version__
55         print "Copyright 2003-2008 Gentoo Foundation"
56         print "Copyright 2008-2012 various authors"
57         print "Distributed under the GNU General Public License version 2.1\n"
58
59 def parse_config(myconfig):
60         # search a couple of different areas for the main config file
61         myconf={}
62         config_file=""
63
64         confdefaults={ "storedir":"/var/tmp/catalyst",\
65                 "sharedir":"/usr/share/catalyst","distdir":"/usr/portage/distfiles",\
66                 "portdir":"/usr/portage","options":"",\
67                 "snapshot_cache":"/var/tmp/catalyst/snapshot_cache",\
68                 "hash_function":"crc32"}
69                 
70         # first, try the one passed (presumably from the cmdline)
71         if myconfig:
72                 if os.path.exists(myconfig):
73                         print "Using command line specified Catalyst configuration file, "+myconfig
74                         config_file=myconfig
75
76                 else:
77                         print "!!! catalyst: Could not use specified configuration file "+\
78                                 myconfig
79                         sys.exit(1)
80         
81         # next, try the default location
82         elif os.path.exists("/etc/catalyst/catalyst.conf"):
83                 print "Using default Catalyst configuration file, /etc/catalyst/catalyst.conf"
84                 config_file="/etc/catalyst/catalyst.conf"
85         
86         # can't find a config file (we are screwed), so bail out
87         else:
88                 print "!!! catalyst: Could not find a suitable configuration file"
89                 sys.exit(1)
90
91         # now, try and parse the config file "config_file"
92         try:
93 #               execfile(config_file, myconf, myconf)
94                 myconfig = catalyst.config.ConfigParser(config_file)
95                 myconf.update(myconfig.get_values())
96         
97         except:
98                 print "!!! catalyst: Unable to parse configuration file, "+myconfig
99                 sys.exit(1)
100         
101         # now, load up the values into conf_values so that we can use them
102         for x in confdefaults.keys():
103                 if x in myconf:
104                         print "Setting",x,"to config file value \""+myconf[x]+"\""
105                         conf_values[x]=myconf[x]
106                 else:
107                         print "Setting",x,"to default value \""+confdefaults[x]+"\""
108                         conf_values[x]=confdefaults[x]
109
110         # parse out the rest of the options from the config file
111         if "autoresume" in string.split(conf_values["options"]):
112                 print "Autoresuming support enabled."
113                 conf_values["AUTORESUME"]="1"
114
115         if "bindist" in string.split(conf_values["options"]):
116                 print "Binary redistribution enabled"
117                 conf_values["BINDIST"]="1"
118         else:
119                 print "Bindist is not enabled in catalyst.conf"
120                 print "Binary redistribution of generated stages/isos may be prohibited by law."
121                 print "Please see the use description for bindist on any package you are including."
122
123         if "ccache" in string.split(conf_values["options"]):
124                 print "Compiler cache support enabled."
125                 conf_values["CCACHE"]="1"
126
127         if "clear-autoresume" in string.split(conf_values["options"]):
128                 print "Cleaning autoresume flags support enabled."
129                 conf_values["CLEAR_AUTORESUME"]="1"
130
131 #       if "compress" in string.split(conf_values["options"]):
132 #               print "Compression enabled."
133 #               conf_values["COMPRESS"]="1"
134
135         if "distcc" in string.split(conf_values["options"]):
136                 print "Distcc support enabled."
137                 conf_values["DISTCC"]="1"
138
139         if "icecream" in string.split(conf_values["options"]):
140                 print "Icecream compiler cluster support enabled."
141                 conf_values["ICECREAM"]="1"
142
143         if "kerncache" in string.split(conf_values["options"]):
144                 print "Kernel cache support enabled."
145                 conf_values["KERNCACHE"]="1"
146
147         if "pkgcache" in string.split(conf_values["options"]):
148                 print "Package cache support enabled."
149                 conf_values["PKGCACHE"]="1"
150
151         if "purge" in string.split(conf_values["options"]):
152                 print "Purge support enabled."
153                 conf_values["PURGE"]="1"
154
155         if "seedcache" in string.split(conf_values["options"]):
156                 print "Seed cache support enabled."
157                 conf_values["SEEDCACHE"]="1"
158
159         if "snapcache" in string.split(conf_values["options"]):
160                 print "Snapshot cache support enabled."
161                 conf_values["SNAPCACHE"]="1"
162
163 #       if "tarball" in string.split(conf_values["options"]):
164 #               print "Tarball creation enabled."
165 #               conf_values["TARBALL"]="1"
166
167         if "digests" in myconf:
168                 conf_values["digests"]=myconf["digests"]
169         if "contents" in myconf:
170                 conf_values["contents"]=myconf["contents"]
171
172         if "envscript" in myconf:
173                 print "Envscript support enabled."
174                 conf_values["ENVSCRIPT"]=myconf["envscript"]
175
176         if "var_tmpfs_portage" in myconf:
177                 conf_values["var_tmpfs_portage"]=myconf["var_tmpfs_portage"];
178
179         if "port_logdir" in myconf:
180                 conf_values["port_logdir"]=myconf["port_logdir"];
181
182 def import_modules():
183         # import catalyst's own modules (i.e. catalyst_support and the arch modules)
184         targetmap={}
185
186         try:
187                 for x in required_build_targets:
188                         try:
189                                 fh=open(conf_values["sharedir"]+"/modules/"+x+".py")
190                                 module=imp.load_module(x,fh,"modules/"+x+".py",(".py","r",imp.PY_SOURCE))
191                                 fh.close()
192
193                         except IOError:
194                                 raise CatalystError,"Can't find "+x+".py plugin in "+\
195                                         conf_values["sharedir"]+"/modules/"
196
197                 for x in valid_build_targets:
198                         try:
199                                 fh=open(conf_values["sharedir"]+"/modules/"+x+".py")
200                                 module=imp.load_module(x,fh,"modules/"+x+".py",(".py","r",imp.PY_SOURCE))
201                                 module.register(targetmap)
202                                 fh.close()
203
204                         except IOError:
205                                 raise CatalystError,"Can't find "+x+".py plugin in "+\
206                                         conf_values["sharedir"]+"/modules/"
207
208         except ImportError:
209                 print "!!! catalyst: Python modules not found in "+\
210                         conf_values["sharedir"]+"/modules; exiting."
211                 sys.exit(1)
212
213         return targetmap
214
215 def build_target(addlargs, targetmap):
216         try:
217                 if addlargs["target"] not in targetmap:
218                         raise CatalystError,"Target \""+addlargs["target"]+"\" not available."
219                 
220                 mytarget=targetmap[addlargs["target"]](conf_values, addlargs)
221         
222                 mytarget.run()
223
224         except:
225                 catalyst.util.print_traceback()
226                 print "!!! catalyst: Error encountered during run of target " + addlargs["target"]
227                 sys.exit(1)
228
229 if __name__ == "__main__":
230         targetmap={}
231         
232         version()
233         if os.getuid() != 0:
234                 # catalyst cannot be run as a normal user due to chroots, mounts, etc
235                 print "!!! catalyst: This script requires root privileges to operate"
236                 sys.exit(2)
237
238         # we need some options in order to work correctly
239         if len(sys.argv) < 2:
240                 usage()
241                 sys.exit(2)
242
243         # parse out the command line arguments
244         try:
245                 opts,args = getopt.getopt(sys.argv[1:], "apPThvdc:C:f:FVs:", ["purge", "purgeonly", "purgetmponly", "help", "version", "debug",\
246                         "clear-autoresume", "config=", "cli=", "file=", "fetch", "verbose","snapshot="])
247         
248         except getopt.GetoptError:
249                 usage()
250                 sys.exit(2)
251         
252         # defaults for commandline opts
253         debug=False
254         verbose=False
255         fetch=False
256         myconfig=""
257         myspecfile=""
258         mycmdline=[]
259         myopts=[]
260
261         # check preconditions
262         if len(opts) == 0:
263                 print "!!! catalyst: please specify one of either -f or -C\n"
264                 usage()
265                 sys.exit(2)
266
267         run = False
268         for o, a in opts:
269                 if o in ("-h", "--help"):
270                         usage()
271                         sys.exit(1)
272                 
273                 if o in ("-V", "--version"):
274                         print "Catalyst version "+__version__
275                         sys.exit(1)
276
277                 if o in ("-d", "--debug"):
278                         conf_values["DEBUG"]="1"
279                         conf_values["VERBOSE"]="1"
280
281                 if o in ("-c", "--config"):
282                         myconfig=a
283
284                 if o in ("-C", "--cli"):
285                         run = True
286                         x=sys.argv.index(o)+1
287                         while x < len(sys.argv):
288                                 mycmdline.append(sys.argv[x])
289                                 x=x+1
290                         
291                 if o in ("-f", "--file"):
292                         run = True
293                         myspecfile=a
294
295                 if o in ("-F", "--fetchonly"):
296                         conf_values["FETCH"]="1"
297                         
298                 if o in ("-v", "--verbose"):
299                         conf_values["VERBOSE"]="1"
300
301                 if o in ("-s", "--snapshot"):
302                         if len(sys.argv) < 3:
303                                 print "!!! catalyst: missing snapshot identifier\n"
304                                 usage()
305                                 sys.exit(2)
306                         else:
307                                 run = True
308                                 mycmdline.append("target=snapshot")
309                                 mycmdline.append("version_stamp="+a)
310                 
311                 if o in ("-p", "--purge"):
312                         conf_values["PURGE"] = "1"
313
314                 if o in ("-P", "--purgeonly"):
315                         conf_values["PURGEONLY"] = "1"
316
317                 if o in ("-T", "--purgetmponly"):
318                         conf_values["PURGETMPONLY"] = "1"
319
320                 if o in ("-a", "--clear-autoresume"):
321                         conf_values["CLEAR_AUTORESUME"] = "1"
322
323         if not run:
324                 print "!!! catalyst: please specify one of either -f or -C\n"
325                 usage()
326                 sys.exit(2)
327
328         # import configuration file and import our main module using those settings
329         parse_config(myconfig)
330         sys.path.append(conf_values["sharedir"]+"/modules")
331         from catalyst_support import *
332         
333         # Start checking that digests are valid now that the hash_map was imported
334         # from catalyst_support
335         if "digests" in conf_values:
336                 for i in conf_values["digests"].split():
337                         if i not in hash_map:
338                                 print
339                                 print i+" is not a valid digest entry"
340                                 print "Valid digest entries:"
341                                 print hash_map.keys()
342                                 print
343                                 print "Catalyst aborting...."
344                                 sys.exit(2)
345                         if find_binary(hash_map[i][1]) == None:
346                                 print
347                                 print "digest="+i
348                                 print "\tThe "+hash_map[i][1]+\
349                                         " binary was not found. It needs to be in your system path"
350                                 print
351                                 print "Catalyst aborting...."
352                                 sys.exit(2)
353         if "hash_function" in conf_values:
354                 if conf_values["hash_function"] not in hash_map:
355                         print
356                         print conf_values["hash_function"]+\
357                                 " is not a valid hash_function entry"
358                         print "Valid hash_function entries:"
359                         print hash_map.keys()
360                         print
361                         print "Catalyst aborting...."
362                         sys.exit(2)
363                 if find_binary(hash_map[conf_values["hash_function"]][1]) == None:
364                         print
365                         print "hash_function="+conf_values["hash_function"]
366                         print "\tThe "+hash_map[conf_values["hash_function"]][1]+\
367                                 " binary was not found. It needs to be in your system path"
368                         print
369                         print "Catalyst aborting...."
370                         sys.exit(2)
371
372         # import the rest of the catalyst modules
373         targetmap=import_modules()
374
375         addlargs={}
376         
377         if myspecfile:
378                 spec = catalyst.config.SpecParser(myspecfile)
379                 addlargs.update(spec.get_values())
380         
381         if mycmdline:
382                 try:
383                         cmdline = catalyst.config.ConfigParser()
384                         cmdline.parse_lines(mycmdline)
385                         addlargs.update(cmdline.get_values())
386                 except CatalystError:
387                         print "!!! catalyst: Could not parse commandline, exiting."
388                         sys.exit(1)
389
390         if "target" not in addlargs:
391                 raise CatalystError, "Required value \"target\" not specified."
392
393         # everything is setup, so the build is a go
394         try:
395                 build_target(addlargs, targetmap)
396                         
397         except CatalystError:
398                 print
399                 print "Catalyst aborting...."
400                 sys.exit(2)
401         except KeyboardInterrupt:
402                 print "\nCatalyst build aborted due to user interrupt ( Ctrl-C )"
403                 print
404                 print "Catalyst aborting...."
405                 sys.exit(2)
406         except LockInUse:
407                 print "Catalyst aborting...."
408                 sys.exit(2)
409         except:
410                 print "Catalyst aborting...."
411                 raise
412                 sys.exit(2)
413
414         #except CatalystError:
415         #       print
416         #       print "Catalyst aborting...."
417         #       sys.exit(2)
418         #except KeyError:
419         #       print "\nproblem with command line or spec file ( Key Error )"
420         #       print "Key: "+str(sys.exc_value)+" was not found"
421         #       print "Catalyst aborting...."
422         #       sys.exit(2)
423         #except UnboundLocalError:
424         #       print
425         #       print "UnboundLocalError: "+str(sys.exc_value)+" was not found"
426         #       raise
427         #       print
428         #       print "Catalyst aborting...."
429         #       sys.exit(2)