Package buildbot :: Module master :: Class BuildMaster
[frames] | no frames]

Class BuildMaster

source code

 twisted.application.service.Service --+    
                                       |    
twisted.application.service.MultiService --+
                                           |
                                          BuildMaster
Known Subclasses:

Instance Methods
 
__init__(self, basedir, configFileName='master.cfg', db_spec=None) source code
 
startService(self) source code
buildbot.status.builder.Status
getStatus(self) source code
 
loadTheConfigFile(self, configFile=None) source code
 
loadConfig(self, f, check_synchronously_only=False)
Internal function to load a specific configuration file.
source code
 
loadDatabase(self, db_spec, db_poll_interval=None) source code
 
loadConfig_Database(self, db_url, db_poll_interval) source code
 
loadConfig_Slaves(self, new_slaves) source code
 
loadConfig_Sources(self, sources) source code
 
loadConfig_DebugClient(self, debugPassword) source code
 
allSchedulers(self) source code
 
loadConfig_Builders(self, newBuilderData) source code
 
loadConfig_status(self, status) source code
 
addChange(self, change) source code
 
triggerSlaveManager(self) source code
 
submitBuildSet(self, builderNames, ss, reason, props=None, now=False) source code
 
__provides__(...)
Special descriptor for class __provides__

Inherited from twisted.application.service.MultiService: __iter__, addService, getServiceNamed, privilegedStartService, removeService, stopService

Inherited from twisted.application.service.Service: __getstate__, __providedBy__, disownServiceParent, setName, setServiceParent

Class Variables
  debug = 0
  manhole = None
hash(x)
  debugPassword = None
hash(x)
  projectName = '(unspecified)'
  projectURL = None
hash(x)
  buildbotURL = None
hash(x)
  change_svc = None
hash(x)
  properties = {}
  __implemented__ = <implementedBy buildbot.master.BuildMaster>

Inherited from twisted.application.service.Service: name, parent, running

Method Details

__init__(self, basedir, configFileName='master.cfg', db_spec=None)
(Constructor)

source code 
Overrides: twisted.application.service.MultiService.__init__

startService(self)

source code 
Overrides: twisted.application.service.Service.startService

loadConfig(self, f, check_synchronously_only=False)

source code 

Internal function to load a specific configuration file. Any errors in the file will be signalled by raising an exception.

If check_synchronously_only=True, I will return (with None) synchronously, after checking the config file for sanity, or raise an exception. I may also emit some DeprecationWarnings.

If check_synchronously_only=False, I will return a Deferred that fires (with None) when the configuration changes have been completed. This may involve a round-trip to each buildslave that was involved.

__provides__(...)

 
Special descriptor for class __provides__

The descriptor caches the implementedBy info, so that
we can get declarations for objects without instance-specific
interfaces a bit quicker.

For example:

  >>> from zope.interface import Interface
  >>> class IFooFactory(Interface):
  ...     pass
  >>> class IFoo(Interface):
  ...     pass
  >>> class C(object):
  ...     implements(IFoo)
  ...     classProvides(IFooFactory)
  >>> [i.getName() for i in C.__provides__]
  ['IFooFactory']

  >>> [i.getName() for i in C().__provides__]
  ['IFoo']

Overrides: twisted.application.service.Service.__provides__