[Kimchi-devel] [PATCH V3 4/6] VM supports interfaces: update controller
Aline Manera
alinefm at linux.vnet.ibm.com
Fri Jan 24 02:47:17 UTC 2014
Reviewed-by: Aline Manera <alinefm at linux.vnet.ibm.com>
On 01/24/2014 12:03 AM, shaohef at linux.vnet.ibm.com wrote:
> From: ShaoHe Feng <shaohef at linux.vnet.ibm.com>
>
> add VmIfaces collection and VmIface resource
>
> Update VM resource.
>
> Signed-off-by: ShaoHe Feng <shaohef at linux.vnet.ibm.com>
> ---
> src/kimchi/control/vm/ifaces.py | 48 +++++++++++++++++++++++++++++++++++++++++
> src/kimchi/control/vms.py | 3 +++
> 2 files changed, 51 insertions(+)
> create mode 100644 src/kimchi/control/vm/ifaces.py
>
> diff --git a/src/kimchi/control/vm/ifaces.py b/src/kimchi/control/vm/ifaces.py
> new file mode 100644
> index 0000000..263b664
> --- /dev/null
> +++ b/src/kimchi/control/vm/ifaces.py
> @@ -0,0 +1,48 @@
> +#
> +# Project Kimchi
> +#
> +# Copyright IBM, Corp. 2013
> +#
> +# Authors:
> +# ShaoHe Feng <shaohef at linux.vnet.ibm.com>
> +#
> +# This library is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU Lesser General Public
> +# License as published by the Free Software Foundation; either
> +# version 2.1 of the License, or (at your option) any later version.
> +#
> +# This library is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
> +# Lesser General Public License for more details.
> +#
> +# You should have received a copy of the GNU Lesser General Public
> +# License along with this library; if not, write to the Free Software
> +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> +
> +from kimchi.control.base import Collection, Resource
> +from kimchi.control.utils import UrlSubNode
> +
> +
> + at UrlSubNode("ifaces")
> +class VMIfaces(Collection):
> + def __init__(self, model, vm):
> + super(VMIfaces, self).__init__(model)
> + self.resource = VMIface
> + self.vm = vm
> + self.resource_args = [self.vm, ]
> + self.model_args = [self.vm, ]
> +
> +
> +class VMIface(Resource):
> + def __init__(self, model, vm, ident):
> + super(VMIface, self).__init__(model, ident)
> + self.vm = vm
> + self.ident = ident
> + self.info = {}
> + self.model_args = [self.vm, self.ident]
> + self.uri_fmt = '/vms/%s/iface/%s'
> +
> + @property
> + def data(self):
> + return self.info
> diff --git a/src/kimchi/control/vms.py b/src/kimchi/control/vms.py
> index a7a0b3b..06c7be3 100644
> --- a/src/kimchi/control/vms.py
> +++ b/src/kimchi/control/vms.py
> @@ -24,6 +24,7 @@
>
> from kimchi.control.base import Collection, Resource
> from kimchi.control.utils import internal_redirect, UrlSubNode
> +from kimchi.control.vm import sub_nodes
>
>
> @UrlSubNode("vms", True)
> @@ -39,6 +40,8 @@ class VM(Resource):
> self.update_params = ["name"]
> self.screenshot = VMScreenShot(model, ident)
> self.uri_fmt = '/vms/%s'
> + for ident, node in sub_nodes.items():
> + setattr(self, ident, node(model, self.ident.decode("utf-8")))
> self.start = self.generate_action_handler('start')
> self.stop = self.generate_action_handler('stop')
> self.connect = self.generate_action_handler('connect')
More information about the Kimchi-devel
mailing list