Hook up Unit.run() to api
[osm/N2VC.git] / juju / model.py
index 32295d5..dce4697 100644 (file)
+from .client import watcher
+from .delta import get_entity_delta
+
+
+class ModelEntity(object):
+    """An object in the Model tree"""
+
+    def __init__(self, data, model):
+        """Initialize a new entity
+
+        :param data: dict of data from a watcher delta
+        :param model: The model instance in whose object tree this
+            entity resides
+
+        """
+        self.data = data
+        self.model = model
+
+    def __getattr__(self, name):
+        return self.data[name]
+
+
 class Model(object):
-    def add_machine(self):
+    def __init__(self, connection):
+        """Instantiate a new connected Model.
+
+        :param connection: `juju.client.connection.Connection` instance
+
+        """
+        self.connection = connection
+        self.observers = set()
+        self.state = dict()
+
+    def add_observer(self, callable_):
+        """Register an "on-model-change" callback
+
+        Once a watch is started (Model.watch() is called), ``callable_``
+        will be called each time the model changes. callable_ should
+        accept the following positional arguments:
+
+            delta - An instance of :class:`juju.delta.EntityDelta`
+                containing the raw delta data recv'd from the Juju
+                websocket.
+
+            old_obj - If the delta modifies an existing object in the model,
+                old_obj will be a copy of that object, as it was before the
+                delta was applied. Will be None if the delta creates a new
+                entity in the model.
+
+            new_obj - A copy of the new or updated object, after the delta
+                is applied. Will be None if the delta removes an entity
+                from the model.
+
+            model - The :class:`Model` itself.
+
+        """
+        self.observers.add(callable_)
+
+    async def watch(self):
+        """Start an asynchronous watch against this model.
+
+        See :meth:`add_observer` to register an onchange callback.
+
+        """
+        allwatcher = watcher.AllWatcher()
+        allwatcher.connect(self.connection)
+        while True:
+            results = await allwatcher.Next()
+            for delta in results.deltas:
+                delta = get_entity_delta(delta)
+                old_obj, new_obj = self._apply_delta(delta)
+                self._notify_observers(delta, old_obj, new_obj)
+
+    def _apply_delta(self, delta):
+        """Apply delta to our model state and return the a copy of the
+        affected object as it was before and after the update, e.g.:
+
+            old_obj, new_obj = self._apply_delta(delta)
+
+        old_obj may be None if the delta is for the creation of a new object,
+        e.g. a new application or unit is deployed.
+
+        new_obj may be if no object was created or updated, or if an object
+        was deleted as a result of the delta being applied.
+
+        """
+        old_obj, new_obj = None, None
+
+        if (delta.entity in self.state and
+                delta.get_id() in self.state[delta.entity]):
+            old_obj = self.state[delta.entity][delta.get_id()]
+            if delta.type == 'remove':
+                del self.state[delta.entity][delta.get_id()]
+                return old_obj, new_obj
+
+        new_obj = self.state.setdefault(delta.entity, {})[delta.get_id()] = (
+            self._create_model_entity(delta))
+
+        return old_obj, new_obj
+
+    def _create_model_entity(self, delta):
+        """Return an object instance representing the entity created or
+        updated by ``delta``
+
+        """
+        entity_class = delta.get_entity_class()
+        return entity_class(delta.data, self)
+
+    def _notify_observers(self, delta, old_obj, new_obj):
+        """Call observing callbacks, notifying them of a change in model state
+
+        :param delta: The raw change from the watcher
+            (:class:`juju.client.overrides.Delta`)
+        :param old_obj: The object in the model that this delta updates.
+            May be None.
+        :param new_obj: The object in the model that is created or updated
+            by applying this delta.
+
+        """
+        for o in self.observers:
+            o(delta, old_obj, new_obj, self)
+
+    def add_machine(
+            self, spec=None, constraints=None, disks=None, series=None,
+            count=1):
         """Start a new, empty machine and optionally a container, or add a
         container to a machine.
 
+        :param str spec: Machine specification
+            Examples::
+
+                (None) - starts a new machine
+                'lxc' - starts a new machine with on lxc container
+                'lxc:4' - starts a new lxc container on machine 4
+                'ssh:user@10.10.0.3' - manually provisions a machine with ssh
+                'zone=us-east-1a' - starts a machine in zone us-east-1s on AWS
+                'maas2.name' - acquire machine maas2.name on MAAS
+        :param constraints: Machine constraints
+        :type constraints: :class:`juju.Constraints`
+        :param list disks: List of disk :class:`constraints <juju.Constraints>`
+        :param str series: Series
+        :param int count: Number of machines to deploy
+
+        Supported container types are: lxc, lxd, kvm
+
+        When deploying a container to an existing machine, constraints cannot
+        be used.
+
         """
         pass
     add_machines = add_machine
 
-    def add_relation(self):
+    def add_relation(self, relation1, relation2):
         """Add a relation between two services.
 
+        :param str relation1: '<service>[:<relation_name>]'
+        :param str relation2: '<service>[:<relation_name>]'
+
         """
         pass
 
-    def add_space(self):
+    def add_space(self, name, *cidrs):
         """Add a new network space.
 
+        Adds a new space with the given name and associates the given
+        (optional) list of existing subnet CIDRs with it.
+
+        :param str name: Name of the space
+        :param \*cidrs: Optional list of existing subnet CIDRs
+
         """
         pass
 
-    def add_ssh_key(self):
+    def add_ssh_key(self, key):
         """Add a public SSH key to this model.
 
+        :param str key: The public ssh key
+
         """
         pass
     add_ssh_keys = add_ssh_key
 
-    def add_subnet(self):
+    def add_subnet(self, cidr_or_id, space, *zones):
         """Add an existing subnet to this model.
 
+        :param str cidr_or_id: CIDR or provider ID of the existing subnet
+        :param str space: Network space with which to associate
+        :param str \*zones: Zone(s) in which the subnet resides
+
         """
         pass
 
@@ -38,9 +196,12 @@ class Model(object):
         """
         pass
 
-    def block(self):
+    def block(self, *commands):
         """Add a new block to this model.
 
+        :param str \*commands: The commands to block. Valid values are
+            'all-changes', 'destroy-model', 'remove-object'
+
         """
         pass
 
@@ -50,33 +211,91 @@ class Model(object):
         """
         pass
 
-    def get_cached_images(self):
+    def get_cached_images(self, arch=None, kind=None, series=None):
         """Return a list of cached OS images.
 
+        :param str arch: Filter by image architecture
+        :param str kind: Filter by image kind, e.g. 'lxd'
+        :param str series: Filter by image series, e.g. 'xenial'
+
         """
         pass
 
-    def create_backup(self):
+    def create_backup(self, note=None, no_download=False):
         """Create a backup of this model.
 
+        :param str note: A note to store with the backup
+        :param bool no_download: Do not download the backup archive
+        :return str: Path to downloaded archive
+
         """
         pass
 
-    def create_storage_pool(self):
+    def create_storage_pool(self, name, provider_type, **pool_config):
         """Create or define a storage pool.
 
+        :param str name: Name to give the storage pool
+        :param str provider_type: Pool provider type
+        :param \*\*pool_config: key/value pool configuration pairs
+
         """
         pass
 
-    def debug_log(self):
+    def debug_log(
+            self, no_tail=False, exclude_module=None, include_module=None,
+            include=None, level=None, limit=0, lines=10, replay=False,
+            exclude=None):
         """Get log messages for this model.
 
-        """
-        pass
-
-    def deploy(self):
+        :param bool no_tail: Stop after returning existing log messages
+        :param list exclude_module: Do not show log messages for these logging
+            modules
+        :param list include_module: Only show log messages for these logging
+            modules
+        :param list include: Only show log messages for these entities
+        :param str level: Log level to show, valid options are 'TRACE',
+            'DEBUG', 'INFO', 'WARNING', 'ERROR,
+        :param int limit: Return this many of the most recent (possibly
+            filtered) lines are shown
+        :param int lines: Yield this many of the most recent lines, and keep
+            yielding
+        :param bool replay: Yield the entire log, and keep yielding
+        :param list exclude: Do not show log messages for these entities
+
+        """
+        pass
+
+    def deploy(
+            self, entity_url, service_name=None, bind=None, budget=None,
+            channel=None, config=None, constraints=None, force=False,
+            num_units=1, plan=None, resource=None, series=None, storage=None,
+            to=None):
         """Deploy a new service or bundle.
 
+        :param str entity_url: Charm or bundle url
+        :param str service_name: Name to give the service
+        :param dict bind: <charm endpoint>:<network space> pairs
+        :param dict budget: <budget name>:<limit> pairs
+        :param str channel: Charm store channel from which to retrieve
+            the charm or bundle, e.g. 'development'
+        :param dict config: Charm configuration dictionary
+        :param constraints: Service constraints
+        :type constraints: :class:`juju.Constraints`
+        :param bool force: Allow charm to be deployed to a machine running
+            an unsupported series
+        :param int num_units: Number of units to deploy
+        :param str plan: Plan under which to deploy charm
+        :param dict resource: <resource name>:<file path> pairs
+        :param str series: Series on which to deploy
+        :param dict storage: Storage constraints TODO how do these look?
+        :param str to: Placement directive, e.g.::
+
+            '23' - machine 23
+            'lxc:7' - new lxc container on machine 7
+            '24/lxc/3' - lxc container 3 or machine 24
+
+            If None, a new machine is provisioned.
+
         """
         pass
 
@@ -86,15 +305,31 @@ class Model(object):
         """
         pass
 
-    def get_backup(self):
+    def get_backup(self, archive_id):
         """Download a backup archive file.
 
+        :param str archive_id: The id of the archive to download
+        :return str: Path to the archive file
+
         """
         pass
 
-    def enable_ha(self):
+    def enable_ha(
+            self, num_controllers=0, constraints=None, series=None, to=None):
         """Ensure sufficient controllers exist to provide redundancy.
 
+        :param int num_controllers: Number of controllers to make available
+        :param constraints: Constraints to apply to the controller machines
+        :type constraints: :class:`juju.Constraints`
+        :param str series: Series of the controller machines
+        :param list to: Placement directives for controller machines, e.g.::
+
+            '23' - machine 23
+            'lxc:7' - new lxc container on machine 7
+            '24/lxc/3' - lxc container 3 or machine 24
+
+            If None, a new machine is provisioned.
+
         """
         pass
 
@@ -110,28 +345,30 @@ class Model(object):
         """
         pass
 
-    def grant(self):
+    def grant(self, username, acl='read'):
         """Grant a user access to this model.
 
+        :param str username: Username
+        :param str acl: Access control ('read' or 'write')
+
         """
         pass
 
-    def import_ssh_key(self):
+    def import_ssh_key(self, identity):
         """Add a public SSH key from a trusted indentity source to this model.
 
-        """
-        pass
-    import_ssh_keys = import_ssh_key
-
-    def get_machine(self, machine_id):
-        """Get a machine by id.
+        :param str identity: User identity in the form <lp|gh>:<username>
 
         """
         pass
+    import_ssh_keys = import_ssh_key
 
-    def get_machines(self):
+    def get_machines(self, machine, utc=False):
         """Return list of machines in this model.
 
+        :param str machine: Machine id, e.g. '0'
+        :param bool utc: Display time as UTC in RFC3339 format
+
         """
         pass
 
@@ -154,21 +391,30 @@ class Model(object):
         pass
     get_ssh_keys = get_ssh_key
 
-    def get_storage(self):
+    def get_storage(self, filesystem=False, volume=False):
         """Return details of storage instances.
 
+        :param bool filesystem: Include filesystem storage
+        :param bool volume: Include volume storage
+
         """
         pass
 
-    def get_storage_pools(self):
+    def get_storage_pools(self, names=None, providers=None):
         """Return list of storage pools.
 
+        :param list names: Only include pools with these names
+        :param list providers: Only include pools for these providers
+
         """
         pass
 
-    def get_subnets(self):
+    def get_subnets(self, space=None, zone=None):
         """Return list of known subnets.
 
+        :param str space: Only include subnets in this space
+        :param str zone: Only include subnets in this zone
+
         """
         pass
 
@@ -178,41 +424,54 @@ class Model(object):
         """
         pass
 
-    def remove_backup(self):
+    def remove_backup(self, backup_id):
         """Delete a backup.
 
+        :param str backup_id: The id of the backup to remove
+
         """
         pass
 
-    def remove_cached_images(self):
+    def remove_cached_images(self, arch=None, kind=None, series=None):
         """Remove cached OS images.
 
+        :param str arch: Architecture of the images to remove
+        :param str kind: Image kind to remove, e.g. 'lxd'
+        :param str series: Image series to remove, e.g. 'xenial'
+
         """
         pass
 
-    def remove_machine(self):
+    def remove_machine(self, *machine_ids):
         """Remove a machine from this model.
 
+        :param str \*machine_ids: Ids of the machines to remove
+
         """
         pass
     remove_machines = remove_machine
 
-    def remove_ssh_key(self):
+    def remove_ssh_key(self, *keys):
         """Remove a public SSH key(s) from this model.
 
-        """
-        pass
-    remove_ssh_keys = remove_ssh_key
-
-    def resolved(self):
-        """Mark unit errors resolved.
+        :param str \*keys: Keys to remove
 
         """
         pass
+    remove_ssh_keys = remove_ssh_key
 
-    def restore_backup(self):
+    def restore_backup(
+            self, bootstrap=False, constraints=None, archive=None,
+            backup_id=None, upload_tools=False):
         """Restore a backup archive to a new controller.
 
+        :param bool bootstrap: Bootstrap a new state machine
+        :param constraints: Model constraints
+        :type constraints: :class:`juju.Constraints`
+        :param str archive: Path to backup archive to restore
+        :param str backup_id: Id of backup to restore
+        :param bool upload_tools: Upload tools if bootstrapping a new machine
+
         """
         pass
 
@@ -222,70 +481,107 @@ class Model(object):
         """
         pass
 
-    def revoke(self):
+    def revoke(self, username, acl='read'):
         """Revoke a user's access to this model.
 
+        :param str username: Username to revoke
+        :param str acl: Access control ('read' or 'write')
+
         """
         pass
 
-    def run(self):
+    def run(self, command, timeout=None):
         """Run command on all machines in this model.
 
+        :param str command: The command to run
+        :param int timeout: Time to wait before command is considered failed
+
         """
         pass
 
-    def set_config(self):
+    def set_config(self, **config):
         """Set configuration keys on this model.
 
+        :param \*\*config: Config key/values
+
         """
         pass
 
-    def set_constraints(self):
+    def set_constraints(self, constraints):
         """Set machine constraints on this model.
 
+        :param :class:`juju.Constraints` constraints: Machine constraints
+
         """
         pass
 
-    def get_action_output(self, action_uuid):
+    def get_action_output(self, action_uuid, wait=-1):
         """Get the results of an action by ID.
 
+        :param str action_uuid: Id of the action
+        :param int wait: Time in seconds to wait for action to complete
+
         """
         pass
 
-    def get_action_status(self, uuid_or_prefix):
-        """Get the status of all actions, filtered by ID or prefix.
+    def get_action_status(self, uuid_or_prefix=None, name=None):
+        """Get the status of all actions, filtered by ID, ID prefix, or action name.
+
+        :param str uuid_or_prefix: Filter by action uuid or prefix
+        :param str name: Filter by action name
 
         """
         pass
 
     def get_budget(self, budget_name):
-        """Get budget by name.
+        """Get budget usage info.
+
+        :param str budget_name: Name of budget
 
         """
         pass
 
-    def get_status(self):
+    def get_status(self, filter_=None, utc=False):
         """Return the status of the model.
 
+        :param str filter_: Service or unit name or wildcard ('*')
+        :param bool utc: Display time as UTC in RFC3339 format
+
         """
         pass
     status = get_status
 
-    def sync_tools(self):
+    def sync_tools(
+            self, all_=False, destination=None, dry_run=False, public=False,
+            source=None, stream=None, version=None):
         """Copy Juju tools into this model.
 
+        :param bool all_: Copy all versions, not just the latest
+        :param str destination: Path to local destination directory
+        :param bool dry_run: Don't do the actual copy
+        :param bool public: Tools are for a public cloud, so generate mirrors
+            information
+        :param str source: Path to local source directory
+        :param str stream: Simplestreams stream for which to sync metadata
+        :param str version: Copy a specific major.minor version
+
         """
         pass
 
-    def unblock(self, operation):
+    def unblock(self, *commands):
         """Unblock an operation that would alter this model.
 
+        :param str \*commands: The commands to unblock. Valid values are
+            'all-changes', 'destroy-model', 'remove-object'
+
         """
         pass
 
-    def unset_config(self):
+    def unset_config(self, *keys):
         """Unset configuration on this model.
 
+        :param str \*keys: The keys to unset
+
         """
         pass
 
@@ -295,8 +591,24 @@ class Model(object):
         """
         pass
 
-    def upload_backup(self):
+    def upgrade_juju(
+            self, dry_run=False, reset_previous_upgrade=False,
+            upload_tools=False, version=None):
+        """Upgrade Juju on all machines in a model.
+
+        :param bool dry_run: Don't do the actual upgrade
+        :param bool reset_previous_upgrade: Clear the previous (incomplete)
+            upgrade status
+        :param bool upload_tools: Upload local version of tools
+        :param str version: Upgrade to a specific version
+
+        """
+        pass
+
+    def upload_backup(self, archive_path):
         """Store a backup archive remotely in Juju.
 
+        :param str archive_path: Path to local archive
+
         """
         pass