ó »ÏâIc@sdZddlZddlZyeWn!ek rIddlmZnXddlZddlZddl Z ddl Z ddl Z de fd„ƒYZeƒZejƒe_ejƒe_ejƒe_ejƒe_ejƒe_de fd„ƒYZeƒZdS(s An implementation of the Web Site Process Bus. This module is completely standalone, depending only on the stdlib. Web Site Process Bus -------------------- A Bus object is used to contain and manage site-wide behavior: daemonization, HTTP server start/stop, process reload, signal handling, drop privileges, PID file management, logging for all of these, and many more. In addition, a Bus object provides a place for each web framework to register code that runs in response to site-wide events (like process start and stop), or which controls or otherwise interacts with the site-wide components mentioned above. For example, a framework which uses file-based templates would add known template filenames to an autoreload component. Ideally, a Bus object will be flexible enough to be useful in a variety of invocation scenarios: 1. The deployer starts a site from the command line via a framework- neutral deployment script; applications from multiple frameworks are mixed in a single site. Command-line arguments and configuration files are used to define site-wide components such as the HTTP server, WSGI component graph, autoreload behavior, signal handling, etc. 2. The deployer starts a site via some other process, such as Apache; applications from multiple frameworks are mixed in a single site. Autoreload and signal handling (from Python at least) are disabled. 3. The deployer starts a site via a framework-specific mechanism; for example, when running tests, exploring tutorials, or deploying single applications from a single framework. The framework controls which site-wide components are enabled as it sees fit. The Bus object in this package uses topic-based publish-subscribe messaging to accomplish all this. A few topic channels are built in ('start', 'stop', 'exit', and 'graceful'). Frameworks and site containers are free to define their own. If a message is sent to a channel that has not been defined or has no listeners, there is no effect. In general, there should only ever be a single Bus object per process. Frameworks and site containers share a single Bus object by publishing messages and subscribing listeners. The Bus object works as a finite state machine which models the current state of the process. Bus methods move it from one state to another; those methods then publish to subscribed listeners on the channel for the new state. O | V STOPPING --> STOPPED --> EXITING -> X A A | | \___ | | \ | | V V STARTED <-- STARTING iÿÿÿÿN(tSett _StateEnumcBs'eZdefd„ƒYZd„ZRS(tStatecBseZdZd„ZRS(cCs d|jS(Ns states.%s(tname(tself((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyt__repr__PsN(t__name__t __module__tNoneRR(((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyRNscCs5t||jƒr||_ntj|||ƒdS(N(t isinstanceRRtobjectt __setattr__(Rtkeytvalue((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyR Ss (RRR RR (((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyRMstBuscBsÂeZdZeZejZeZd„Zdd„Z d„Z d„Z d„Z d„Zd„Zd„Zd „Zd d „Zd d „Zd „Zd„Zddd„Zdded„ZRS(swProcess state-machine and messenger for HTTP site deployment. All listeners for a given channel are guaranteed to be called even if others at the same channel fail. Each failure is logged, but execution proceeds on to the next listener. The only way to stop all processing from inside a listener is to raise SystemExit and stop the whole server. cCsMt|_tj|_tgdD]}|tƒf^qƒ|_i|_dS(Ntstarttstoptexittgracefultlog(sstartsstopsexitsgracefulslog( tFalsetexecvtstatestSTOPPEDtstatetdicttsett listenerst _priorities(Rtchannel((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyt__init__ms   %cCsn||jkr"tƒ|j|Log the given message. Append the last traceback if requested.s RpRN(R.R/RQt _tracebacktformat_exceptionR8(RtmsgR'R(R3((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyRRs #N(RRt__doc__RRRRRRRR#R&R8R=RRRERRURHRRRRoR(((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyR_s&    !    )   (RtR>RCRt NameErrortsetsRR.RJRVR(RqR:R RRRRR@RARgR9Rtbus(((s=/usr/lib/python2.7/vendor-packages/cherrypy/process/wspbus.pyt=s(         ú