1 | # -*- coding: utf-8 -*-
|
---|
2 | # $Id: vboxcon.py 52776 2014-09-17 14:51:43Z vboxsync $
|
---|
3 |
|
---|
4 | """
|
---|
5 | VirtualBox Constants.
|
---|
6 |
|
---|
7 | See VBoxConstantWrappingHack for details.
|
---|
8 | """
|
---|
9 |
|
---|
10 | __copyright__ = \
|
---|
11 | """
|
---|
12 | Copyright (C) 2010-2014 Oracle Corporation
|
---|
13 |
|
---|
14 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
15 | available from http://www.virtualbox.org. This file is free software;
|
---|
16 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
17 | General Public License (GPL) as published by the Free Software
|
---|
18 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
19 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
20 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
21 |
|
---|
22 | The contents of this file may alternatively be used under the terms
|
---|
23 | of the Common Development and Distribution License Version 1.0
|
---|
24 | (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
25 | VirtualBox OSE distribution, in which case the provisions of the
|
---|
26 | CDDL are applicable instead of those of the GPL.
|
---|
27 |
|
---|
28 | You may elect to license modified versions of this file under the
|
---|
29 | terms and conditions of either the GPL or the CDDL or both.
|
---|
30 | """
|
---|
31 | __version__ = "$Revision: 52776 $"
|
---|
32 |
|
---|
33 |
|
---|
34 | # Standard Python imports.
|
---|
35 | import sys
|
---|
36 |
|
---|
37 |
|
---|
38 | class VBoxConstantWrappingHack(object): # pylint: disable=R0903
|
---|
39 | """
|
---|
40 | This is a hack to avoid the self.oVBoxMgr.constants.MachineState_Running
|
---|
41 | uglyness that forces one into the rigth margin... Anyone using this module
|
---|
42 | can get to the constants easily by:
|
---|
43 |
|
---|
44 | import testdriver.vbox as vbox
|
---|
45 | if self.o.machine.state == vbox.MachineState_Running:
|
---|
46 | do stuff;
|
---|
47 |
|
---|
48 | For our own convenience we have a global variable 'vbox' that refers to the
|
---|
49 | instance of this class so we can do the same thing from within the module
|
---|
50 | as well (if we didn't we'd have to do testdriver.vbox.MachineState_Running).
|
---|
51 | """
|
---|
52 | def __init__(self, oWrapped):
|
---|
53 | self.oWrapped = oWrapped;
|
---|
54 | self.oVBoxMgr = None;
|
---|
55 | self.fpApiVer = 99.0;
|
---|
56 |
|
---|
57 | def __getattr__(self, sName):
|
---|
58 | # Our self.
|
---|
59 | try:
|
---|
60 | return getattr(self.oWrapped, sName)
|
---|
61 | except AttributeError:
|
---|
62 | # The VBox constants.
|
---|
63 | if self.oVBoxMgr is None:
|
---|
64 | raise;
|
---|
65 | try:
|
---|
66 | return getattr(self.oVBoxMgr.constants, sName);
|
---|
67 | except AttributeError:
|
---|
68 | # Do some compatability mappings to keep it working with
|
---|
69 | # older versions.
|
---|
70 | if self.fpApiVer < 3.3:
|
---|
71 | if sName == 'SessionState_Locked':
|
---|
72 | return getattr(self.oVBoxMgr.constants, 'SessionState_Open');
|
---|
73 | if sName == 'SessionState_Unlocked':
|
---|
74 | return getattr(self.oVBoxMgr.constants, 'SessionState_Closed');
|
---|
75 | if sName == 'SessionState_Unlocking':
|
---|
76 | return getattr(self.oVBoxMgr.constants, 'SessionState_Closing');
|
---|
77 | raise;
|
---|
78 |
|
---|
79 |
|
---|
80 | goHackModuleClass = VBoxConstantWrappingHack(sys.modules[__name__]); # pylint: disable=C0103
|
---|
81 | sys.modules[__name__] = goHackModuleClass;
|
---|
82 |
|
---|