Package buildbot :: Package status :: Module client :: Class StatusClientPerspective
[frames] | no frames]

Class StatusClientPerspective

source code

         base.StatusReceiver --+    
                               |    
twisted.spread.pb.Avatar --+   |    
                           |   |    
   pbutil.NewCredPerspective --+    
                               |    
  base.StatusReceiverPerspective --+
                                   |
                                  StatusClientPerspective

Instance Methods
 
__init__(self, status) source code
 
__getstate__(self) source code
 
attached(self, mind) source code
 
detached(self, mind) source code
 
perspective_subscribe(self, mode, interval, target)
The remote client wishes to subscribe to some set of events.
source code
 
perspective_unsubscribe(self) source code
 
perspective_getBuildSets(self)
This returns tuples of (buildset, bsid), because that is much more convenient for tryclient.
source code
 
perspective_getBuilderNames(self) source code
 
perspective_getBuilder(self, name) source code
 
perspective_getSlave(self, name) source code
 
perspective_ping(self)
Ping method to allow pb clients to validate their connections.
source code
 
builderAdded(self, name, builder) source code
 
builderChangedState(self, name, state) source code
 
builderRemoved(self, name) source code
 
buildsetSubmitted(self, buildset) source code
 
buildStarted(self, name, build) source code
 
buildFinished(self, name, build, results) source code
 
buildETAUpdate(self, build, eta) source code
 
stepStarted(self, build, step) source code
 
stepFinished(self, build, step, results) source code
 
stepETAUpdate(self, build, step, ETA, expectations) source code
 
logStarted(self, build, step, log) source code
 
logFinished(self, build, step, log) source code
 
logChunk(self, build, step, log, channel, text) source code

Inherited from base.StatusReceiverPerspective: __provides__

Inherited from base.StatusReceiver: __providedBy__, changeAdded, requestCancelled, requestSubmitted, slaveConnected, slaveDisconnected, stepText2Changed, stepTextChanged

Inherited from twisted.spread.pb.Avatar: perspectiveMessageReceived

Class Variables
  subscribed = None
hash(x)
  client = None
hash(x)

Inherited from base.StatusReceiverPerspective: __implemented__

Method Details

attached(self, mind)

source code 
Overrides: pbutil.NewCredPerspective.attached

detached(self, mind)

source code 
Overrides: pbutil.NewCredPerspective.detached

perspective_subscribe(self, mode, interval, target)

source code 

The remote client wishes to subscribe to some set of events. 'target' will be sent remote messages when these events happen. 'mode' indicates which events are desired: it is a string with one of the following values:

'builders': builderAdded, builderRemoved 'builds': those plus builderChangedState, buildStarted, buildFinished 'steps': all those plus buildETAUpdate, stepStarted, stepFinished 'logs': all those plus stepETAUpdate, logStarted, logFinished 'full': all those plus logChunk (with the log contents)

Messages are defined by buildbot.interfaces.IStatusReceiver . 'interval' is used to specify how frequently ETAUpdate messages should be sent.

Raising or lowering the subscription level will take effect starting with the next build or step.

builderAdded(self, name, builder)

source code 
Overrides: base.StatusReceiver.builderAdded

builderChangedState(self, name, state)

source code 
Overrides: base.StatusReceiver.builderChangedState

builderRemoved(self, name)

source code 
Overrides: base.StatusReceiver.builderRemoved

buildsetSubmitted(self, buildset)

source code 
Overrides: base.StatusReceiver.buildsetSubmitted

buildStarted(self, name, build)

source code 
Overrides: base.StatusReceiver.buildStarted

buildFinished(self, name, build, results)

source code 
Overrides: base.StatusReceiver.buildFinished

buildETAUpdate(self, build, eta)

source code 
Overrides: base.StatusReceiver.buildETAUpdate

stepStarted(self, build, step)

source code 
Overrides: base.StatusReceiver.stepStarted

stepFinished(self, build, step, results)

source code 
Overrides: base.StatusReceiver.stepFinished

stepETAUpdate(self, build, step, ETA, expectations)

source code 
Overrides: base.StatusReceiver.stepETAUpdate

logStarted(self, build, step, log)

source code 
Overrides: base.StatusReceiver.logStarted

logFinished(self, build, step, log)

source code 
Overrides: base.StatusReceiver.logFinished

logChunk(self, build, step, log, channel, text)

source code 
Overrides: base.StatusReceiver.logChunk