more NEWS items
[buildbot.git] / buildbot / scripts / startup.py
blob356fe7ea3c68e5d50def21eb01ad4f6de09275ef
2 import os, sys, time
4 class Follower:
5 def follow(self):
6 from twisted.internet import reactor
7 from buildbot.scripts.reconfig 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
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()
22 def _failure(self, why):
23 from twisted.internet import reactor
24 from buildbot.scripts.logwatcher import BuildmasterTimeoutError, \
25 ReconfigError, BuildslaveTimeoutError
26 if why.check(BuildmasterTimeoutError):
27 print """
28 The buildmaster took more than 5 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 5 seconds to start and/or connect to the
35 buildmaster, 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 buildmaster, or the buildmaster 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 buildmaster 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 buildmaster.
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 buildmaster 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()
65 def start(config):
66 os.chdir(config['basedir'])
67 if config['quiet']:
68 return launch(config)
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)
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)
86 def launch(config):
87 sys.path.insert(0, os.path.abspath(os.getcwd()))
88 if os.path.exists("/usr/bin/make") and os.path.exists("Makefile.buildbot"):
89 # Preferring the Makefile lets slave admins do useful things like set
90 # up environment variables for the buildslave.
91 cmd = "make -f Makefile.buildbot start"
92 if not config['quiet']:
93 print cmd
94 os.system(cmd)
95 else:
96 # see if we can launch the application without actually having to
97 # spawn twistd, since spawning processes correctly is a real hassle
98 # on windows.
99 from twisted.python.runtime import platformType
100 argv = ["twistd",
101 "--no_save",
102 "--logfile=twistd.log", # windows doesn't use the same default
103 "--python=buildbot.tac"]
104 if platformType == "win32":
105 argv.append("--reactor=win32")
106 sys.argv = argv
108 # this is copied from bin/twistd. twisted-1.3.0 uses twistw, while
109 # twisted-2.0.0 uses _twistw.
110 if platformType == "win32":
111 try:
112 from twisted.scripts._twistw import run
113 except ImportError:
114 from twisted.scripts.twistw import run
115 else:
116 from twisted.scripts.twistd import run
117 run()