VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testdriver/vboxcon.py@ 57984

Last change on this file since 57984 was 56295, checked in by vboxsync, 9 years ago

ValidationKit: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: vboxcon.py 56295 2015-06-09 14:29:55Z vboxsync $
3
4"""
5VirtualBox Constants.
6
7See VBoxConstantWrappingHack for details.
8"""
9
10__copyright__ = \
11"""
12Copyright (C) 2010-2015 Oracle Corporation
13
14This file is part of VirtualBox Open Source Edition (OSE), as
15available from http://www.virtualbox.org. This file is free software;
16you can redistribute it and/or modify it under the terms of the GNU
17General Public License (GPL) as published by the Free Software
18Foundation, in version 2 as it comes in the "COPYING" file of the
19VirtualBox OSE distribution. VirtualBox OSE is distributed in the
20hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
21
22The contents of this file may alternatively be used under the terms
23of the Common Development and Distribution License Version 1.0
24(CDDL) only, as it comes in the "COPYING.CDDL" file of the
25VirtualBox OSE distribution, in which case the provisions of the
26CDDL are applicable instead of those of the GPL.
27
28You may elect to license modified versions of this file under the
29terms and conditions of either the GPL or the CDDL or both.
30"""
31__version__ = "$Revision: 56295 $"
32
33
34# Standard Python imports.
35import sys
36
37
38class 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
80goHackModuleClass = VBoxConstantWrappingHack(sys.modules[__name__]); # pylint: disable=C0103
81sys.modules[__name__] = goHackModuleClass;
82
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette