VirtualBox

Changeset 57883 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Sep 24, 2015 3:13:29 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102850
Message:

FE/Qt: Main.cpp cleanup/rework bit-by-bit (step 11): Move UI stuff to VBoxGlobal; recreate Selector UI on VBoxSVC crashes.

Location:
trunk/src/VBox/Frontends/VirtualBox/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.cpp

    r57844 r57883  
    232232VBoxGlobal::VBoxGlobal()
    233233    : mValid (false)
     234    , m_fWrappersValid(false)
    234235    , m_fVBoxSVCAvailable(true)
    235236    , m_fSeparateProcess(false)
     
    40224023    m_host = virtualBox().GetHost();
    40234024    m_strHomeFolder = virtualBox().GetHomeFolder();
     4025    /* Mark wrappers valid: */
     4026    m_fWrappersValid = true;
    40244027
    40254028    /* Watch for the VBoxSVC availability changes: */
     
    43794382    UIUpdateManager::schedule();
    43804383#endif /* VBOX_GUI_WITH_NETWORK_MANAGER */
     4384
     4385#ifdef RT_OS_LINUX
     4386    /* Make sure no wrong USB mounted: */
     4387    checkForWrongUSBMounted();
     4388#endif /* RT_OS_LINUX */
    43814389}
    43824390
     
    44674475    /* Cache the new VBoxSVC availability value: */
    44684476    m_fVBoxSVCAvailable = fAvailable;
     4477
     4478    /* If VBoxSVC is not available: */
     4479    if (!m_fVBoxSVCAvailable)
     4480    {
     4481        /* Mark wrappers invalid: */
     4482        m_fWrappersValid = false;
     4483        /* Re-fetch corresponding CVirtualBox to restart VBoxSVC: */
     4484        // CVirtualBox is still NULL in current Main implementation,
     4485        // and this call do not restart anything, so we are waiting
     4486        // for subsequent event about VBoxSVC is available again.
     4487        m_vbox = virtualBoxClient().GetVirtualBox();
     4488    }
     4489    /* If VBoxSVC is available: */
     4490    else
     4491    {
     4492        if (!m_fWrappersValid)
     4493        {
     4494            /* Re-fetch corresponding objects/values: */
     4495            m_vbox = virtualBoxClient().GetVirtualBox();
     4496            m_host = virtualBox().GetHost();
     4497            m_strHomeFolder = virtualBox().GetHomeFolder();
     4498            /* Mark wrappers valid: */
     4499            m_fWrappersValid = true;
     4500
     4501            /* If that is Selector UI: */
     4502            if (!isVMConsoleProcess())
     4503            {
     4504                /* Recreate/show selector-window: */
     4505                UISelectorWindow::destroy();
     4506                UISelectorWindow::create();
     4507            }
     4508        }
     4509    }
    44694510
    44704511    /* Notify listeners about the VBoxSVC availability change: */
     
    45854626#endif /* VBOX_WITH_DEBUGGER_GUI */
    45864627
    4587 /** @fn vboxGlobal
    4588  *
    4589  *  Shortcut to the static VBoxGlobal::instance() method, for convenience.
    4590  */
     4628bool VBoxGlobal::showUI()
     4629{
     4630    /* Load application settings: */
     4631    VBoxGlobalSettings appSettings = settings();
     4632
     4633    /* Show Selector UI: */
     4634    if (!isVMConsoleProcess())
     4635    {
     4636        /* Make sure Selector UI is permitted: */
     4637        if (appSettings.isFeatureActive("noSelector"))
     4638        {
     4639            msgCenter().cannotStartSelector();
     4640            return false;
     4641        }
     4642
     4643#ifdef VBOX_BLEEDING_EDGE
     4644        /* Show EXPERIMENTAL BUILD warning: */
     4645        msgCenter().showExperimentalBuildWarning();
     4646#else /* !VBOX_BLEEDING_EDGE */
     4647# ifndef DEBUG
     4648        /* Show BETA warning if necessary: */
     4649        const QString vboxVersion(vboxGlobal().virtualBox().GetVersion());
     4650        if (   vboxVersion.contains("BETA")
     4651            && gEDataManager->preventBetaBuildWarningForVersion() != vboxVersion)
     4652            msgCenter().showBetaBuildWarning();
     4653# endif /* !DEBUG */
     4654#endif /* !VBOX_BLEEDING_EDGE */
     4655
     4656        /* Create/show selector-window: */
     4657        UISelectorWindow::create();
     4658    }
     4659    /* Show Runtime UI: */
     4660    else
     4661    {
     4662        /* Make sure machine is started: */
     4663        if (!UIMachine::startMachine(vboxGlobal().managedVMUuid()))
     4664            return false;
     4665    }
     4666
     4667    /* True by default: */
     4668    return true;
     4669}
    45914670
    45924671bool VBoxGlobal::switchToMachine(CMachine &machine)
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/VBoxGlobal.h

    r57844 r57883  
    191191    bool processArgs();
    192192
     193    /** Shows UI. */
     194    bool showUI();
     195
    193196    bool switchToMachine(CMachine &machine);
    194197
     
    529532    QString m_strHomeFolder;
    530533
    531     /** Holds the VBoxSVC availability value. */
     534    /** Holds whether acquired COM wrappers are currently valid. */
     535    bool m_fWrappersValid;
     536    /** Holds whether VBoxSVC is currently available. */
    532537    bool m_fVBoxSVCAvailable;
    533538
  • trunk/src/VBox/Frontends/VirtualBox/src/main.cpp

    r57844 r57883  
    2121
    2222/* Qt includes: */
    23 # include <QLocale>
    2423# include <QMessageBox>
    25 # include <QTranslator>
    2624
    2725/* GUI includes: */
    28 # include "VBoxUtils.h"
    2926# include "VBoxGlobal.h"
    3027# include "UIMachine.h"
    31 # include "UIMessageCenter.h"
    3228# include "UISelectorWindow.h"
    33 # include "UIExtraDataManager.h"
    3429# include "UIModalWindowManager.h"
     30# ifdef VBOX_WITH_HARDENING
     31#  include "QIMessageBox.h"
     32# endif /* VBOX_WITH_HARDENING */
    3533# ifdef Q_WS_MAC
     34#  include "VBoxUtils.h"
    3635#  include "UICocoaApplication.h"
    3736# endif /* Q_WS_MAC */
    3837
    3938/* Other VBox includes: */
    40 # include <iprt/asm.h>
    4139# include <iprt/buildconfig.h>
    42 # include <iprt/initterm.h>
    43 # include <iprt/process.h>
    4440# include <iprt/stream.h>
    45 # include <iprt/system.h>
    4641# include <VBox/version.h>
     42# ifdef VBOX_WITH_HARDENING
     43#  include <VBox/sup.h>
     44# else /* !VBOX_WITH_HARDENING */
     45#  include <iprt/initterm.h>
     46#  ifdef Q_WS_MAC
     47#   include <iprt/asm.h>
     48#  endif /* Q_WS_MAC */
     49# endif /* !VBOX_WITH_HARDENING */
    4750# ifdef Q_WS_X11
    4851#  include <iprt/env.h>
    4952# endif /* Q_WS_X11 */
     53
     54#endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
     55
     56/* Qt includes: */
     57#ifdef Q_WS_X11
     58# ifdef Q_OS_SOLARIS
     59#  include <QPlastiqueStyle>
     60# endif /* Q_OS_SOLARIS */
     61# ifndef Q_OS_SOLARIS
     62#  include <QFontDatabase>
     63# endif /* !Q_OS_SOLARIS */
     64#endif /* Q_WS_X11 */
     65
     66/* Other VBox includes: */
    5067#ifdef VBOX_WITH_HARDENING
    51 # include <VBox/sup.h>
    52 #endif /* VBOX_WITH_HARDENING */
    53 
    54 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */
    55 
    56 /* Qt includes: */
    57 #include <QCleanlooksStyle>
    58 #include <QPlastiqueStyle>
    59 #ifdef Q_WS_X11
    60 # include <QFontDatabase>
    61 #endif /* Q_WS_X11 */
    62 
    63 /* Other VBox includes: */
    64 #include <iprt/ctype.h>
    65 #include <VBox/err.h>
     68# include <iprt/ctype.h>
     69#else /* !VBOX_WITH_HARDENING */
     70# include <VBox/err.h>
     71#endif /* !VBOX_WITH_HARDENING */
    6672
    6773/* Other includes: */
    68 #include <cstdio>
    6974#ifdef Q_WS_MAC
    7075# include <dlfcn.h>
     
    321326extern "C" DECLEXPORT(int) TrustedMain(int argc, char **argv, char ** /*envp*/)
    322327{
     328    /* Failed result initially: */
     329    int iResultCode = 1;
     330
    323331    /* Start logging: */
    324332    LogFlowFuncEnter();
    325 
    326     /* Failed result initially: */
    327     int iResultCode = 1;
    328333
    329334    /* Simulate try-catch block: */
     
    466471                break;
    467472
    468             /* Exit if VBoxGlobal was able to pre-process arguments: */
     473            /* Exit if VBoxGlobal pre-processed arguments: */
    469474            if (vboxGlobal().processArgs())
    470475                break;
    471476
    472 #ifdef RT_OS_LINUX
    473             /* Make sure no wrong USB mounted: */
    474             VBoxGlobal::checkForWrongUSBMounted();
    475 #endif /* RT_OS_LINUX */
    476 
    477             /* Load application settings: */
    478             VBoxGlobalSettings settings = vboxGlobal().settings();
    479 
    480             /* VM console process: */
    481             if (vboxGlobal().isVMConsoleProcess())
    482             {
    483                 /* Make sure VM is started: */
    484                 if (!UIMachine::startMachine(vboxGlobal().managedVMUuid()))
    485                     break;
    486 
    487                 /* Start application: */
    488                 iResultCode = a.exec();
    489             }
    490             /* VM selector process: */
    491             else
    492             {
    493                 /* Make sure VM selector is permitted: */
    494                 if (settings.isFeatureActive("noSelector"))
    495                 {
    496                     msgCenter().cannotStartSelector();
    497                     break;
    498                 }
    499 
    500 #ifdef VBOX_BLEEDING_EDGE
    501                 msgCenter().showExperimentalBuildWarning();
    502 #else /* VBOX_BLEEDING_EDGE */
    503 # ifndef DEBUG
    504                 /* Check for BETA version: */
    505                 const QString vboxVersion(vboxGlobal().virtualBox().GetVersion());
    506                 if (   vboxVersion.contains("BETA")
    507                     && gEDataManager->preventBetaBuildWarningForVersion() != vboxVersion)
    508                     msgCenter().showBetaBuildWarning();
    509 # endif /* !DEBUG */
    510 #endif /* !VBOX_BLEEDING_EDGE*/
    511 
    512                 /* Create/show selector window: */
    513                 UISelectorWindow::create();
    514 
    515                 /* Start application: */
    516                 iResultCode = a.exec();
    517             }
     477            /* Exit if VBoxGlobal is unable to show UI: */
     478            if (!vboxGlobal().showUI())
     479                break;
     480
     481            /* Start application: */
     482            iResultCode = a.exec();
    518483        }
    519484        while (0);
Note: See TracChangeset for help on using the changeset viewer.

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