class RevenServer(object):
A reven server. This is the root api object.
e.g: >>> import reven2 as rvn2
>>> reven_server = rvn2.RevenServer("localhost", 13370) >>> reven_server Reven server (localhost:13370) [connected]
>>> reven_server.host localhost
>>> reven_server.port 13370
>>> reven_server.is_connected() True
>>> reven_server.disconnect() >>> reven_server.status() disconnected
>>> reven_server.connect() >>> reven_server.status() connected
| Method | __init__ | 
    Connect to a Reven server. | 
| Property | host | 
    Property: The reven host. | 
| Property | port | 
    Property: The reven port. | 
| Method | is_connected | 
    Check the current connection status. | 
| Method | connect | 
    Connect to the reven host. | 
| Method | disconnect | 
    Disconnect from the reven host. | 
| Method | status | 
    Get the connection status string. | 
| Property | trace | 
    Property: Get a reven2.trace.Trace instance, which is the entry point for information related to a trace, mostly transitions & contexts. | 
  
| Property | ossi | 
    Property: Get a reven2.ossi.Ossi instance, which is the entry point for information related to OSSI (OS Semantic Information) such as executed binaries. | 
  
| Property | sessions | 
    Property: Get a reven2.session.Sessions instance, which is the entry point for handling the tracked sessions or manually publishing events. | 
  
| Property | bookmarks | 
    Property: Get a reven2.bookmark.Bookmarks instance, which is the entry point for handling the bookmarks of this scenario. | 
  
| Property | scenario_name | 
    Property: The name of the scenario this server is running. | 
| Method | __repr__ | 
    Undocumented | 
| Instance Variable | _host | 
    Undocumented | 
| Instance Variable | _port | 
    Undocumented | 
| Instance Variable | _rvn | 
    Undocumented | 
| Instance Variable | _trace | 
    Undocumented | 
| Instance Variable | _ossi_data_source | 
    Undocumented | 
| Instance Variable | _bookmarks | 
    Undocumented | 
| Instance Variable | _server_info | 
    Undocumented | 
| Instance Variable | _sessions | 
    Undocumented | 
Connect to a Reven server.
| Parameters | host | The reven host. | 
| port | The reven port. | |
| sessions | The reven2.session.Sessions to track when publishing events (such as transitions). Set a string to track a single named session, or pass a generator of strings to track all sessions in that generator. | 
Check the current connection status.
| Parameters | sessions | The reven2.session.Sessions to track when publishing events (such as transitions). Set a string to track a single named session, or pass a generator of strings to track all sessions in that generator. | 
| Returns | True, if the connection with the server is currently open. Otherwise, False. | |
Connect to the reven host.
Use this method after having called disconnect to renew a connection to the server.
| Raises | RuntimeError | If the connection is lost, in case of bad input, or in case of internal service error. | 
Disconnect from the reven host.
This method immediately closes the connection to the server. Use this method to avoid locking a licence token by keeping connections longer than wanted.
| Note | Closing the last connection to a REVEN server releases its licence token. After calling this method, the  After calling this method on a project, objects obtained from the server should not be used anymore. Calls to some of their methods may then raise RuntimeError exceptions.  | |
Get the connection status string.
| Returns | "connected" if currently connected, "disconnected" otherwise. | |
Property: Get a reven2.trace.Trace instance, which is the entry point for information related to a trace, mostly transitions & contexts.
| Returns | A reven2.trace.Trace. | |
| Raises | Exception | If the server status is disconnected. | 
Property: Get a reven2.ossi.Ossi instance, which is the entry point for information related to OSSI (OS Semantic Information) such as executed binaries.
| Returns | A reven2.ossi.Ossi. | |
| Raises | Exception | If the server status is disconnected. | 
Property: Get a reven2.session.Sessions instance, which is the entry point for handling the tracked sessions or manually publishing events.
| Returns | A reven2.session.Sessions. | |
| Raises | Exception | If the server status is disconnected. | 
Property: Get a reven2.bookmark.Bookmarks instance, which is the entry point for handling the bookmarks of this scenario.
| Returns | A reven2.bookmark.Bookmarks. | |