1 | #!/usr/bin/env python
|
---|
2 | # -*- coding: utf-8 -*-
|
---|
3 | # $Id: index.py 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
4 |
|
---|
5 | """
|
---|
6 | CGI - Web UI - Main (index) page.
|
---|
7 | """
|
---|
8 |
|
---|
9 | __copyright__ = \
|
---|
10 | """
|
---|
11 | Copyright (C) 2012-2023 Oracle and/or its affiliates.
|
---|
12 |
|
---|
13 | This file is part of VirtualBox base platform packages, as
|
---|
14 | available from https://www.virtualbox.org.
|
---|
15 |
|
---|
16 | This program is free software; you can redistribute it and/or
|
---|
17 | modify it under the terms of the GNU General Public License
|
---|
18 | as published by the Free Software Foundation, in version 3 of the
|
---|
19 | License.
|
---|
20 |
|
---|
21 | This program is distributed in the hope that it will be useful, but
|
---|
22 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
23 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
24 | General Public License for more details.
|
---|
25 |
|
---|
26 | You should have received a copy of the GNU General Public License
|
---|
27 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
28 |
|
---|
29 | The contents of this file may alternatively be used under the terms
|
---|
30 | of the Common Development and Distribution License Version 1.0
|
---|
31 | (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
32 | in the VirtualBox distribution, in which case the provisions of the
|
---|
33 | CDDL are applicable instead of those of the GPL.
|
---|
34 |
|
---|
35 | You may elect to license modified versions of this file under the
|
---|
36 | terms and conditions of either the GPL or the CDDL or both.
|
---|
37 |
|
---|
38 | SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
39 | """
|
---|
40 | __version__ = "$Revision: 98103 $"
|
---|
41 |
|
---|
42 |
|
---|
43 | # Standard python imports.
|
---|
44 | import os
|
---|
45 | import sys
|
---|
46 |
|
---|
47 | # Only the main script needs to modify the path.
|
---|
48 | g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))));
|
---|
49 | sys.path.append(g_ksValidationKitDir);
|
---|
50 |
|
---|
51 | # Validation Kit imports.
|
---|
52 | from testmanager import config;
|
---|
53 | from testmanager.core.webservergluecgi import WebServerGlueCgi;
|
---|
54 | from testmanager.webui.wuimain import WuiMain;
|
---|
55 |
|
---|
56 |
|
---|
57 | def main():
|
---|
58 | """
|
---|
59 | Main function a la C/C++. Returns exit code.
|
---|
60 | """
|
---|
61 |
|
---|
62 | oSrvGlue = WebServerGlueCgi(g_ksValidationKitDir, fHtmlOutput = False);
|
---|
63 | try:
|
---|
64 | oWui = WuiMain(oSrvGlue);
|
---|
65 | oWui.dispatchRequest();
|
---|
66 | oSrvGlue.flush();
|
---|
67 | except Exception as oXcpt:
|
---|
68 | return oSrvGlue.errorPage('Internal error: %s' % (str(oXcpt),), sys.exc_info());
|
---|
69 |
|
---|
70 | return 0;
|
---|
71 |
|
---|
72 | if __name__ == '__main__':
|
---|
73 | if config.g_kfProfileIndex:
|
---|
74 | from testmanager.debug import cgiprofiling;
|
---|
75 | sys.exit(cgiprofiling.profileIt(main));
|
---|
76 | else:
|
---|
77 | sys.exit(main());
|
---|
78 |
|
---|