SAMPClient¶
-
class
astropy.vo.samp.SAMPClient(hub, name=None, description=None, metadata=None, addr=None, port=0, https=False, key_file=None, cert_file=None, cert_reqs=0, ca_certs=None, ssl_version=None, callable=True)[source] [edit on github]¶ Bases:
objectUtility class which provides facilities to create and manage a SAMP compliant XML-RPC server that acts as SAMP callable client application.
Parameters: hub :
SAMPHubProxyAn instance of
SAMPHubProxyto be used for messaging with the SAMP Hub.name : str, optional
Client name (corresponding to
samp.namemetadata keyword).description : str, optional
Client description (corresponding to
samp.description.textmetadata keyword).metadata : dict, optional
Client application metadata in the standard SAMP format.
addr : str, optional
Listening address (or IP). This defaults to 127.0.0.1 if the internet is not reachable, otherwise it defaults to the host name.
port : int, optional
Listening XML-RPC server socket port. If left set to 0 (the default), the operating system will select a free port.
https : bool, optional
If
True, set the callable client running on a Secure Sockets Layer (SSL) connection (HTTPS). By default SSL is disabled.key_file : str, optional
The path to a file containing the private key for SSL connections. If the certificate file (
cert_file) contains the private key, thenkey_filecan be omitted.cert_file : str, optional
The path to a file which contains a certificate to be used to identify the local side of the secure connection.
cert_reqs : int, optional
Whether a certificate is required from the server side of the connection, and whether it will be validated if provided. It must be one of the three values
ssl.CERT_NONE(certificates ignored),ssl.CERT_OPTIONAL(not required, but validated if provided), orssl.CERT_REQUIRED(required and validated). If the value of this parameter is notssl.CERT_NONE, then theca_certsparameter must point to a file of CA certificates.ca_certs : str, optional
The path to a file containing a set of concatenated “Certification Authority” certificates, which are used to validate the certificate passed from the Hub end of the connection.
ssl_version : int, optional
Which version of the SSL protocol to use. Typically, the server chooses a particular protocol version, and the client must adapt to the server’s choice. Most of the versions are not interoperable with the other versions. If not specified, the default SSL version is taken from the default in the installed version of the Python standard
ssllibrary. See thessldocumentation for more information.callable : bool, optional
Whether the client can receive calls and notifications. If set to
False, then the client can send notifications and calls, but can not receive any.Attributes Summary
is_registeredWhether the client is currently registered. is_runningWhether the client is currently running. Methods Summary
bind_receive_call(mtype, function[, ...])Bind a specific MType call to a function or class method. bind_receive_message(mtype, function[, ...])Bind a specific MType to a function or class method, being intended for a call or a notification. bind_receive_notification(mtype, function[, ...])Bind a specific MType notification to a function or class method. bind_receive_response(msg_tag, function)Bind a specific msg-tag response to a function or class method. declare_metadata([metadata])Declare the client application metadata supported. declare_subscriptions([subscriptions])Declares the MTypes the client wishes to subscribe to, implicitly defined with the MType binding methods bind_receive_notification()andbind_receive_call().get_private_key()Return the client private key used for the Standard Profile communications obtained at registration time ( samp.private-key).get_public_id()Return public client ID obtained at registration time ( samp.self-id).receive_call(private_key, sender_id, msg_id, ...)Standard callable client receive_callmethod.receive_notification(private_key, sender_id, ...)Standard callable client receive_notificationmethod.receive_response(private_key, responder_id, ...)Standard callable client receive_responsemethod.register()Register the client to the SAMP Hub. start()Start the client in a separate thread (non-blocking). stop([timeout])Stop the client. unbind_receive_call(mtype[, declare])Remove from the calls binding table the specified MType and unsubscribe the client from it (if required). unbind_receive_notification(mtype[, declare])Remove from the notifications binding table the specified MType and unsubscribe the client from it (if required). unbind_receive_response(msg_tag)Remove from the responses binding table the specified message-tag. unregister()Unregister the client from the SAMP Hub. Attributes Documentation
-
is_registered¶ Whether the client is currently registered.
-
is_running¶ Whether the client is currently running.
Methods Documentation
-
bind_receive_call(mtype, function, declare=True, metadata=None)[source] [edit on github]¶ Bind a specific MType call to a function or class method.
The function must be of the form:
def my_function_or_method(<self,> private_key, sender_id, msg_id, mtype, params, extra)
where
private_keyis the client private-key,sender_idis the notification sender ID,msg_idis the Hub message-id,mtypeis the message MType,paramsis the message parameter set (content of"samp.params") andextrais a dictionary containing any extra message map entry. The client is automatically declared subscribed to the MType by default.Parameters: mtype : str
MType to be caught.
function : callable
Application function to be used when
mtypeis received.declare : bool, optional
Specify whether the client must be automatically declared as subscribed to the MType (see also
declare_subscriptions()).metadata : dict, optional
Dictionary containing additional metadata to declare associated with the MType subscribed to (see also
declare_subscriptions()).
-
bind_receive_message(mtype, function, declare=True, metadata=None)[source] [edit on github]¶ Bind a specific MType to a function or class method, being intended for a call or a notification.
The function must be of the form:
def my_function_or_method(<self,> private_key, sender_id, msg_id, mtype, params, extra)
where
private_keyis the client private-key,sender_idis the notification sender ID,msg_idis the Hub message-id (calls only, otherwise isNone),mtypeis the message MType,paramsis the message parameter set (content of"samp.params") andextrais a dictionary containing any extra message map entry. The client is automatically declared subscribed to the MType by default.Parameters: mtype : str
MType to be catched.
function : callable
Application function to be used when
mtypeis received.declare : bool, optional
Specify whether the client must be automatically declared as subscribed to the MType (see also
declare_subscriptions()).metadata : dict, optional
Dictionary containing additional metadata to declare associated with the MType subscribed to (see also
declare_subscriptions()).
-
bind_receive_notification(mtype, function, declare=True, metadata=None)[source] [edit on github]¶ Bind a specific MType notification to a function or class method.
The function must be of the form:
def my_function_or_method(<self,> private_key, sender_id, mtype, params, extra)
where
private_keyis the client private-key,sender_idis the notification sender ID,mtypeis the message MType,paramsis the notified message parameter set (content of"samp.params") andextrais a dictionary containing any extra message map entry. The client is automatically declared subscribed to the MType by default.Parameters: mtype : str
MType to be caught.
function : callable
Application function to be used when
mtypeis received.declare : bool, optional
Specify whether the client must be automatically declared as subscribed to the MType (see also
declare_subscriptions()).metadata : dict, optional
Dictionary containing additional metadata to declare associated with the MType subscribed to (see also
declare_subscriptions()).
-
bind_receive_response(msg_tag, function)[source] [edit on github]¶ Bind a specific msg-tag response to a function or class method.
The function must be of the form:
def my_function_or_method(<self,> private_key, responder_id, msg_tag, response)
where
private_keyis the client private-key,responder_idis the message responder ID,msg_tagis the message-tag provided at call time andresponseis the response received.Parameters: msg_tag : str
Message-tag to be caught.
function : callable
Application function to be used when
msg_tagis received.
-
declare_metadata(metadata=None)[source] [edit on github]¶ Declare the client application metadata supported.
Parameters: metadata : dict, optional
Dictionary containing the client application metadata as defined in the SAMP definition document. If omitted, then no metadata are declared.
-
declare_subscriptions(subscriptions=None)[source] [edit on github]¶ Declares the MTypes the client wishes to subscribe to, implicitly defined with the MType binding methods
bind_receive_notification()andbind_receive_call().An optional
subscriptionsmap can be added to the final map passed to thedeclare_subscriptions()method.Parameters: subscriptions : dict, optional
Dictionary containing the list of MTypes to subscribe to, with the same format of the
subscriptionsmap passed to thedeclare_subscriptions()method.
-
get_private_key()[source] [edit on github]¶ Return the client private key used for the Standard Profile communications obtained at registration time (
samp.private-key).Returns: key : str
Client private key.
-
get_public_id()[source] [edit on github]¶ Return public client ID obtained at registration time (
samp.self-id).Returns: id : str
Client public ID.
-
receive_call(private_key, sender_id, msg_id, message)[source] [edit on github]¶ Standard callable client
receive_callmethod.This method is automatically handled when the
bind_receive_call()method is used to bind distinct operations to MTypes. In case of a customized callable client implementation that inherits from theSAMPClientclass this method should be overwritten.Note
When overwritten, this method must always return a string result (even empty).
Parameters: private_key : str
Client private key.
sender_id : str
Sender public ID.
msg_id : str
Message ID received.
message : dict
Received message.
Returns: confirmation : str
Any confirmation string.
-
receive_notification(private_key, sender_id, message)[source] [edit on github]¶ Standard callable client
receive_notificationmethod.This method is automatically handled when the
bind_receive_notification()method is used to bind distinct operations to MTypes. In case of a customized callable client implementation that inherits from theSAMPClientclass this method should be overwritten.Note
When overwritten, this method must always return a string result (even empty).
Parameters: private_key : str
Client private key.
sender_id : str
Sender public ID.
message : dict
Received message.
Returns: confirmation : str
Any confirmation string.
-
receive_response(private_key, responder_id, msg_tag, response)[source] [edit on github]¶ Standard callable client
receive_responsemethod.This method is automatically handled when the
bind_receive_response()method is used to bind distinct operations to MTypes. In case of a customized callable client implementation that inherits from theSAMPClientclass this method should be overwritten.Note
When overwritten, this method must always return a string result (even empty).
Parameters: private_key : str
Client private key.
responder_id : str
Responder public ID.
msg_tag : str
Response message tag.
response : dict
Received response.
Returns: confirmation : str
Any confirmation string.
-
register()[source] [edit on github]¶ Register the client to the SAMP Hub.
-
start()[source] [edit on github]¶ Start the client in a separate thread (non-blocking).
This only has an effect if
callablewas set toTruewhen initializing the client.
-
stop(timeout=10.0)[source] [edit on github]¶ Stop the client.
Parameters: timeout : float
Timeout after which to give up if the client cannot be cleanly shut down.
-
unbind_receive_call(mtype, declare=True)[source] [edit on github]¶ Remove from the calls binding table the specified MType and unsubscribe the client from it (if required).
Parameters: mtype : str
MType to be removed.
declare : bool
Specify whether the client must be automatically declared as unsubscribed from the MType (see also
declare_subscriptions()).
-
unbind_receive_notification(mtype, declare=True)[source] [edit on github]¶ Remove from the notifications binding table the specified MType and unsubscribe the client from it (if required).
Parameters: mtype : str
MType to be removed.
declare : bool
Specify whether the client must be automatically declared as unsubscribed from the MType (see also
declare_subscriptions()).
-
unbind_receive_response(msg_tag)[source] [edit on github]¶ Remove from the responses binding table the specified message-tag.
Parameters: msg_tag : str
Message-tag to be removed.
-
unregister()[source] [edit on github]¶ Unregister the client from the SAMP Hub.
-