|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 23.98 GB of 70.42 GB (34.05%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
share/
pyshared/
landscape/
monitor/
- drwxr-xr-x
|
Viewing file: plugin.py (3.21 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
from logging import info
from twisted.internet.defer import succeed
from landscape.log import format_object from landscape.lib.log import log_failure from landscape.broker.client import BrokerClientPlugin
class MonitorPlugin(BrokerClientPlugin): """ @cvar persist_name: If specified as a string, a C{_persist} attribute will be available after registration. """
persist_name = None
def register(self, monitor): super(MonitorPlugin, self).register(monitor) if self.persist_name is not None: self._persist = self.monitor.persist.root_at(self.persist_name) self.registry.reactor.call_on("resynchronize", self._resynchronize) else: self._persist = None
def _resynchronize(self): self.registry.persist.remove(self.persist_name)
@property def persist(self): """Return our L{Persist}, if any.""" return self._persist
@property def monitor(self): """An alias for the C{client} attribute.""" return self.client
def call_on_accepted(self, type, callable, *args, **kwargs): """ Register a callback fired upon a C{message-type-acceptance-changed}. """
def acceptance_changed(acceptance): if acceptance: return callable(*args, **kwargs)
self.monitor.reactor.call_on(("message-type-acceptance-changed", type), acceptance_changed)
class DataWatcher(MonitorPlugin): """ A utility for plugins which send data to the Landscape server which does not constantly change. New messages will only be sent when the result of get_data() has changed since the last time it was called.
Subclasses should provide a get_data method, and message_type, message_key, and persist_name class attributes. """
message_type = None message_key = None
def get_message(self): """ Construct a message with the latest data, or None, if the data has not changed since the last call. """ data = self.get_data() if self._persist.get("data") != data: self._persist.set("data", data) return {"type": self.message_type, self.message_key: data}
def send_message(self, urgent): message = self.get_message() if message is not None: info("Queueing a message with updated data watcher info " "for %s.", format_object(self)) result = self.registry.broker.send_message(message, urgent=urgent)
def persist_data(message_id): self.persist_data()
result.addCallback(persist_data) result.addErrback(log_failure) return result return succeed(None)
def persist_data(self): """ Sub-classes that need to defer the saving of persistent data should override this method. """ pass
def exchange(self, urgent=False): """ Conditionally add a message to the message store if new data is available. """ return self.registry.broker.call_if_accepted(self.message_type, self.send_message, urgent)
|