Update version to prepare the 2.0.11 release.
[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.11"
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 myconf.has_key(x):
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 "ccache" in string.split(conf_values["options"]):
116                 print "Compiler cache support enabled."
117                 conf_values["CCACHE"]="1"
118
119         if "clear-autoresume" in string.split(conf_values["options"]):
120                 print "Cleaning autoresume flags support enabled."
121                 conf_values["CLEAR_AUTORESUME"]="1"
122
123 #       if "compress" in string.split(conf_values["options"]):
124 #               print "Compression enabled."
125 #               conf_values["COMPRESS"]="1"
126
127         if "distcc" in string.split(conf_values["options"]):
128                 print "Distcc support enabled."
129                 conf_values["DISTCC"]="1"
130
131         if "icecream" in string.split(conf_values["options"]):
132                 print "Icecream compiler cluster support enabled."
133                 conf_values["ICECREAM"]="1"
134
135         if "kerncache" in string.split(conf_values["options"]):
136                 print "Kernel cache support enabled."
137                 conf_values["KERNCACHE"]="1"
138
139         if "pkgcache" in string.split(conf_values["options"]):
140                 print "Package cache support enabled."
141                 conf_values["PKGCACHE"]="1"
142
143         if "purge" in string.split(conf_values["options"]):
144                 print "Purge support enabled."
145                 conf_values["PURGE"]="1"
146
147         if "seedcache" in string.split(conf_values["options"]):
148                 print "Seed cache support enabled."
149                 conf_values["SEEDCACHE"]="1"
150
151         if "snapcache" in string.split(conf_values["options"]):
152                 print "Snapshot cache support enabled."
153                 conf_values["SNAPCACHE"]="1"
154
155 #       if "tarball" in string.split(conf_values["options"]):
156 #               print "Tarball creation enabled."
157 #               conf_values["TARBALL"]="1"
158
159         if myconf.has_key("digests"):
160                 conf_values["digests"]=myconf["digests"]
161         if myconf.has_key("contents"):
162                 conf_values["contents"]=myconf["contents"]
163
164         if myconf.has_key("envscript"):
165                 print "Envscript support enabled."
166                 conf_values["ENVSCRIPT"]=myconf["envscript"]
167
168 def import_modules():
169         # import catalyst's own modules (i.e. catalyst_support and the arch modules)
170         targetmap={}
171
172         try:
173                 for x in required_build_targets:
174                         try:
175                                 fh=open(conf_values["sharedir"]+"/modules/"+x+".py")
176                                 module=imp.load_module(x,fh,"modules/"+x+".py",(".py","r",imp.PY_SOURCE))
177                                 fh.close()
178
179                         except IOError:
180                                 raise CatalystError,"Can't find "+x+".py plugin in "+\
181                                         conf_values["sharedir"]+"/modules/"
182
183                 for x in valid_build_targets:
184                         try:
185                                 fh=open(conf_values["sharedir"]+"/modules/"+x+".py")
186                                 module=imp.load_module(x,fh,"modules/"+x+".py",(".py","r",imp.PY_SOURCE))
187                                 module.register(targetmap)
188                                 fh.close()
189
190                         except IOError:
191                                 raise CatalystError,"Can't find "+x+".py plugin in "+\
192                                         conf_values["sharedir"]+"/modules/"
193
194         except ImportError:
195                 print "!!! catalyst: Python modules not found in "+\
196                         conf_values["sharedir"]+"/modules; exiting."
197                 sys.exit(1)
198
199         return targetmap
200
201 def build_target(addlargs, targetmap):
202         try:
203                 if not targetmap.has_key(addlargs["target"]):
204                         raise CatalystError,"Target \""+addlargs["target"]+"\" not available."
205                 
206                 mytarget=targetmap[addlargs["target"]](conf_values, addlargs)
207         
208                 mytarget.run()
209
210         except:
211                 catalyst.util.print_traceback()
212                 print "!!! catalyst: Error encountered during run of target " + addlargs["target"]
213                 sys.exit(1)
214
215 if __name__ == "__main__":
216         targetmap={}
217         
218         version()
219         if os.getuid() != 0:
220                 # catalyst cannot be run as a normal user due to chroots, mounts, etc
221                 print "!!! catalyst: This script requires root privileges to operate"
222                 sys.exit(2)
223
224         # we need some options in order to work correctly
225         if len(sys.argv) < 2:
226                 usage()
227                 sys.exit(2)
228
229         # parse out the command line arguments
230         try:
231                 opts,args = getopt.getopt(sys.argv[1:], "apPThvdc:C:f:FVs:", ["purge", "purgeonly", "purgetmponly", "help", "version", "debug",\
232                         "clear-autoresume", "config=", "cli=", "file=", "fetch", "verbose","snapshot="])
233         
234         except getopt.GetoptError:
235                 usage()
236                 sys.exit(2)
237         
238         # defaults for commandline opts
239         debug=False
240         verbose=False
241         fetch=False
242         myconfig=""
243         myspecfile=""
244         mycmdline=[]
245         myopts=[]
246
247         # check preconditions
248         if len(opts) == 0:
249                 print "!!! catalyst: please specify one of either -f or -C\n"
250                 usage()
251                 sys.exit(2)
252
253         run = False
254         for o, a in opts:
255                 if o in ("-h", "--help"):
256                         usage()
257                         sys.exit(1)
258                 
259                 if o in ("-V", "--version"):
260                         print "Catalyst version "+__version__
261                         sys.exit(1)
262
263                 if o in ("-d", "--debug"):
264                         conf_values["DEBUG"]="1"
265                         conf_values["VERBOSE"]="1"
266
267                 if o in ("-c", "--config"):
268                         myconfig=a
269
270                 if o in ("-C", "--cli"):
271                         run = True
272                         x=sys.argv.index(o)+1
273                         while x < len(sys.argv):
274                                 mycmdline.append(sys.argv[x])
275                                 x=x+1
276                         
277                 if o in ("-f", "--file"):
278                         run = True
279                         myspecfile=a
280
281                 if o in ("-F", "--fetchonly"):
282                         conf_values["FETCH"]="1"
283                         
284                 if o in ("-v", "--verbose"):
285                         conf_values["VERBOSE"]="1"
286
287                 if o in ("-s", "--snapshot"):
288                         if len(sys.argv) < 3:
289                                 print "!!! catalyst: missing snapshot identifier\n"
290                                 usage()
291                                 sys.exit(2)
292                         else:
293                                 run = True
294                                 mycmdline.append("target=snapshot")
295                                 mycmdline.append("version_stamp="+a)
296                 
297                 if o in ("-p", "--purge"):
298                         conf_values["PURGE"] = "1"
299
300                 if o in ("-P", "--purgeonly"):
301                         conf_values["PURGEONLY"] = "1"
302
303                 if o in ("-T", "--purgetmponly"):
304                         conf_values["PURGETMPONLY"] = "1"
305
306                 if o in ("-a", "--clear-autoresume"):
307                         conf_values["CLEAR_AUTORESUME"] = "1"
308
309         if not run:
310                 print "!!! catalyst: please specify one of either -f or -C\n"
311                 usage()
312                 sys.exit(2)
313
314         # import configuration file and import our main module using those settings
315         parse_config(myconfig)
316         sys.path.append(conf_values["sharedir"]+"/modules")
317         from catalyst_support import *
318         
319         # Start checking that digests are valid now that the hash_map was imported
320         # from catalyst_support
321         if conf_values.has_key("digests"):
322                 for i in conf_values["digests"].split():
323                         if not hash_map.has_key(i):
324                                 print
325                                 print i+" is not a valid digest entry"
326                                 print "Valid digest entries:"
327                                 print hash_map.keys()
328                                 print
329                                 print "Catalyst aborting...."
330                                 sys.exit(2)
331                         if find_binary(hash_map[i][1]) == None:
332                                 print
333                                 print "digest="+i
334                                 print "\tThe "+hash_map[i][1]+\
335                                         " binary was not found. It needs to be in your system path"
336                                 print
337                                 print "Catalyst aborting...."
338                                 sys.exit(2)
339         if conf_values.has_key("hash_function"):
340                 if not hash_map.has_key(conf_values["hash_function"]):
341                         print
342                         print conf_values["hash_function"]+\
343                                 " is not a valid hash_function entry"
344                         print "Valid hash_function entries:"
345                         print hash_map.keys()
346                         print
347                         print "Catalyst aborting...."
348                         sys.exit(2)
349                 if find_binary(hash_map[conf_values["hash_function"]][1]) == None:
350                         print
351                         print "hash_function="+conf_values["hash_function"]
352                         print "\tThe "+hash_map[conf_values["hash_function"]][1]+\
353                                 " binary was not found. It needs to be in your system path"
354                         print
355                         print "Catalyst aborting...."
356                         sys.exit(2)
357
358         # import the rest of the catalyst modules
359         targetmap=import_modules()
360
361         addlargs={}
362         
363         if myspecfile:
364                 spec = catalyst.config.SpecParser(myspecfile)
365                 addlargs.update(spec.get_values())
366         
367         if mycmdline:
368                 try:
369                         cmdline = catalyst.config.ConfigParser()
370                         cmdline.parse_lines(mycmdline)
371                         addlargs.update(cmdline.get_values())
372                 except CatalystError:
373                         print "!!! catalyst: Could not parse commandline, exiting."
374                         sys.exit(1)
375
376         if not addlargs.has_key("target"):
377                 raise CatalystError, "Required value \"target\" not specified."
378
379         # everything is setup, so the build is a go
380         try:
381                 build_target(addlargs, targetmap)
382                         
383         except CatalystError:
384                 print
385                 print "Catalyst aborting...."
386                 sys.exit(2)
387         except KeyboardInterrupt:
388                 print "\nCatalyst build aborted due to user interrupt ( Ctrl-C )"
389                 print
390                 print "Catalyst aborting...."
391                 sys.exit(2)
392         except LockInUse:
393                 print "Catalyst aborting...."
394                 sys.exit(2)
395         except:
396                 print "Catalyst aborting...."
397                 raise
398                 sys.exit(2)
399
400         #except CatalystError:
401         #       print
402         #       print "Catalyst aborting...."
403         #       sys.exit(2)
404         #except KeyError:
405         #       print "\nproblem with command line or spec file ( Key Error )"
406         #       print "Key: "+str(sys.exc_value)+" was not found"
407         #       print "Catalyst aborting...."
408         #       sys.exit(2)
409         #except UnboundLocalError:
410         #       print
411         #       print "UnboundLocalError: "+str(sys.exc_value)+" was not found"
412         #       raise
413         #       print
414         #       print "Catalyst aborting...."
415         #       sys.exit(2)