summaryrefslogtreecommitdiff
path: root/nova/virt/__init__.py
diff options
context:
space:
mode:
authorEwan Mellor <ewan.mellor@citrix.com>2010-07-18 18:15:12 +0100
committerEwan Mellor <ewan.mellor@citrix.com>2010-07-18 18:15:12 +0100
commitf39d6549d4e57941b14f328fa5a52a3a5f925d42 (patch)
tree24da962064d7741da065842f2032577aa0268ac5 /nova/virt/__init__.py
parentd5309eff30b1a826f075b28935de2a4b89eede6e (diff)
downloadnova-f39d6549d4e57941b14f328fa5a52a3a5f925d42.tar.gz
In preparation for XenAPI support, refactor the interface between
nova.compute and the hypervisor (i.e. libvirt). compute.node is no longer coupled tightly with libvirt. Instead, hypervisor connections are handled through a simple abstract interface. This has the additional advantage that there is no need to riddle the code with FLAGS.fake_libvirt checks, as we now have an interface behind which we can mock. The libvirt-specific code, and the fakevirt code used for unit tests, have moved into nova.virt. The fake_libvirt flag has been replaced with a connection_type flag, that will allow us to specify different connection types. The disk image handling (S3 or local disk image fetch) has moved into nova.virt.images, where it will be easier to share between connection types. The power_state values (Instance.RUNNING etc) and the INSTANCE_TYPES dictionary have moved into their own files (nova.compute.instance_types and nova.compute.power_state) so that we can share them without mutual dependencies between nova.compute.node and nova.virt.libvirt_conn.
Diffstat (limited to 'nova/virt/__init__.py')
-rw-r--r--nova/virt/__init__.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/nova/virt/__init__.py b/nova/virt/__init__.py
new file mode 100644
index 0000000000..3d598c463c
--- /dev/null
+++ b/nova/virt/__init__.py
@@ -0,0 +1,15 @@
+# vim: tabstop=4 shiftwidth=4 softtabstop=4
+
+# Copyright (c) 2010 Citrix Systems, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.