Package buildslave :: Package scripts :: Module startup
[frames] | no frames]

Source Code for Module buildslave.scripts.startup

  1   
  2  import os, sys, time 
  3   
4 -class Follower:
5 - def follow(self):
6 from twisted.internet import reactor 7 from buildslave.scripts.logwatcher import LogWatcher 8 self.rc = 0 9 print "Following twistd.log until startup finished.." 10 lw = LogWatcher("twistd.log") 11 d = lw.start() 12 d.addCallbacks(self._success, self._failure) 13 reactor.run() 14 return self.rc
15
16 - def _success(self, processtype):
17 from twisted.internet import reactor 18 print "The %s appears to have (re)started correctly." % processtype 19 self.rc = 0 20 reactor.stop()
21
22 - def _failure(self, why):
23 from twisted.internet import reactor 24 from buildslave.scripts.logwatcher import BuildmasterTimeoutError, \ 25 ReconfigError, BuildslaveTimeoutError, BuildSlaveDetectedError 26 if why.check(BuildmasterTimeoutError): 27 print """ 28 The buildslave took more than 10 seconds to start, so we were unable to 29 confirm that it started correctly. Please 'tail twistd.log' and look for a 30 line that says 'configuration update complete' to verify correct startup. 31 """ 32 elif why.check(BuildslaveTimeoutError): 33 print """ 34 The buildslave took more than 10 seconds to start and/or connect to the 35 buildslave, so we were unable to confirm that it started and connected 36 correctly. Please 'tail twistd.log' and look for a line that says 'message 37 from master: attached' to verify correct startup. If you see a bunch of 38 messages like 'will retry in 6 seconds', your buildslave might not have the 39 correct hostname or portnumber for the buildslave, or the buildslave might 40 not be running. If you see messages like 41 'Failure: twisted.cred.error.UnauthorizedLogin' 42 then your buildslave might be using the wrong botname or password. Please 43 correct these problems and then restart the buildslave. 44 """ 45 elif why.check(ReconfigError): 46 print """ 47 The buildslave appears to have encountered an error in the master.cfg config 48 file during startup. It is probably running with an empty configuration right 49 now. Please inspect and fix master.cfg, then restart the buildslave. 50 """ 51 elif why.check(BuildSlaveDetectedError): 52 print """ 53 Buildslave is starting up, not following logfile. 54 """ 55 else: 56 print """ 57 Unable to confirm that the buildslave started correctly. You may need to 58 stop it, fix the config file, and restart. 59 """ 60 print why 61 self.rc = 1 62 reactor.stop()
63 64
65 -def start(config):
66 os.chdir(config['basedir']) 67 if config['quiet']: 68 return launch(config) 69 70 # we probably can't do this os.fork under windows 71 from twisted.python.runtime import platformType 72 if platformType == "win32": 73 return launch(config) 74 75 # fork a child to launch the daemon, while the parent process tails the 76 # logfile 77 if os.fork(): 78 # this is the parent 79 rc = Follower().follow() 80 sys.exit(rc) 81 # this is the child: give the logfile-watching parent a chance to start 82 # watching it before we start the daemon 83 time.sleep(0.2) 84 launch(config)
85
86 -def launch(config):
87 sys.path.insert(0, os.path.abspath(os.getcwd())) 88 89 # see if we can launch the application without actually having to 90 # spawn twistd, since spawning processes correctly is a real hassle 91 # on windows. 92 from twisted.python.runtime import platformType 93 argv = ["twistd", 94 "--no_save", 95 "--logfile=twistd.log", # windows doesn't use the same default 96 "--python=buildbot.tac"] 97 sys.argv = argv 98 99 # this is copied from bin/twistd. twisted-2.0.0 through 2.4.0 use 100 # _twistw.run . Twisted-2.5.0 and later use twistd.run, even for 101 # windows. 102 from twisted import __version__ 103 major, minor, ignored = __version__.split(".", 2) 104 major = int(major) 105 minor = int(minor) 106 if (platformType == "win32" and (major == 2 and minor < 5)): 107 from twisted.scripts import _twistw 108 run = _twistw.run 109 else: 110 from twisted.scripts import twistd 111 run = twistd.run 112 run()
113