K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python2.7 / dist-packages / landscape /
server ip : 172.67.156.115

your ip : 172.69.6.3

H O M E


Filename/usr/lib/python2.7/dist-packages/landscape/amp.py
Size5.71 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:56
Last modified20-Feb-2014 23:01
Last accessed06-Jul-2025 10:50
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
"""Communication between components in different services via twisted AMP.

The Landscape client is composed by several processes that need to talk to
each other. For example the monitor and manager processes need to talk to
the broker in order to ask it to add new messages to the outgoing queue, and
the broker needs to talk to them in order to dispatch them incoming messages
from the server.

This module implements a few conveniences built around L{landscape.lib.amp} to
let the various services connect to each other in an easy and idiomatic way,
and have them respond to standard requests like "ping" or "exit".
"""
import os
import logging

from landscape.lib.amp import (
MethodCallClientFactory, MethodCallServerFactory, RemoteObject)


class ComponentPublisher(object):
"""Publish a Landscape client component using a UNIX socket.

Other Landscape client processes can then connect to the socket and invoke
methods on the component remotely, using L{MethodCall} commands.

@param component: The component to publish. It can be any Python object
implementing the methods listed in the C{methods} class variable.
@param reactor: The L{LandscapeReactor} used to listen to the socket.
@param config: The L{Configuration} object used to build the socket path.
"""

factory = MethodCallServerFactory

def __init__(self, component, reactor, config):
self._reactor = reactor
self._config = config
self._component = component
self._port = None
self.methods = get_remote_methods(type(component)).keys()

def start(self):
"""Start accepting connections."""
factory = MethodCallServerFactory(self._component, self.methods)
socket_path = _get_socket_path(self._component, self._config)
self._port = self._reactor.listen_unix(socket_path, factory)

def stop(self):
"""Stop accepting connections."""
return self._port.stopListening()


def get_remote_methods(klass):
"""Get all the remote methods declared on a class.

@param klass: A class to search for AMP-exposed methods.
"""
remote_methods = {}
for attribute_name in dir(klass):
potential_method = getattr(klass, attribute_name)
name = getattr(potential_method, "amp_exposed", None)
if name is not None:
remote_methods[name] = potential_method
return remote_methods


def remote(method):
"""
A decorator for marking a method as remotely accessible as a method on a
component.
"""
method.amp_exposed = method.__name__
return method


class ComponentConnector(object):
"""Utility superclass for creating connections with a Landscape component.

@cvar component: The class of the component to connect to, it is expected
to define a C{name} class attribute, which will be used to find out
the socket to use. It must be defined by sub-classes.
@cvar factory: The factory class to use for building protocols.
@cvar remote: The L{RemoteObject} class or sub-class used for building
remote objects.

@param reactor: A L{LandscapeReactor} object.
@param config: A L{LandscapeConfiguration}.
@param retry_on_reconnect: If C{True} the remote object built by this
connector will retry L{MethodCall}s that failed due to lost
connections.

@see: L{MethodCallClientFactory}.
"""
factory = MethodCallClientFactory
component = None # Must be defined by sub-classes
remote = RemoteObject

def __init__(self, reactor, config, retry_on_reconnect=False):
self._reactor = reactor
self._config = config
self._retry_on_reconnect = retry_on_reconnect
self._connector = None

def connect(self, max_retries=None, factor=None, quiet=False):
"""Connect to the remote Landscape component.

If the connection is lost after having been established, and then
it is established again by the reconnect mechanism, an event will
be fired.

@param max_retries: If given, the connector will keep trying to connect
up to that number of times, if the first connection attempt fails.
@param factor: Optionally a float indicating by which factor the
delay between subsequent retries should increase. Smaller values
result in a faster reconnection attempts pace.
@param quiet: A boolean indicating whether to log errors.
"""
factory = self.factory(self._reactor._reactor)
factory.initialDelay = factory.delay = 0.05
factory.retryOnReconnect = self._retry_on_reconnect
factory.remote = self.remote
factory.maxRetries = max_retries
if factor:
factory.factor = factor

def fire_reconnect(ignored):
self._reactor.fire("%s-reconnect" % self.component.name)

def connected(remote):
factory.notifyOnConnect(fire_reconnect)
return remote

def log_error(failure):
logging.error("Error while connecting to %s", self.component.name)
return failure

socket_path = _get_socket_path(self.component, self._config)
deferred = factory.getRemoteObject()
self._connector = self._reactor.connect_unix(socket_path, factory)

if not quiet:
deferred.addErrback(log_error)

return deferred.addCallback(connected)

def disconnect(self):
"""Disconnect the L{RemoteObject} that we have created."""
if self._connector is not None:
factory = self._connector.factory
factory.stopTrying()
self._connector.disconnect()
self._connector = None


def _get_socket_path(component, config):
return os.path.join(config.sockets_path, component.name + ".sock")