VirtualBox

Changeset 24301 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 3, 2009 10:07:55 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
54298
Message:

Main,Frontends: Added two new running states: Teleporting and LiveSnapshotting. Also added TeleportingPausedVM. Renamed TeleportingFrom to TeleportingIn.

Location:
trunk/src/VBox
Files:
21 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp

    r24136 r24301  
    403403    {
    404404        case MachineState_PoweredOff:
    405             if (details == VMINFO_MACHINEREADABLE)
    406                 pszState = "poweroff";
    407             else
    408                 pszState = "powered off";
     405            pszState = details == VMINFO_MACHINEREADABLE ? "poweroff"            : "powered off";
    409406            break;
    410407        case MachineState_Saved:
     
    414411            pszState = "aborted";
    415412            break;
     413        case MachineState_Teleported:
     414            pszState = "teleported";
     415            break;
    416416        case MachineState_Running:
    417417            pszState = "running";
     
    419419        case MachineState_Paused:
    420420            pszState = "paused";
     421            break;
     422        case MachineState_Stuck:
     423            pszState = details == VMINFO_MACHINEREADABLE ? "gurumeditation"      : "guru meditation";
     424            break;
     425        case MachineState_LiveSnapshotting:
     426            pszState = details == VMINFO_MACHINEREADABLE ? "livesnapshotting"    : "live snapshotting";
     427            break;
     428        case MachineState_Teleporting:
     429            pszState = "teleporting";
    421430            break;
    422431        case MachineState_Starting:
     
    432441            pszState = "restoring";
    433442            break;
    434         case MachineState_TeleportingFrom:
    435             if (details == VMINFO_MACHINEREADABLE)
    436                 pszState = "teleportingfrom";
    437             else
    438                 pszState = "teleporting from";
     443        case MachineState_TeleportingPausedVM:
     444            pszState = details == VMINFO_MACHINEREADABLE ? "teleportingpausedvm" : "teleporting paused vm";
     445            break;
     446        case MachineState_TeleportingIn:
     447            pszState = details == VMINFO_MACHINEREADABLE ? "teleportingin"       : "teleporting (incoming)";
     448            break;
     449        case MachineState_RestoringSnapshot:
     450            pszState = details == VMINFO_MACHINEREADABLE ? "restoringsnapshot"   : "restoring snapshot";
     451        case MachineState_DeletingSnapshot:
     452            pszState = details == VMINFO_MACHINEREADABLE ? "deletingsnapshot"    : "deleting snapshot";
     453        case MachineState_SettingUp:
     454            pszState = details == VMINFO_MACHINEREADABLE ? "settingup"           : "setting up";
    439455            break;
    440456        default:
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp

    r24258 r24301  
    230230                            {
    231231                                case MachineState_Running:
     232                                case MachineState_Teleporting:
     233                                case MachineState_LiveSnapshotting:
    232234                                case MachineState_Paused:
     235                                case MachineState_TeleportingPausedVM:
    233236                                    rc = showVMInfo(a->virtualBox,
    234237                                                    machines[i],
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r23998 r24301  
    463463
    464464        if (     machineState == MachineState_Aborted
     465            ||   machineState == MachineState_Teleported
    465466            ||  (machineState == MachineState_Saved      && !m_fIgnorePowerOffEvents)
    466             ||  (machineState == MachineState_PoweredOff && !m_fIgnorePowerOffEvents))
     467            ||  (machineState == MachineState_PoweredOff && !m_fIgnorePowerOffEvents)
     468           )
    467469        {
    468470            /*
     
    472474            event.user.type = SDL_USER_EVENT_TERMINATE;
    473475            event.user.code = machineState == MachineState_Aborted
    474                                            ? VBOXSDL_TERM_ABEND
    475                                            : VBOXSDL_TERM_NORMAL;
     476                            ? VBOXSDL_TERM_ABEND
     477                            : VBOXSDL_TERM_NORMAL;
    476478        }
    477479        else
     
    605607            case MachineState_PoweredOff:           return "PoweredOff";
    606608            case MachineState_Saved:                return "Saved";
     609            case MachineState_Teleported:           return "Teleported";
    607610            case MachineState_Aborted:              return "Aborted";
    608611            case MachineState_Running:              return "Running";
     612            case MachineState_Teleporting:          return "Teleporting";
     613            case MachineState_LiveSnapshotting:     return "LiveSnapshotting";
    609614            case MachineState_Paused:               return "Paused";
    610615            case MachineState_Stuck:                return "GuruMeditation";
     
    613618            case MachineState_Saving:               return "Saving";
    614619            case MachineState_Restoring:            return "Restoring";
    615             case MachineState_TeleportingFrom:      return "TeleportingFrom";
     620            case MachineState_TeleportingPausedVM:  return "TeleportingPausedVM";
     621            case MachineState_TeleportingIn:        return "TeleportingIn";
    616622            case MachineState_RestoringSnapshot:    return "RestoringSnapshot";
    617623            case MachineState_DeletingSnapshot:     return "DeletingSnapshot";
     
    21432149            &&  (   machineState == MachineState_Starting
    21442150                 || machineState == MachineState_Restoring
    2145                  || machineState == MachineState_TeleportingFrom)
     2151                 || machineState == MachineState_TeleportingIn
     2152                )
    21462153            )
    21472154        {
     
    22392246             && (   machineState == MachineState_Starting
    22402247                 || machineState == MachineState_Restoring
    2241                  || machineState == MachineState_TeleportingFrom)
     2248                 || machineState == MachineState_TeleportingIn
     2249                )
    22422250            );
    22432251
     
    27742782     */
    27752783    if (   gConsole
    2776         && machineState == MachineState_Running)
     2784        && (   machineState == MachineState_Running
     2785            || machineState == MachineState_Teleporting
     2786            || machineState == MachineState_LiveSnapshotting
     2787            /** @todo power off paused VMs too? */
     2788           )
     2789       )
    27772790    {
    27782791        cbConsoleImpl->ignorePowerOffEvents(true);
     
    43384351                                " - Restoring...");
    43394352            }
    4340             else if (machineState == MachineState_TeleportingFrom)
     4353            else if (machineState == MachineState_TeleportingIn)
    43414354            {
    43424355                ULONG cPercentNow;
     
    47704783            MachineState_T machineState;
    47714784            gMachine->COMGETTER(State)(&machineState);
    4772             if (machineState == MachineState_Running)
     4785            bool fPauseIt = machineState == MachineState_Running
     4786                         || machineState == MachineState_Teleporting
     4787                         || machineState == MachineState_LiveSnapshotting;
     4788            if (fPauseIt)
    47734789                gConsole->Pause();
    47744790            SetFullscreen(!gpFramebuffer[0]->getFullscreen());
    4775             if (machineState == MachineState_Running)
     4791            if (fPauseIt)
    47764792                gConsole->Resume();
    47774793
     
    47944810            MachineState_T machineState;
    47954811            gMachine->COMGETTER(State)(&machineState);
    4796             if (machineState == MachineState_Running)
     4812            if (   machineState == MachineState_Running
     4813                || machineState == MachineState_Teleporting
     4814                || machineState == MachineState_LiveSnapshotting
     4815               )
    47974816            {
    47984817                if (gfGrabbed)
  • trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h

    r23223 r24301  
    8888
    8989    bool pause (bool on);
    90     bool isPaused() { return mLastState == KMachineState_Paused; }
     90    bool isPaused()
     91    {
     92        return mLastState == KMachineState_Paused
     93            || mLastState == KMachineState_TeleportingPausedVM;
     94    }
    9195    const QPixmap& pauseShot() const { return mPausedShot; }
    9296
     
    231235    void setPointerShape (MousePointerChangeEvent *me);
    232236
    233     bool isRunning() { return mLastState == KMachineState_Running; }
     237    bool isRunning()
     238    {
     239        return mLastState == KMachineState_Running
     240            || mLastState == KMachineState_Teleporting
     241            || mLastState == KMachineState_LiveSnapshotting;
     242    }
    234243
    235244    static void dimImage (QImage &img);
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp

    r24132 r24301  
    32943294    {
    32953295        case KMachineState_Paused:
     3296        case KMachineState_TeleportingPausedVM: /** @todo Live Migration: Check out this */
    32963297        {
    32973298            if (mode != VBoxDefs::TimerMode && mFrameBuf)
     
    33283329        case KMachineState_Running:
    33293330        {
    3330             if (mLastState == KMachineState_Paused)
     3331            if (   mLastState == KMachineState_Paused
     3332                || mLastState == KMachineState_TeleportingPausedVM
     3333               )
    33313334            {
    33323335                if (mode != VBoxDefs::TimerMode && mFrameBuf)
     
    42274230        (mLastState == KMachineState_Running ||
    42284231         mLastState == KMachineState_Paused ||
     4232         mLastState == KMachineState_Teleporting ||
     4233         mLastState == KMachineState_LiveSnapshotting ||
    42294234         mLastState == KMachineState_Restoring ||
    4230          mLastState == KMachineState_TeleportingFrom ||
     4235         mLastState == KMachineState_TeleportingPausedVM ||
     4236         mLastState == KMachineState_TeleportingIn ||
    42314237         mLastState == KMachineState_Saving))
    42324238        updateDockIcon();
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp

    r24168 r24301  
    12731273    }
    12741274
    1275     if (mMachineState > KMachineState_Paused && mMachineState != KMachineState_Stuck)
    1276     {
    1277         /* The machine is in some temporary state like Saving or Stopping.
    1278          * Ignore the close event. When it is Stopping, it will be soon closed anyway from updateMachineState().
    1279          * In all other cases, an appropriate progress dialog will be shown within a few seconds. */
    1280         aEvent->ignore();
    1281     }
    1282     else if (mMachineState < KMachineState_Running)
    1283     {
    1284         /* The machine has been already powered off or saved or aborted -- close the window immediately. */
    1285         aEvent->accept();
    1286     }
    1287     else
    1288     {
    1289         /* Start with ignore the close event */
    1290         aEvent->ignore();
    1291 
    1292         bool isACPIEnabled = mSession.GetConsole().GetGuestEnteredACPIMode();
    1293 
    1294         bool success = true;
    1295 
    1296         bool wasPaused = mMachineState == KMachineState_Paused || mMachineState == KMachineState_Stuck;
    1297         if (!wasPaused)
    1298         {
    1299             /* Suspend the VM and ignore the close event if failed to do so.
    1300              * pause() will show the error message to the user. */
    1301             success = mConsole->pause (true);
    1302         }
    1303 
    1304         if (success)
    1305         {
    1306             success = false;
    1307 
    1308             CMachine machine = mSession.GetMachine();
    1309             VBoxCloseVMDlg dlg (this);
    1310             QString typeId = machine.GetOSTypeId();
    1311             dlg.pmIcon->setPixmap (vboxGlobal().vmGuestOSTypeIcon (typeId));
    1312 
    1313             /* Make the Discard checkbox invisible if there are no snapshots */
    1314             dlg.mCbDiscardCurState->setVisible (machine.GetSnapshotCount() > 0);
    1315 
    1316             if (mMachineState != KMachineState_Stuck)
     1275    switch (mMachineState)
     1276    {
     1277        case KMachineState_PoweredOff:
     1278        case KMachineState_Saved:
     1279        case KMachineState_Teleported:
     1280        case KMachineState_Aborted:
     1281            /* The machine has been already powered off or saved or aborted -- close the window immediately. */
     1282            aEvent->accept();
     1283            break;
     1284
     1285        default:
     1286            /* The machine is in some temporary state like Saving or Stopping.
     1287             * Ignore the close event. When it is Stopping, it will be soon closed anyway from updateMachineState().
     1288             * In all other cases, an appropriate progress dialog will be shown within a few seconds. */
     1289            aEvent->ignore();
     1290            break;
     1291
     1292        case KMachineState_Teleporting:      /** @todo Live Migration: Test closing a VM that's being teleported or snapshotted. */
     1293        case KMachineState_LiveSnapshotting:
     1294        case KMachineState_Running:
     1295        case KMachineState_Paused:
     1296        case KMachineState_TeleportingPausedVM: /** @todo Live Migration: Check out this. */
     1297        case KMachineState_Stuck:
     1298            /* Start with ignoring the close event */
     1299            aEvent->ignore();
     1300
     1301            bool isACPIEnabled = mSession.GetConsole().GetGuestEnteredACPIMode();
     1302
     1303            bool success = true;
     1304
     1305            bool wasPaused = mMachineState == KMachineState_Paused
     1306                          || mMachineState == KMachineState_Stuck
     1307                          || mMachineState == KMachineState_TeleportingPausedVM;
     1308            if (!wasPaused)
    13171309            {
    1318                 /* Read the last user's choice for the given VM */
    1319                 QStringList lastAction = machine.GetExtraData (VBoxDefs::GUI_LastCloseAction).split (',');
    1320                 AssertWrapperOk (machine);
    1321                 if (lastAction [0] == kSave)
     1310                /* Suspend the VM and ignore the close event if failed to do so.
     1311                 * pause() will show the error message to the user. */
     1312                success = mConsole->pause (true);
     1313            }
     1314
     1315            if (success)
     1316            {
     1317                success = false;
     1318
     1319                CMachine machine = mSession.GetMachine();
     1320                VBoxCloseVMDlg dlg (this);
     1321                QString typeId = machine.GetOSTypeId();
     1322                dlg.pmIcon->setPixmap (vboxGlobal().vmGuestOSTypeIcon (typeId));
     1323
     1324                /* Make the Discard checkbox invisible if there are no snapshots */
     1325                dlg.mCbDiscardCurState->setVisible (machine.GetSnapshotCount() > 0);
     1326
     1327                if (mMachineState != KMachineState_Stuck)
    13221328                {
    1323                     dlg.mRbSave->setChecked (true);
    1324                     dlg.mRbSave->setFocus();
     1329                    /* Read the last user's choice for the given VM */
     1330                    QStringList lastAction = machine.GetExtraData (VBoxDefs::GUI_LastCloseAction).split (',');
     1331                    AssertWrapperOk (machine);
     1332                    if (lastAction [0] == kSave)
     1333                    {
     1334                        dlg.mRbSave->setChecked (true);
     1335                        dlg.mRbSave->setFocus();
     1336                    }
     1337                    else if (lastAction [0] == kPowerOff || !isACPIEnabled)
     1338                    {
     1339                        dlg.mRbShutdown->setEnabled (isACPIEnabled);
     1340                        dlg.mRbPowerOff->setChecked (true);
     1341                        dlg.mRbPowerOff->setFocus();
     1342                    }
     1343                    else /* The default is ACPI Shutdown */
     1344                    {
     1345                        dlg.mRbShutdown->setChecked (true);
     1346                        dlg.mRbShutdown->setFocus();
     1347                    }
     1348                    dlg.mCbDiscardCurState->setChecked (lastAction.count() > 1 && lastAction [1] == kDiscardCurState);
    13251349                }
    1326                 else if (lastAction [0] == kPowerOff || !isACPIEnabled)
     1350                else
    13271351                {
    1328                     dlg.mRbShutdown->setEnabled (isACPIEnabled);
     1352                    /* The stuck VM can only be powered off; disable anything else and choose PowerOff */
     1353                    dlg.mRbSave->setEnabled (false);
     1354                    dlg.mRbShutdown->setEnabled (false);
    13291355                    dlg.mRbPowerOff->setChecked (true);
    1330                     dlg.mRbPowerOff->setFocus();
    13311356                }
    1332                 else /* The default is ACPI Shutdown */
     1357
     1358                bool wasShutdown = false;
     1359
     1360                if (dlg.exec() == QDialog::Accepted)
    13331361                {
    1334                     dlg.mRbShutdown->setChecked (true);
    1335                     dlg.mRbShutdown->setFocus();
     1362                    /* Disable auto closure because we want to have a chance to show
     1363                     * the error dialog on save state / power off failure. */
     1364                    mNoAutoClose = true;
     1365
     1366                    CConsole console = mConsole->console();
     1367
     1368                    if (dlg.mRbSave->isChecked())
     1369                    {
     1370                        CProgress progress = console.SaveState();
     1371
     1372                        if (console.isOk())
     1373                        {
     1374                            /* Show the "VM saving" progress dialog */
     1375                            vboxProblem().showModalProgressDialog (progress, machine.GetName(), this, 0);
     1376                            if (progress.GetResultCode() != 0)
     1377                                vboxProblem().cannotSaveMachineState (progress);
     1378                            else
     1379                                success = true;
     1380                        }
     1381                        else
     1382                            vboxProblem().cannotSaveMachineState (console);
     1383                    }
     1384                    else if (dlg.mRbShutdown->isChecked())
     1385                    {
     1386                        /* Unpause the VM to let it grab the ACPI shutdown event */
     1387                        mConsole->pause (false);
     1388                        /* Prevent the subsequent unpause request */
     1389                        wasPaused = true;
     1390                        /* Signal ACPI shutdown (if there is no ACPI device, the
     1391                         * operation will fail) */
     1392                        console.PowerButton();
     1393                        wasShutdown = console.isOk();
     1394                        if (!wasShutdown)
     1395                            vboxProblem().cannotACPIShutdownMachine (console);
     1396                        /* Success is always false because we never accept the close
     1397                         * window action when doing ACPI shutdown */
     1398                        success = false;
     1399                    }
     1400                    else if (dlg.mRbPowerOff->isChecked())
     1401                    {
     1402                        CProgress progress = console.PowerDown();
     1403
     1404                        if (console.isOk())
     1405                        {
     1406                            /* Show the power down progress dialog */
     1407                            vboxProblem().showModalProgressDialog (progress, machine.GetName(), this, 0);
     1408                            if (progress.GetResultCode() != 0)
     1409                                vboxProblem().cannotStopMachine (progress);
     1410                            else
     1411                                success = true;
     1412                        }
     1413                        else
     1414                            vboxProblem().cannotStopMachine (console);
     1415
     1416                        if (success)
     1417                        {
     1418                            /* Note: leave success = true even if we fail to
     1419                             * discard the current state later -- the console window
     1420                             * will closed anyway */
     1421
     1422                            /* Discard the current state if requested */
     1423                            if (dlg.mCbDiscardCurState->isChecked() && dlg.mCbDiscardCurState->isVisibleTo (&dlg))
     1424                            {
     1425                                CSnapshot snapshot = machine.GetCurrentSnapshot();
     1426                                CProgress progress = console.RestoreSnapshot (snapshot);
     1427                                if (console.isOk())
     1428                                {
     1429                                    /* Show the progress dialog */
     1430                                    vboxProblem().showModalProgressDialog (progress, machine.GetName(), this);
     1431                                    if (progress.GetResultCode() != 0)
     1432                                        vboxProblem().cannotRestoreSnapshot (progress, snapshot.GetName());
     1433                                }
     1434                                else
     1435                                    vboxProblem().cannotRestoreSnapshot (console, snapshot.GetName());
     1436                            }
     1437                        }
     1438                    }
     1439
     1440                    if (success)
     1441                    {
     1442                        /* Accept the close action on success */
     1443                        aEvent->accept();
     1444                    }
     1445
     1446                    if (success || wasShutdown)
     1447                    {
     1448                        /* Read the last user's choice for the given VM */
     1449                        QStringList prevAction = machine.GetExtraData (VBoxDefs::GUI_LastCloseAction).split (',');
     1450                        /* Memorize the last user's choice for the given VM */
     1451                        QString lastAction = kPowerOff;
     1452                        if (dlg.mRbSave->isChecked())
     1453                            lastAction = kSave;
     1454                        else if (dlg.mRbShutdown->isChecked() ||
     1455                                 (dlg.mRbPowerOff->isChecked() && prevAction [0] == kShutdown && !isACPIEnabled))
     1456                            lastAction = kShutdown;
     1457                        else if (dlg.mRbPowerOff->isChecked())
     1458                            lastAction = kPowerOff;
     1459                        else
     1460                            AssertFailed();
     1461                        if (dlg.mCbDiscardCurState->isChecked())
     1462                            (lastAction += ",") += kDiscardCurState;
     1463                        machine.SetExtraData (VBoxDefs::GUI_LastCloseAction, lastAction);
     1464                        AssertWrapperOk (machine);
     1465                    }
    13361466                }
    1337                 dlg.mCbDiscardCurState->setChecked (lastAction.count() > 1 && lastAction [1] == kDiscardCurState);
     1467            }
     1468
     1469            mNoAutoClose = false;
     1470
     1471            if (   mMachineState == KMachineState_PoweredOff
     1472                || mMachineState == KMachineState_Saved
     1473                || mMachineState == KMachineState_Teleported
     1474                || mMachineState == KMachineState_Aborted
     1475               )
     1476            {
     1477                /* The machine has been stopped while showing the Close or the Pause
     1478                 * failure dialog -- accept the close event immediately. */
     1479                aEvent->accept();
    13381480            }
    13391481            else
    13401482            {
    1341                 /* The stuck VM can only be powered off; disable anything else and choose PowerOff */
    1342                 dlg.mRbSave->setEnabled (false);
    1343                 dlg.mRbShutdown->setEnabled (false);
    1344                 dlg.mRbPowerOff->setChecked (true);
    1345             }
    1346 
    1347             bool wasShutdown = false;
    1348 
    1349             if (dlg.exec() == QDialog::Accepted)
    1350             {
    1351                 /* Disable auto closure because we want to have a chance to show
    1352                  * the error dialog on save state / power off failure. */
    1353                 mNoAutoClose = true;
    1354 
    1355                 CConsole console = mConsole->console();
    1356 
    1357                 if (dlg.mRbSave->isChecked())
     1483                if (!success)
    13581484                {
    1359                     CProgress progress = console.SaveState();
    1360 
    1361                     if (console.isOk())
    1362                     {
    1363                         /* Show the "VM saving" progress dialog */
    1364                         vboxProblem().showModalProgressDialog (progress, machine.GetName(), this, 0);
    1365                         if (progress.GetResultCode() != 0)
    1366                             vboxProblem().cannotSaveMachineState (progress);
    1367                         else
    1368                             success = true;
    1369                     }
    1370                     else
    1371                         vboxProblem().cannotSaveMachineState (console);
    1372                 }
    1373                 else if (dlg.mRbShutdown->isChecked())
    1374                 {
    1375                     /* Unpause the VM to let it grab the ACPI shutdown event */
    1376                     mConsole->pause (false);
    1377                     /* Prevent the subsequent unpause request */
    1378                     wasPaused = true;
    1379                     /* Signal ACPI shutdown (if there is no ACPI device, the
    1380                      * operation will fail) */
    1381                     console.PowerButton();
    1382                     wasShutdown = console.isOk();
    1383                     if (!wasShutdown)
    1384                         vboxProblem().cannotACPIShutdownMachine (console);
    1385                     /* Success is always false because we never accept the close
    1386                      * window action when doing ACPI shutdown */
    1387                     success = false;
    1388                 }
    1389                 else if (dlg.mRbPowerOff->isChecked())
    1390                 {
    1391                     CProgress progress = console.PowerDown();
    1392 
    1393                     if (console.isOk())
    1394                     {
    1395                         /* Show the power down progress dialog */
    1396                         vboxProblem().showModalProgressDialog (progress, machine.GetName(), this, 0);
    1397                         if (progress.GetResultCode() != 0)
    1398                             vboxProblem().cannotStopMachine (progress);
    1399                         else
    1400                             success = true;
    1401                     }
    1402                     else
    1403                         vboxProblem().cannotStopMachine (console);
    1404 
    1405                     if (success)
    1406                     {
    1407                         /* Note: leave success = true even if we fail to
    1408                          * discard the current state later -- the console window
    1409                          * will closed anyway */
    1410 
    1411                         /* Discard the current state if requested */
    1412                         if (dlg.mCbDiscardCurState->isChecked() && dlg.mCbDiscardCurState->isVisibleTo (&dlg))
    1413                         {
    1414                             CSnapshot snapshot = machine.GetCurrentSnapshot();
    1415                             CProgress progress = console.RestoreSnapshot (snapshot);
    1416                             if (console.isOk())
    1417                             {
    1418                                 /* Show the progress dialog */
    1419                                 vboxProblem().showModalProgressDialog (progress, machine.GetName(), this);
    1420                                 if (progress.GetResultCode() != 0)
    1421                                     vboxProblem().cannotRestoreSnapshot (progress, snapshot.GetName());
    1422                             }
    1423                             else
    1424                                 vboxProblem().cannotRestoreSnapshot (console, snapshot.GetName());
    1425                         }
    1426                     }
    1427                 }
    1428 
    1429                 if (success)
    1430                 {
    1431                     /* Accept the close action on success */
    1432                     aEvent->accept();
    1433                 }
    1434 
    1435                 if (success || wasShutdown)
    1436                 {
    1437                     /* Read the last user's choice for the given VM */
    1438                     QStringList prevAction = machine.GetExtraData (VBoxDefs::GUI_LastCloseAction).split (',');
    1439                     /* Memorize the last user's choice for the given VM */
    1440                     QString lastAction = kPowerOff;
    1441                     if (dlg.mRbSave->isChecked())
    1442                         lastAction = kSave;
    1443                     else if (dlg.mRbShutdown->isChecked() ||
    1444                              (dlg.mRbPowerOff->isChecked() && prevAction [0] == kShutdown && !isACPIEnabled))
    1445                         lastAction = kShutdown;
    1446                     else if (dlg.mRbPowerOff->isChecked())
    1447                         lastAction = kPowerOff;
    1448                     else
    1449                         AssertFailed();
    1450                     if (dlg.mCbDiscardCurState->isChecked())
    1451                         (lastAction += ",") += kDiscardCurState;
    1452                     machine.SetExtraData (VBoxDefs::GUI_LastCloseAction, lastAction);
    1453                     AssertWrapperOk (machine);
     1485                    /* Restore the running state if needed */
     1486                    if (!wasPaused && mMachineState == KMachineState_Paused)
     1487                        mConsole->pause (false);
    14541488                }
    14551489            }
    1456         }
    1457 
    1458         mNoAutoClose = false;
    1459 
    1460         if (mMachineState < KMachineState_Running)
    1461         {
    1462             /* The machine has been stopped while showing the Close or the Pause
    1463              * failure dialog -- accept the close event immediately. */
    1464             aEvent->accept();
    1465         }
    1466         else
    1467         {
    1468             if (!success)
    1469             {
    1470                 /* Restore the running state if needed */
    1471                 if (!wasPaused && mMachineState == KMachineState_Paused)
    1472                     mConsole->pause (false);
    1473             }
    1474         }
     1490            break;
    14751491    }
    14761492
     
    17731789    /* Check if we missed a really quick termination after successful
    17741790     * startup, and process it if we did. */
    1775     if (mMachineState < KMachineState_Running)
     1791    if (   mMachineState == KMachineState_PoweredOff
     1792        || mMachineState == KMachineState_Saved
     1793        || mMachineState == KMachineState_Teleported
     1794        || mMachineState == KMachineState_Aborted
     1795       )
    17761796    {
    17771797        close();
     
    24752495    if (mConsole && mMachineState != aState)
    24762496    {
    2477         if (aState >= KMachineState_Running)
    2478         {
    2479             switch (aState)
     2497        switch (aState)
     2498        {
     2499            case KMachineState_Stuck:
    24802500            {
    2481                 case KMachineState_Stuck:
    2482                 {
    2483                     guruMeditation = true;
    2484                     break;
    2485                 }
    2486                 case KMachineState_Paused:
    2487                 {
    2488                     if (!mVmPauseAction->isChecked())
    2489                         mVmPauseAction->setChecked (true);
    2490                     break;
    2491                 }
    2492                 case KMachineState_Running:
    2493                 {
    2494                     if (mMachineState == KMachineState_Paused && mVmPauseAction->isChecked())
    2495                         mVmPauseAction->setChecked (false);
    2496                     break;
    2497                 }
     2501                guruMeditation = true;
     2502                break;
     2503            }
     2504            case KMachineState_Paused:
     2505            {
     2506                if (!mVmPauseAction->isChecked())
     2507                    mVmPauseAction->setChecked (true);
     2508                break;
     2509            }
     2510            case KMachineState_Running:
     2511            case KMachineState_Teleporting:         /** @todo Live Migration: Check out this. */
     2512            case KMachineState_LiveSnapshotting:
     2513            {
     2514                if (   (   mMachineState == KMachineState_Paused
     2515                        || mMachineState == KMachineState_TeleportingPausedVM)
     2516                    && mVmPauseAction->isChecked()
     2517                   )
     2518                    mVmPauseAction->setChecked (false);
     2519                break;
     2520            }
    24982521#ifdef Q_WS_X11
    2499                 case KMachineState_Starting:
    2500                 {
    2501                     /* The keyboard handler may wish to do some release logging
    2502                        on startup.  Tell it that the logger is now active. */
    2503                     doXKeyboardLogging (QX11Info::display());
    2504                     break;
    2505                 }
    2506 #endif
    2507                 default:
    2508                     break;
     2522            case KMachineState_Starting:
     2523            case KMachineState_Restoring:
     2524            case KMachineState_TeleportingIn:
     2525            {
     2526                /* The keyboard handler may wish to do some release logging
     2527                   on startup.  Tell it that the logger is now active. */
     2528                doXKeyboardLogging (QX11Info::display());
     2529                break;
    25092530            }
    2510         }
    2511 
    2512         bool isRunningOrPaused = aState == KMachineState_Running || aState == KMachineState_Paused;
     2531#endif
     2532            default:
     2533                break;
     2534        }
     2535
     2536        bool isRunningOrPaused = aState == KMachineState_Running
     2537                              || aState == KMachineState_Teleporting
     2538                              || aState == KMachineState_LiveSnapshotting /** @todo Live Migration: Check out this. */
     2539                              || aState == KMachineState_Paused;
    25132540
    25142541        /* Enable/Disable actions that are not managed by updateAppearanceOf() */
    25152542
    2516         mRunningActions->setEnabled (aState == KMachineState_Running);
     2543        mRunningActions->setEnabled (   aState == KMachineState_Running
     2544                                     || aState == KMachineState_Teleporting
     2545                                     || aState == KMachineState_LiveSnapshotting  /** @todo Live Migration: Check out this. */
     2546                                    );
    25172547        mRunningOrPausedActions->setEnabled (isRunningOrPaused);
    25182548
     
    25242554                            PauseAction | DisableMouseIntegrAction);
    25252555
    2526         if (aState < KMachineState_Running)
     2556        if (   aState == KMachineState_PoweredOff
     2557            || aState == KMachineState_Saved
     2558            || aState == KMachineState_Teleported
     2559            || aState == KMachineState_Aborted
     2560           )
    25272561        {
    25282562            /* VM has been powered off or saved or aborted, no matter
     
    27732807    CConsole console = mConsole->console();
    27742808
    2775     bool isRunningOrPaused = mMachineState == KMachineState_Running || mMachineState == KMachineState_Paused;
     2809    bool isStrictRunningOrPaused = mMachineState == KMachineState_Running
     2810                                || mMachineState == KMachineState_Paused;
     2811    bool isRunningOrPaused = isStrictRunningOrPaused
     2812                          || mMachineState == KMachineState_Teleporting
     2813                          || mMachineState == KMachineState_LiveSnapshotting;
    27762814
    27772815    if (aElement & Caption)
     
    28962934        mNetLed->setState (count > 0 ? KDeviceActivity_Idle : KDeviceActivity_Null);
    28972935
    2898         mDevicesNetworkDialogAction->setEnabled (isRunningOrPaused && count > 0);
    2899         mDevicesNetworkMenu->setEnabled (isRunningOrPaused && count > 0);
     2936        mDevicesNetworkDialogAction->setEnabled (isStrictRunningOrPaused && count > 0);
     2937        mDevicesNetworkMenu->setEnabled (isStrictRunningOrPaused && count > 0);
    29002938
    29012939        QString tip = tr ("<p style='white-space:pre'><nobr>Indicates the activity of the "
     
    29312969            if (!usbctl.isNull() && usbctl.GetEnabled())
    29322970            {
    2933                 mDevicesUSBMenu->setEnabled (isRunningOrPaused);
     2971                mDevicesUSBMenu->setEnabled (isStrictRunningOrPaused);
    29342972
    29352973                CUSBDeviceVector devsvec = console.GetUSBDevices();
     
    30693107            mVmDisableMouseIntegrAction->setStatusTip (tr ("Enable temporarily disabled host mouse pointer integration"));
    30703108        }
    3071         if (mMachineState == KMachineState_Running)
     3109        if (   mMachineState == KMachineState_Running
     3110            || mMachineState == KMachineState_Teleporting
     3111            || mMachineState == KMachineState_LiveSnapshotting
     3112           )
    30723113            mVmDisableMouseIntegrAction->setEnabled (mConsole->isMouseAbsolute());
    30733114        else
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp

    r24252 r24301  
    26342634    mMachineStates [KMachineState_PoweredOff] = tr ("Powered Off", "MachineState");
    26352635    mMachineStates [KMachineState_Saved] =      tr ("Saved", "MachineState");
     2636    mMachineStates [KMachineState_Teleported] = tr ("Teleported", "MachineState");
    26362637    mMachineStates [KMachineState_Aborted] =    tr ("Aborted", "MachineState");
    26372638    mMachineStates [KMachineState_Running] =    tr ("Running", "MachineState");
    26382639    mMachineStates [KMachineState_Paused] =     tr ("Paused", "MachineState");
    2639     mMachineStates [KMachineState_Stuck] =      tr ("Stuck", "MachineState");
     2640    mMachineStates [KMachineState_Stuck] =      tr ("Guru Meditation", "MachineState");
     2641    mMachineStates [KMachineState_Teleporting] = tr ("Teleporting", "MachineState");
     2642    mMachineStates [KMachineState_LiveSnapshotting] = tr ("Live Snapshotting", "MachineState");
    26402643    mMachineStates [KMachineState_Starting] =   tr ("Starting", "MachineState");
    26412644    mMachineStates [KMachineState_Stopping] =   tr ("Stopping", "MachineState");
    26422645    mMachineStates [KMachineState_Saving] =     tr ("Saving", "MachineState");
    26432646    mMachineStates [KMachineState_Restoring] =  tr ("Restoring", "MachineState");
    2644     mMachineStates [KMachineState_TeleportingFrom] = tr ("Teleporting", "MachineState");
     2647    mMachineStates [KMachineState_TeleportingPausedVM] = tr ("Teleporting Paused VM", "MachineState");
     2648    mMachineStates [KMachineState_TeleportingIn] = tr ("Teleporting", "MachineState");
    26452649    mMachineStates [KMachineState_RestoringSnapshot] = tr ("Restoring Snapshot", "MachineState");
    26462650    mMachineStates [KMachineState_DeletingSnapshot] = tr ("Deleting Snapshot", "MachineState");
     
    46064610        {KMachineState_Saved, ":/state_saved_16px.png"},
    46074611        {KMachineState_Aborted, ":/state_aborted_16px.png"},
     4612        {KMachineState_Teleported, ":/state_saved_16px.png"},           /** @todo Live Migration: New icon? (not really important) */
    46084613        {KMachineState_Running, ":/state_running_16px.png"},
    46094614        {KMachineState_Paused, ":/state_paused_16px.png"},
     4615        {KMachineState_Teleporting, ":/state_running_16px.png"},        /** @todo Live Migration: New icon? (not really important) */
     4616        {KMachineState_LiveSnapshotting, ":/state_running_16px.png"},   /** @todo Live Migration: New icon? (not really important) */
    46104617        {KMachineState_Stuck, ":/state_stuck_16px.png"},
    46114618        {KMachineState_Starting, ":/state_running_16px.png"}, /// @todo (dmik) separate icon?
     
    46134620        {KMachineState_Saving, ":/state_saving_16px.png"},
    46144621        {KMachineState_Restoring, ":/state_restoring_16px.png"},
    4615         {KMachineState_TeleportingFrom, ":/state_restoring_16px.png"}, /** @todo Live Migration: New icon? (not really important) */
     4622        {KMachineState_TeleportingPausedVM, ":/state_saving_16px.png"}, /** @todo Live Migration: New icon? (not really important) */
     4623        {KMachineState_TeleportingIn, ":/state_restoring_16px.png"},    /** @todo Live Migration: New icon? (not really important) */
    46164624        {KMachineState_RestoringSnapshot, ":/state_discarding_16px.png"},
    46174625        {KMachineState_DeletingSnapshot, ":/state_discarding_16px.png"},
     
    46294637    mVMStateColors.insert (KMachineState_Saved,         new QColor (Qt::yellow));
    46304638    mVMStateColors.insert (KMachineState_Aborted,       new QColor (Qt::darkRed));
     4639    mVMStateColors.insert (KMachineState_Teleported,    new QColor (Qt::red));
    46314640    mVMStateColors.insert (KMachineState_Running,       new QColor (Qt::green));
    46324641    mVMStateColors.insert (KMachineState_Paused,        new QColor (Qt::darkGreen));
    46334642    mVMStateColors.insert (KMachineState_Stuck,         new QColor (Qt::darkMagenta));
     4643    mVMStateColors.insert (KMachineState_Teleporting,   new QColor (Qt::blue));
     4644    mVMStateColors.insert (KMachineState_LiveSnapshotting, new QColor (Qt::green));
    46344645    mVMStateColors.insert (KMachineState_Starting,      new QColor (Qt::green));
    46354646    mVMStateColors.insert (KMachineState_Stopping,      new QColor (Qt::green));
    46364647    mVMStateColors.insert (KMachineState_Saving,        new QColor (Qt::green));
    46374648    mVMStateColors.insert (KMachineState_Restoring,     new QColor (Qt::green));
    4638     mVMStateColors.insert (KMachineState_TeleportingFrom, new QColor (Qt::green));
     4649    mVMStateColors.insert (KMachineState_TeleportingPausedVM, new QColor (Qt::blue));
     4650    mVMStateColors.insert (KMachineState_TeleportingIn, new QColor (Qt::blue));
    46394651    mVMStateColors.insert (KMachineState_RestoringSnapshot, new QColor (Qt::green));
    46404652    mVMStateColors.insert (KMachineState_DeletingSnapshot, new QColor (Qt::green));
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxMediaManagerDlg.cpp

    r24147 r24301  
    14371437        case KMachineState_Aborted:
    14381438        case KMachineState_Saved:
     1439        case KMachineState_Teleported:
    14391440        case KMachineState_Starting:
    14401441        case KMachineState_Restoring:
    1441         case KMachineState_TeleportingFrom:
     1442        case KMachineState_TeleportingIn:
    14421443        {
    14431444            refreshAll();
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp

    r24263 r24301  
    980980    }
    981981
    982     AssertMsg (item->state() < KMachineState_Running,
    983                ("Machine must be PoweredOff/Saved/Aborted"));
     982    AssertMsg (   item->state() == KMachineState_PoweredOff
     983               || item->state() == KMachineState_Saved
     984               || item->state() == KMachineState_Teleported
     985               || item->state() == KMachineState_Aborted
     986               , ("Machine must be PoweredOff/Saved/Aborted (%d)", item->state()));
    984987
    985988    QString id = item->id();
     
    14551458        mVmDeleteAction->setEnabled (modifyEnabled);
    14561459        mVmDiscardAction->setEnabled (state == KMachineState_Saved && !running);
    1457         mVmPauseAction->setEnabled (state == KMachineState_Running ||
    1458                                    state == KMachineState_Paused);
     1460        mVmPauseAction->setEnabled (   state == KMachineState_Running
     1461                                    || state == KMachineState_Teleporting
     1462                                    || state == KMachineState_LiveSnapshotting
     1463                                    || state == KMachineState_Paused
     1464                                    || state == KMachineState_TeleportingPausedVM /** @todo Live Migration: does this make sense? */
     1465                                   );
    14591466
    14601467        /* change the Start button text accordingly */
    1461         if (state >= KMachineState_Running)
     1468        if (   state == KMachineState_PoweredOff
     1469            || state == KMachineState_Saved
     1470            || state == KMachineState_Teleported
     1471            || state == KMachineState_Aborted
     1472           )
     1473        {
     1474            mVmStartAction->setText (tr ("S&tart"));
     1475            mVmStartAction->setStatusTip (
     1476                tr ("Start the selected virtual machine"));
     1477
     1478            mVmStartAction->setEnabled (!running);
     1479        }
     1480        else
    14621481        {
    14631482            mVmStartAction->setText (tr ("S&how"));
     
    14671486            mVmStartAction->setEnabled (item->canSwitchTo());
    14681487        }
    1469         else
    1470         {
    1471             mVmStartAction->setText (tr ("S&tart"));
    1472             mVmStartAction->setStatusTip (
    1473                 tr ("Start the selected virtual machine"));
    1474 
    1475             mVmStartAction->setEnabled (!running);
    1476         }
    14771488
    14781489        /* change the Pause/Resume button text accordingly */
    1479         if (state == KMachineState_Paused)
     1490        if (   state == KMachineState_Paused
     1491            || state == KMachineState_TeleportingPausedVM /*?*/
     1492           )
    14801493        {
    14811494            mVmPauseAction->setText (tr ("R&esume"));
     
    18651878
    18661879        /* Change the Start button text accordingly */
    1867         if (s >= KMachineState_Running)
     1880        if (   s == KMachineState_PoweredOff
     1881            || s == KMachineState_Saved
     1882            || s == KMachineState_Teleported
     1883            || s == KMachineState_Aborted
     1884           )
     1885        {
     1886            mVmStartAction->setText (VBoxVMListView::tr ("S&tart"));
     1887            mVmStartAction->setStatusTip (
     1888                  VBoxVMListView::tr ("Start the selected virtual machine"));
     1889            mVmStartAction->setEnabled (!running);
     1890        }
     1891        else
    18681892        {
    18691893            mVmStartAction->setText (VBoxVMListView::tr ("S&how"));
     
    18721896            mVmStartAction->setEnabled (pItem->canSwitchTo());
    18731897        }
    1874         else
    1875         {
    1876             mVmStartAction->setText (VBoxVMListView::tr ("S&tart"));
    1877             mVmStartAction->setStatusTip (
    1878                   VBoxVMListView::tr ("Start the selected virtual machine"));
    1879             mVmStartAction->setEnabled (!running);
    1880         }
    18811898
    18821899        /* Change the Pause/Resume button text accordingly */
    1883         mVmPauseAction->setEnabled (s == KMachineState_Running ||
    1884                                     s == KMachineState_Paused);
    1885 
    1886         if (s == KMachineState_Paused)
     1900        mVmPauseAction->setEnabled (   s == KMachineState_Running
     1901                                    || s == KMachineState_Teleporting
     1902                                    || s == KMachineState_LiveSnapshotting
     1903                                    || s == KMachineState_Paused
     1904                                    || s == KMachineState_TeleportingPausedVM
     1905                                   );
     1906
     1907        if (   s == KMachineState_Paused
     1908            || s == KMachineState_TeleportingPausedVM /*?*/
     1909           )
    18871910        {
    18881911            mVmPauseAction->setText (VBoxVMListView::tr ("R&esume"));
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMListView.cpp

    r20820 r24301  
    213213        mSnapshotCount = mMachine.GetSnapshotCount();
    214214
    215         if (mState >= KMachineState_Running)
     215        if (   mState == KMachineState_PoweredOff
     216            || mState == KMachineState_Saved
     217            || mState == KMachineState_Teleported
     218            || mState == KMachineState_Aborted
     219           )
     220        {
     221            mPid = (ULONG) ~0;
     222    /// @todo Remove. See @c todo in #switchTo() below.
     223#if 0
     224            mWinId = (WId) ~0;
     225#endif
     226        }
     227        else
    216228        {
    217229            mPid = mMachine.GetSessionPid();
     
    219231#if 0
    220232            mWinId = FindWindowIdFromPid (mPid);
    221 #endif
    222         }
    223         else
    224         {
    225             mPid = (ULONG) ~0;
    226     /// @todo Remove. See @c todo in #switchTo() below.
    227 #if 0
    228             mWinId = (WId) ~0;
    229233#endif
    230234        }
  • trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxDockIconPreview.cpp

    r23801 r24301  
    117117{
    118118    CGImageRef img;
    119     if (mMainWnd->machineState() == KMachineState_Paused)
     119    if (   mMainWnd->machineState() == KMachineState_Paused
     120        || mMainWnd->machineState() == KMachineState_TeleportingPausedVM)
    120121        img = mStatePaused;
    121122    else if (   mMainWnd->machineState() == KMachineState_Restoring
    122              || mMainWnd->machineState() == KMachineState_TeleportingFrom)
     123             || mMainWnd->machineState() == KMachineState_TeleportingIn)
    123124        img = mStateRestoring;
    124     else if (mMainWnd->machineState() == KMachineState_Saving)
     125    else if (   mMainWnd->machineState() == KMachineState_Saving
     126             || mMainWnd->machineState() == KMachineState_LiveSnapshotting)
    125127        img = mStateSaving;
    126128    else
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r24255 r24301  
    15041504    AutoWriteLock alock(this);
    15051505
    1506     if (!Global::IsActive(mMachineState))
    1507     {
     1506    /** @todo Live Migration: Support powering down while teleporting. Maybe also
     1507     *        while taking a live snapshot.  (In case they never finish and you
     1508     *        or some other operator wish to shut down the VM.) */
     1509    switch (mMachineState)
     1510    {
     1511        case MachineState_Running:
     1512        case MachineState_Paused:
     1513        case MachineState_Stuck:
     1514            break;
     1515
    15081516        /* extra nice error message for a common case */
    1509         if (mMachineState == MachineState_Saved)
     1517        case MachineState_Saved:
     1518            return setError(VBOX_E_INVALID_VM_STATE, tr("Cannot power down a saved virtual machine"));
     1519        case MachineState_Stopping:
     1520            return setError(VBOX_E_INVALID_VM_STATE, tr("Virtual machine is being powered down."));
     1521        default:
    15101522            return setError(VBOX_E_INVALID_VM_STATE,
    1511                 tr("Cannot power down a saved virtual machine"));
    1512         else if (mMachineState == MachineState_Stopping)
    1513             return setError(VBOX_E_INVALID_VM_STATE,
    1514                 tr("Virtual machine is being powered down."));
    1515         else
    1516             return setError(VBOX_E_INVALID_VM_STATE,
    1517                 tr("Invalid machine state: %s (must be Running, Paused or Stuck)"),
    1518                 Global::stringifyMachineState(mMachineState));
     1523                            tr("Invalid machine state: %s (must be Running, Paused or Stuck)"),
     1524                            Global::stringifyMachineState(mMachineState));
    15191525    }
    15201526
     
    15641570    AutoWriteLock alock(this);
    15651571
    1566     if (mMachineState != MachineState_Running)
     1572    if (   mMachineState != MachineState_Running
     1573        && mMachineState != MachineState_Teleporting
     1574        && mMachineState != MachineState_LiveSnapshotting
     1575        /** @todo r=bird: This should be allowed on paused VMs as well. Later.  */
     1576       )
    15671577        return setError(VBOX_E_INVALID_VM_STATE,
    15681578            tr("Invalid machine state: %s"),
     
    15971607    AutoWriteLock alock(this);
    15981608
    1599     if (mMachineState != MachineState_Running)
     1609    if (   mMachineState != MachineState_Running
     1610        && mMachineState != MachineState_Teleporting
     1611        && mMachineState != MachineState_LiveSnapshotting
     1612       )
    16001613        return setError(VBOX_E_INVALID_VM_STATE,
    16011614            tr("Invalid machine state: %s"),
     
    16711684    AutoWriteLock alock(this);
    16721685
    1673     if (mMachineState != MachineState_Running)
     1686    if (   mMachineState != MachineState_Running
     1687        && mMachineState != MachineState_Teleporting
     1688        && mMachineState != MachineState_LiveSnapshotting
     1689       )
    16741690        return setError(VBOX_E_INVALID_VM_STATE,
    16751691            tr("Invalid machine state: %s"),
     
    17121728    AutoWriteLock alock(this);
    17131729
    1714     if (mMachineState != MachineState_Running)
     1730    if (   mMachineState != MachineState_Running
     1731        && mMachineState != MachineState_Teleporting
     1732        && mMachineState != MachineState_LiveSnapshotting
     1733       )
    17151734        return setError(VBOX_E_INVALID_VM_STATE,
    17161735            tr("Invalid machine state: %s"),
     
    17561775    AutoWriteLock alock(this);
    17571776
    1758     if (mMachineState != MachineState_Running)
     1777    if (   mMachineState != MachineState_Running
     1778        && mMachineState != MachineState_Teleporting
     1779        && mMachineState != MachineState_LiveSnapshotting
     1780       )
    17591781        return setError(VBOX_E_INVALID_VM_STATE,
    17601782            tr("Invalid machine state %s when checking if the guest entered the ACPI mode)"),
     
    17911813    AutoWriteLock alock(this);
    17921814
    1793     if (mMachineState != MachineState_Running)
     1815    if (mMachineState != MachineState_Running) /** @todo Live Migration: ??? */
    17941816        return setError(VBOX_E_INVALID_VM_STATE,
    17951817            tr("Invalid machine state: %s)"),
     
    18321854    AutoWriteLock alock(this);
    18331855
    1834     if (mMachineState != MachineState_Running &&
    1835         mMachineState != MachineState_Paused)
     1856    if (   mMachineState != MachineState_Running
     1857        && mMachineState != MachineState_Paused)
    18361858    {
    18371859        return setError(VBOX_E_INVALID_VM_STATE,
     
    19701992    AutoWriteLock alock(this);
    19711993
    1972     if (mMachineState != MachineState_PoweredOff &&
    1973         mMachineState != MachineState_Aborted)
     1994    if (   mMachineState != MachineState_PoweredOff
     1995        && mMachineState != MachineState_Teleported
     1996        && mMachineState != MachineState_Aborted
     1997       )
    19741998        return setError(VBOX_E_INVALID_VM_STATE,
    1975             tr("Cannot adopt the saved machine state as the machine is not in Powered Off or Aborted state (machine state: %s)"),
     1999            tr("Cannot adopt the saved machine state as the machine is not in Powered Off, Teleported or Aborted state (machine state: %s)"),
    19762000            Global::stringifyMachineState(mMachineState));
    19772001
     
    21092133    AutoWriteLock alock(this);
    21102134
    2111     if (mMachineState != MachineState_Running &&
    2112         mMachineState != MachineState_Paused)
     2135    if (   mMachineState != MachineState_Running
     2136        && mMachineState != MachineState_Paused)
    21132137        return setError(VBOX_E_INVALID_VM_STATE,
    21142138            tr("Cannot attach a USB device to the machine which is not running or paused (machine state: %s)"),
     
    22882312        return setError(VBOX_E_INVALID_VM_STATE,
    22892313            tr("Cannot create a transient shared folder on the machine in the saved state"));
    2290     if (mMachineState > MachineState_Paused)
     2314    if (   mMachineState != MachineState_PoweredOff
     2315        && mMachineState != MachineState_Teleported
     2316        && mMachineState != MachineState_Aborted
     2317        && mMachineState != MachineState_Running
     2318        && mMachineState != MachineState_Paused
     2319       )
    22912320        return setError(VBOX_E_INVALID_VM_STATE,
    22922321            tr("Cannot create a transient shared folder on the machine while it is changing the state (machine state: %s)"),
     
    23502379        return setError(VBOX_E_INVALID_VM_STATE,
    23512380            tr("Cannot remove a transient shared folder from the machine in the saved state"));
    2352     if (mMachineState > MachineState_Paused)
     2381    if (   mMachineState != MachineState_PoweredOff
     2382        && mMachineState != MachineState_Teleported
     2383        && mMachineState != MachineState_Aborted
     2384        && mMachineState != MachineState_Running
     2385        && mMachineState != MachineState_Paused
     2386       )
    23532387        return setError(VBOX_E_INVALID_VM_STATE,
    23542388            tr("Cannot remove a transient shared folder from the machine while it is changing the state (machine state: %s)"),
     
    35143548    HRESULT rc = S_OK;
    35153549
    3516     if (mVRDPServer && mMachineState == MachineState_Running)
     3550    if (    mVRDPServer
     3551        &&  (   mMachineState == MachineState_Running
     3552             || mMachineState == MachineState_Teleporting
     3553             || mMachineState == MachineState_LiveSnapshotting
     3554            )
     3555       )
    35173556    {
    35183557        BOOL vrdpEnabled = FALSE;
     
    40084047    AutoWriteLock alock(this);
    40094048
    4010     AssertReturn(    mMachineState == MachineState_Saving
    4011                   || mMachineState == MachineState_RestoringSnapshot
    4012                   || mMachineState == MachineState_DeletingSnapshot,
    4013                  E_FAIL);
     4049    AssertReturn(   mMachineState == MachineState_Saving
     4050                 || mMachineState == MachineState_LiveSnapshotting
     4051                 || mMachineState == MachineState_RestoringSnapshot
     4052                 || mMachineState == MachineState_DeletingSnapshot
     4053                 , E_FAIL);
    40144054
    40154055    return setMachineStateLocally(aMachineState);
     
    47124752        setMachineState(MachineState_Restoring);
    47134753    else if (fTeleporterEnabled)
    4714         setMachineState(MachineState_TeleportingFrom);
     4754        setMachineState(MachineState_TeleportingIn);
    47154755    else
    47164756        setMachineState(MachineState_Starting);
     
    47724812    Assert(mpVM != NULL);
    47734813
    4774     AssertMsg(mMachineState == MachineState_Running ||
    4775               mMachineState == MachineState_Paused ||
    4776               mMachineState == MachineState_Stuck ||
    4777               mMachineState == MachineState_Saving ||
    4778               mMachineState == MachineState_Starting ||
    4779               mMachineState == MachineState_Restoring ||
    4780               mMachineState == MachineState_TeleportingFrom || /** @todo Teleportation ???*/
    4781               mMachineState == MachineState_Stopping,
    4782               ("Invalid machine state: %s\n", Global::stringifyMachineState(mMachineState)));
     4814    AssertMsg(   mMachineState == MachineState_Running
     4815              || mMachineState == MachineState_Paused
     4816              || mMachineState == MachineState_Teleporting           /** @todo Live Migration: ???*/
     4817              || mMachineState == MachineState_LiveSnapshotting      /** @todo Live Migration: ???*/
     4818              || mMachineState == MachineState_Stuck
     4819              || mMachineState == MachineState_Starting
     4820              || mMachineState == MachineState_Stopping
     4821              || mMachineState == MachineState_Saving
     4822              || mMachineState == MachineState_Restoring
     4823              || mMachineState == MachineState_TeleportingPausedVM   /** @todo Teleportation ???*/
     4824              || mMachineState == MachineState_TeleportingIn         /** @todo Teleportation ???*/
     4825              , ("Invalid machine state: %s\n", Global::stringifyMachineState(mMachineState)));
    47834826
    47844827    LogRel(("Console::powerDown(): A request to power off the VM has been issued (mMachineState=%d, InUninit=%d)\n",
     
    47934836        && (   mMachineState == MachineState_Starting
    47944837            || mMachineState == MachineState_Restoring
    4795             || mMachineState == MachineState_TeleportingFrom)
     4838            || mMachineState == MachineState_TeleportingIn)
    47964839       )
    47974840        mVMPoweredOff = true;
     
    48014844     * set the state to Saved on VMSTATE_TERMINATED. In terms of protecting from
    48024845     * inappropriate operations while leaving the lock below, Saving or
    4803      * Restoring should be fine too */
     4846     * Restoring should be fine too.  Ditto for Teleporting* -> Teleported. */
    48044847    if (   mMachineState != MachineState_Saving
    48054848        && mMachineState != MachineState_Restoring
    4806         && mMachineState != MachineState_TeleportingFrom
    48074849        && mMachineState != MachineState_Stopping
     4850        && mMachineState != MachineState_TeleportingIn
     4851        && mMachineState != MachineState_Teleporting /** @todo Live Migration: what should really happen here? */
     4852        && mMachineState != MachineState_TeleportingPausedVM
     4853        && mMachineState != MachineState_LiveSnapshotting /** @todo Live Migration: what should really happen here? */
    48084854       )
    48094855        setMachineState(MachineState_Stopping);
     
    48624908                uint32_t fFlags;
    48634909                guestProp::validateFlags(Utf8Str(flagsOut[i]).raw(), &fFlags);
    4864                 if (   !( fFlags & guestProp::TRANSIENT)
    4865                     || (mMachineState == MachineState_Saving)
     4910                if (   !(fFlags & guestProp::TRANSIENT)
     4911                    || mMachineState == MachineState_Saving
     4912                    || mMachineState == MachineState_LiveSnapshotting
    48664913                  )
    48674914                {
     
    54905537                && that->mMachineState != MachineState_Saving
    54915538                && that->mMachineState != MachineState_Restoring
    5492                 && that->mMachineState != MachineState_TeleportingFrom
     5539                && that->mMachineState != MachineState_TeleportingIn
     5540                && that->mMachineState != MachineState_LiveSnapshotting
     5541                && that->mMachineState != MachineState_Teleporting
     5542                && that->mMachineState != MachineState_TeleportingPausedVM
    54935543               )
    54945544            {
     
    55855635                    that->setMachineState(MachineState_Saved);
    55865636                    break;
    5587                 case MachineState_TeleportingFrom:
     5637                case MachineState_TeleportingIn:
    55885638                    /* Teleportation failed or was cancelled.  Back to powered off. */
    55895639                    that->setMachineState(MachineState_PoweredOff);
    55905640                    break;
     5641                case MachineState_Teleporting:
     5642                case MachineState_TeleportingPausedVM:
     5643                    /* Successfully teleported the VM. */
     5644                    that->setMachineState(MachineState_Teleported);
     5645                    break;
    55915646            }
    55925647            break;
     
    55955650        case VMSTATE_SUSPENDED:
    55965651        {
    5597             /** @todo state/live VMSTATE_SUSPENDING_LS. */
     5652            /** @todo Live Migration: state/live VMSTATE_SUSPENDING_LS. */
    55985653            if (aOldState == VMSTATE_SUSPENDING)
    55995654            {
     
    56265681                           && aOldState == VMSTATE_POWERING_ON)
    56275682                       || (   (   that->mMachineState == MachineState_Restoring
    5628                                || that->mMachineState == MachineState_TeleportingFrom
     5683                               || that->mMachineState == MachineState_TeleportingIn
    56295684                               || that->mMachineState == MachineState_Paused)
    56305685                           && aOldState == VMSTATE_RESUMING));
     
    68216876    if (   console->mMachineState == MachineState_Starting
    68226877        || console->mMachineState == MachineState_Restoring
    6823         || console->mMachineState == MachineState_TeleportingFrom
     6878        || console->mMachineState == MachineState_TeleportingIn
    68246879       )
    68256880    {
  • trunk/src/VBox/Main/ConsoleImplTeleporter.cpp

    r23904 r24301  
    684684     */
    685685    AutoWriteLock autoLock(pState->mptrConsole);
    686     if (pState->mptrConsole->mMachineState == MachineState_Saving)
    687     {
     686    if (   pState->mptrConsole->mMachineState == MachineState_Teleporting
     687        || pState->mptrConsole->mMachineState == MachineState_TeleportingPausedVM
     688       )
     689    {
     690/** @todo shut down the VM and deal with Pause() and PowerDown() calls!! */
    688691        VMSTATE enmVMState = VMR3GetState(pState->mpVM);
    689692        if (SUCCEEDED(hrc))
    690693        {
    691694            if (enmVMState == VMSTATE_SUSPENDED)
    692                 pState->mptrConsole->setMachineState(MachineState_Paused);
     695                pState->mptrConsole->setMachineState(MachineState_TeleportingPausedVM);
    693696        }
    694697        else
     
    779782        default:
    780783            return setError(VBOX_E_INVALID_VM_STATE,
    781                 tr("Invalid machine state: %s (must be Running, Paused or Stuck)"),
     784                tr("Invalid machine state: %s (must be Running or Paused)"),
    782785                Global::stringifyMachineState(mMachineState));
    783786    }
     
    810813    if (RT_SUCCESS(vrc))
    811814    {
    812         hrc = setMachineState(MachineState_Saving);
     815        if (mMachineState == MachineState_Running)
     816            hrc = setMachineState(MachineState_Teleporting);
     817        else
     818            hrc = setMachineState(MachineState_TeleportingPausedVM);
    813819        if (SUCCEEDED(hrc))
    814820            ptrProgress.queryInterfaceTo(aProgress);
  • trunk/src/VBox/Main/DisplayImpl.cpp

    r24265 r24301  
    281281STDMETHODIMP Display::OnStateChange(MachineState_T machineState)
    282282{
    283     if (machineState == MachineState_Running)
    284     {
    285         LogFlowFunc (("Machine is running.\n"));
     283    if (   machineState == MachineState_Running
     284        || machineState == MachineState_Teleporting
     285        || machineState == MachineState_LiveSnapshotting
     286       )
     287    {
     288        LogFlowFunc(("Machine is running.\n"));
    286289
    287290        mfMachineRunning = true;
  • trunk/src/VBox/Main/Global.cpp

    r24000 r24301  
    189189        case MachineState_PoweredOff:           return "PoweredOff";
    190190        case MachineState_Saved:                return "Saved";
     191        case MachineState_Teleported:           return "Teleported";
    191192        case MachineState_Aborted:              return "Aborted";
    192193        case MachineState_Running:              return "Running";
     194        case MachineState_Teleporting:          return "Teleporting";
     195        case MachineState_LiveSnapshotting:     return "LiveSnapshotting";
    193196        case MachineState_Paused:               return "Paused";
    194197        case MachineState_Stuck:                return "GuruMeditation";
     
    197200        case MachineState_Saving:               return "Saving";
    198201        case MachineState_Restoring:            return "Restoring";
    199         case MachineState_TeleportingFrom:      return "TeleportingFrom";
     202        case MachineState_TeleportingPausedVM:  return "TeleportingPausedVM";
     203        case MachineState_TeleportingIn:        return "TeleportingIn";
    200204        case MachineState_RestoringSnapshot:    return "RestoringSnapshot";
    201205        case MachineState_DeletingSnapshot:     return "DeletingSnapshot";
  • trunk/src/VBox/Main/MachineDebuggerImpl.cpp

    r23392 r24301  
    789789        MachineState_T machineState;
    790790        mParent->COMGETTER(State) (&machineState);
    791         if (!Global::IsActive (machineState))
     791        switch (machineState)
     792        {
    792793            // queue the request
    793             return true;
     794            default:
     795                return true;
     796
     797            case MachineState_Running:
     798            case MachineState_Paused:
     799            case MachineState_Stuck:
     800            case MachineState_LiveSnapshotting:
     801            case MachineState_Teleporting:
     802                break;
     803        }
    794804    }
    795805    return false;
  • trunk/src/VBox/Main/MachineImpl.cpp

    r24295 r24301  
    20172017        &&  (   mType != IsSessionMachine
    20182018             || (   mData->mMachineState != MachineState_PoweredOff
    2019                  && mData->mMachineState != MachineState_Aborted)
     2019                 && mData->mMachineState != MachineState_Teleported
     2020                 && mData->mMachineState != MachineState_Aborted
     2021                )
    20202022            )
    20212023       )
     
    49084910        case MutableStateDep:
    49094911        {
    4910             if (mData->mRegistered &&
    4911                 (mType != IsSessionMachine ||
    4912                  mData->mMachineState > MachineState_Paused ||
    4913                  mData->mMachineState == MachineState_Saved))
     4912            if (   mData->mRegistered
     4913                && (   mType != IsSessionMachine  /** @todo This was just convered raw; Check if Running and Paused should actually be included here... (Live Migration) */
     4914                    || (   mData->mMachineState != MachineState_Paused
     4915                        && mData->mMachineState != MachineState_Running
     4916                        && mData->mMachineState != MachineState_Aborted
     4917                        && mData->mMachineState != MachineState_Teleported
     4918                        && mData->mMachineState != MachineState_PoweredOff
     4919                       )
     4920                   )
     4921               )
    49144922                return setError(VBOX_E_INVALID_VM_STATE,
    49154923                                tr("The machine is not mutable (state is %s)"),
     
    49194927        case MutableOrSavedStateDep:
    49204928        {
    4921             if (mData->mRegistered &&
    4922                 (mType != IsSessionMachine ||
    4923                  mData->mMachineState > MachineState_Paused))
     4929            if (   mData->mRegistered
     4930                && (   mType != IsSessionMachine  /** @todo This was just convered raw; Check if Running and Paused should actually be included here... (Live Migration) */
     4931                    || (   mData->mMachineState != MachineState_Paused
     4932                        && mData->mMachineState != MachineState_Running
     4933                        && mData->mMachineState != MachineState_Aborted
     4934                        && mData->mMachineState != MachineState_Teleported
     4935                        && mData->mMachineState != MachineState_Saved
     4936                        && mData->mMachineState != MachineState_PoweredOff
     4937                       )
     4938                   )
     4939               )
    49244940                return setError(VBOX_E_INVALID_VM_STATE,
    49254941                                tr("The machine is not mutable (state is %s)"),
     
    63536369        mData->m_pMachineConfigFile->timeLastStateChange = mData->mLastStateChange;
    63546370        mData->m_pMachineConfigFile->fAborted = (mData->mMachineState == MachineState_Aborted);
     6371/// @todo Live Migration:        mData->m_pMachineConfigFile->fTeleported = (mData->mMachineState == MachineState_Teleported);
    63556372
    63566373        mData->m_pMachineConfigFile->fTeleporterEnabled    = !!mUserData->mTeleporterEnabled;
     
    67616778
    67626779            mData->m_pMachineConfigFile->fAborted = (mData->mMachineState == MachineState_Aborted);
     6780//@todo live migration             mData->m_pMachineConfigFile->fTeleported = (mData->mMachineState == MachineState_Teleported);
    67636781        }
    67646782
     
    68196837
    68206838    /* must be in a protective state because we leave the lock below */
    6821     AssertReturn(    mData->mMachineState == MachineState_Saving
    6822                   || mData->mMachineState == MachineState_RestoringSnapshot
    6823                   || mData->mMachineState == MachineState_DeletingSnapshot,
    6824                  E_FAIL);
     6839    AssertReturn(   mData->mMachineState == MachineState_Saving
     6840                 || mData->mMachineState == MachineState_LiveSnapshotting
     6841                 || mData->mMachineState == MachineState_RestoringSnapshot
     6842                 || mData->mMachineState == MachineState_DeletingSnapshot
     6843                 , E_FAIL);
    68256844
    68266845    HRESULT rc = S_OK;
     
    70387057        MachineState_T oldState = mData->mMachineState;
    70397058        if (    oldState != MachineState_Saving
     7059             && oldState != MachineState_LiveSnapshotting
    70407060             && oldState != MachineState_RestoringSnapshot
    70417061             && oldState != MachineState_DeletingSnapshot
     
    86628682    AutoWriteLock alock(this);
    86638683
    8664     AssertReturn(mData->mMachineState == MachineState_PoweredOff ||
    8665                   mData->mMachineState == MachineState_Aborted,
    8666                   E_FAIL);
     8684    AssertReturn(   mData->mMachineState == MachineState_PoweredOff
     8685                 || mData->mMachineState == MachineState_Teleported
     8686                 || mData->mMachineState == MachineState_Aborted
     8687                 , E_FAIL); /** @todo setError. */
    86678688
    86688689    Utf8Str stateFilePathFull = aSavedStateFile;
     
    91639184        case MachineState_Starting:
    91649185        case MachineState_Restoring:
    9165         case MachineState_TeleportingFrom:
     9186        case MachineState_TeleportingIn:
    91669187        case MachineState_Paused:
    91679188        case MachineState_Running:
     9189        /** @todo Live Migration: snapshoting & teleporting. Need to fend things of
     9190         *        elsewhere... */
    91689191            return mUSBController->hasMatchingFilter (aDevice, aMaskedIfs);
    91699192        default: break;
     
    93199342    AssertReturn(   mData->mMachineState == MachineState_Starting
    93209343                 || mData->mMachineState == MachineState_Restoring
    9321                  || mData->mMachineState == MachineState_TeleportingFrom, E_FAIL);
     9344                 || mData->mMachineState == MachineState_TeleportingIn, E_FAIL);
    93229345
    93239346    typedef std::list <ComPtr<IMedium> > MediaList;
     
    94959518    if (   (   oldMachineState == MachineState_Saved
    94969519            && aMachineState   == MachineState_Restoring)
    9497         || (   oldMachineState == MachineState_PoweredOff
    9498             && aMachineState   == MachineState_TeleportingFrom)
    9499         || (   oldMachineState <  MachineState_Running /* any other OFF state */
    9500             && aMachineState   == MachineState_Starting)
     9520        || (   (   oldMachineState == MachineState_PoweredOff
     9521                || oldMachineState == MachineState_Teleported
     9522                || oldMachineState == MachineState_Aborted
     9523               )
     9524            && (   aMachineState   == MachineState_TeleportingIn
     9525                || aMachineState   == MachineState_Starting
     9526               )
     9527           )
    95019528       )
    95029529    {
     
    95089535        /// change anything when in the Starting/Restoring state
    95099536    }
    9510     else if (   oldMachineState >= MachineState_Running
    9511              && oldMachineState != MachineState_RestoringSnapshot
    9512              && oldMachineState != MachineState_DeletingSnapshot
    9513              && oldMachineState != MachineState_SettingUp
    9514              && aMachineState < MachineState_Running
     9537    else if (   (   oldMachineState == MachineState_Running
     9538                 || oldMachineState == MachineState_Paused
     9539                 || oldMachineState == MachineState_Teleporting
     9540                 || oldMachineState == MachineState_LiveSnapshotting
     9541                 || oldMachineState == MachineState_Stuck
     9542                 || oldMachineState == MachineState_Starting
     9543                 || oldMachineState == MachineState_Stopping
     9544                 || oldMachineState == MachineState_Saving
     9545                 || oldMachineState == MachineState_Restoring
     9546                 || oldMachineState == MachineState_TeleportingPausedVM
     9547                 || oldMachineState == MachineState_TeleportingIn
     9548                 )
     9549             && (   aMachineState == MachineState_PoweredOff
     9550                 || aMachineState == MachineState_Saved
     9551                 || aMachineState == MachineState_Teleported
     9552                 || aMachineState == MachineState_Aborted
     9553                )
    95159554             /* ignore PoweredOff->Saving->PoweredOff transition when taking a
    95169555              * snapshot */
    95179556             && (   mSnapshotData.mSnapshot.isNull()
    9518                  || mSnapshotData.mLastState >= MachineState_Running)
     9557                 || mSnapshotData.mLastState >= MachineState_Running /** @todo Live Migration: clean up (lazy bird) */
     9558                )
    95199559            )
    95209560    {
     
    95439583    else if (   oldMachineState == MachineState_Saved
    95449584             && (   aMachineState == MachineState_PoweredOff
    9545                  || aMachineState == MachineState_Aborted)
     9585                 || aMachineState == MachineState_Aborted
     9586                 || aMachineState == MachineState_Teleported
     9587                )
    95469588            )
    95479589    {
     
    95699611    if (   aMachineState == MachineState_Starting
    95709612        || aMachineState == MachineState_Restoring
    9571         || aMachineState == MachineState_TeleportingFrom
     9613        || aMachineState == MachineState_TeleportingIn
    95729614       )
    95739615    {
     
    95969638    mPeer->setMachineState (aMachineState);
    95979639
    9598     if (aMachineState == MachineState_PoweredOff ||
    9599         aMachineState == MachineState_Aborted ||
    9600         aMachineState == MachineState_Saved)
     9640    if (   aMachineState == MachineState_PoweredOff
     9641        || aMachineState == MachineState_Teleported
     9642        || aMachineState == MachineState_Aborted
     9643        || aMachineState == MachineState_Saved)
    96019644    {
    96029645        /* the machine has stopped execution
     
    96059648    }
    96069649
    9607     if ((oldMachineState == MachineState_PoweredOff ||
    9608          oldMachineState == MachineState_Aborted) &&
    9609         aMachineState == MachineState_Saved)
     9650    if (   (   oldMachineState == MachineState_PoweredOff
     9651            || oldMachineState == MachineState_Aborted
     9652            || oldMachineState == MachineState_Teleported
     9653           )
     9654        && aMachineState == MachineState_Saved)
    96109655    {
    96119656        /* the saved state file was adopted */
     
    96169661    rc = saveStateSettings (stsFlags);
    96179662
    9618     if ((oldMachineState != MachineState_PoweredOff &&
    9619          oldMachineState != MachineState_Aborted) &&
    9620         (aMachineState == MachineState_PoweredOff ||
    9621          aMachineState == MachineState_Aborted))
     9663    if (   (   oldMachineState != MachineState_PoweredOff
     9664            && oldMachineState != MachineState_Aborted
     9665            && oldMachineState != MachineState_Teleported
     9666           )
     9667        && (   aMachineState == MachineState_PoweredOff
     9668            || aMachineState == MachineState_Aborted
     9669            || aMachineState == MachineState_Teleported
     9670           )
     9671       )
    96229672    {
    96239673        /* we've been shut down for any reason */
  • trunk/src/VBox/Main/SnapshotImpl.cpp

    r24299 r24301  
    12721272        mMediaData.backup();
    12731273
    1274         /* set the state to Saving (this is expected by Console::TakeSnapshot()) */
    1275         setMachineState(MachineState_Saving);
     1274        /* Console::fntTakeSnapshotWorker and friends expects this. */
     1275        if (mSnapshotData.mLastState == MachineState_Running)
     1276            setMachineState(MachineState_LiveSnapshotting);
     1277        else
     1278            setMachineState(MachineState_Saving); /** @todo Confusing! Saving is used for both online and offline snapshots. */
    12761279
    12771280        /* create new differencing hard disks and attach them to this machine */
     
    13511354    AutoWriteLock alock(this);
    13521355
    1353     AssertReturn(!aSuccess ||
    1354                   (mData->mMachineState == MachineState_Saving &&
    1355                    mSnapshotData.mLastState != MachineState_Null &&
    1356                    !mSnapshotData.mSnapshot.isNull()),
    1357                   E_FAIL);
     1356    AssertReturn(   !aSuccess
     1357                 || (    (    mData->mMachineState == MachineState_Saving
     1358                          ||  mData->mMachineState == MachineState_LiveSnapshotting)
     1359                     &&  mSnapshotData.mLastState != MachineState_Null
     1360                     &&  !mSnapshotData.mSnapshot.isNull()
     1361                    )
     1362                 , E_FAIL);
    13581363
    13591364    /*
  • trunk/src/VBox/Main/cbinding/tstXPCOMCCall.c

    r23801 r24301  
    7676        case MachineState_PoweredOff:          return "PoweredOff";
    7777        case MachineState_Saved:               return "Saved";
     78        case MachineState_Teleported:          return "Teleported";
    7879        case MachineState_Aborted:             return "Aborted";
    7980        case MachineState_Running:             return "Running";
     81        case MachineState_Teleporting:         return "Teleporting";
     82        case MachineState_LiveSnapshotting:    return "LiveSnapshotting";
    8083        case MachineState_Paused:              return "Paused";
    8184        case MachineState_Stuck:               return "Stuck";
     
    8487        case MachineState_Saving:              return "Saving";
    8588        case MachineState_Restoring:           return "Restoring";
    86         case MachineState_TeleportingFrom:     return "TeleportingFrom";
     89        case MachineState_TeleportingPausedVM: return "TeleportingPausedVM";
     90        case MachineState_TeleportingIn:       return "TeleportingIn";
    8791        case MachineState_Discarding:          return "Discarding";
    8892        case MachineState_SettingUp:           return "SettingUp";
     
    130134    printf("OnStateChange: %s\n", GetStateName(state));
    131135    fflush(stdout);
    132     if (state == MachineState_PoweredOff)
     136    if (   state == MachineState_PoweredOff
     137        || state == MachineState_Saved
     138        || state == MachineState_Teleported
     139        || state == MachineState_Aborted
     140       )
    133141        g_fStop = 1;
    134142    return 0;
  • trunk/src/VBox/Main/idl/VirtualBox.xidl

    r24297 r24301  
    473473  <enum
    474474    name="MachineState"
    475     uuid="0f4cc50c-e1cc-4cde-ae7a-e6164bac5ba2"
     475    uuid="36518cf6-cdf0-4d0d-ad2a-5ee9c60c7494"
    476476  >
    477477    <desc>
     
    616616      </desc>
    617617    </const>
    618     <const name="Aborted"               value="3">
     618    <const name="Teleported"            value="3">
     619      <desc>
     620        The machine was teleported to a different host (or process) and then
     621        powered off.  Take care when powering it on again may corrupt resources
     622        it shares with the teleportation target (e.g. disk and network).
     623      </desc>
     624    </const>
     625    <const name="Aborted"               value="4">
    619626      <desc>
    620627        The process running the machine has terminated abnormally. This may
     
    623630      </desc>
    624631    </const>
    625     <const name="Running"               value="4">
     632    <const name="Running"               value="5">
    626633      <desc>
    627634        The machine is currently being executed.
     
    630637          comparisons in the old source code valid, this state must immediately
    631638          precede the Paused state.
     639          TODO: Lift this spectacularly wonderful restriction.
    632640        </note>
    633641      </desc>
    634642    </const>
    635     <const name="Paused"                value="5">
     643    <const name="Paused"                value="6">
    636644      <desc>
    637645        Execution of the machine has been paused.
     
    640648          comparisons in the old source code valid, this state must immediately
    641649          follow the Running state.
     650          TODO: Lift this spectacularly wonderful restriction.
    642651        </note>
    643652      </desc>
    644653    </const>
    645     <const name="Stuck"                 value="6">
     654    <const name="Stuck"                 value="7">
    646655      <desc>
    647656        Execution of the machine has reached the "Guru Meditation"
    648657        condition. This indicates a severe error in the hypervisor itself.
    649       </desc>
    650     </const>
    651     <const name="Starting"              value="7">
     658        <note internal="yes">
     659          bird: Why this uncool name? Could we rename it to "GuruMeditation" or
     660                "Guru", perhaps? Or are there some other VMM states that are
     661                intended to be lumped in here as well?
     662        </note>
     663      </desc>
     664    </const>
     665    <const name="Teleporting"           value="8">
     666      <desc>
     667        The machine is about to be teleported to a different host or process.
     668        It is possible to pause a machine in this state, but it will go to the
     669        <link to="MachineState::PausedTeleporting"/> state and it will not be
     670        possible to resume it again unless the teleportation fails.
     671      </desc>
     672    </const>
     673    <const name="LiveSnapshotting"      value="9">
     674      <desc>
     675        A live snapshot is being taken.  The machine is running normally, but
     676        some of the runtime configuration options are inaccessible.  Also, if
     677        paused while in this state it will transition to
     678        <link to="MachineState::Saving"/> and it will not be resume the
     679        execution until the snapshot operation has completed.
     680      </desc>
     681    </const>
     682    <const name="Starting"              value="10">
    652683      <desc>
    653684        Machine is being started after powering it on from a
     
    655686      </desc>
    656687    </const>
    657     <const name="Stopping"              value="8">
     688    <const name="Stopping"              value="11">
    658689      <desc>
    659690        Machine is being normally stopped powering it off, or after the guest OS
     
    661692      </desc>
    662693    </const>
    663     <const name="Saving"                value="9">
     694    <const name="Saving"                value="12">
    664695      <desc>
    665696        Machine is saving its execution state to a file, or an online
     
    667698      </desc>
    668699    </const>
    669     <const name="Restoring"             value="10">
     700    <const name="Restoring"             value="13">
    670701      <desc>
    671702        Execution state of the machine is being restored from a file
     
    673704      </desc>
    674705    </const>
    675     <const name="TeleportingFrom"       value="11">
    676       <desc>
    677         Teleporting the machine state from another host or process.
    678       </desc>
    679     </const>
    680     <const name="RestoringSnapshot"     value="12">
     706    <const name="TeleportingPausedVM"   value="14">
     707      <desc>
     708        The machine is being teleported to another host or process, but it is
     709        not running.  This is the paused variant of the
     710        <link to="MachineState::Teleporting"/> state.
     711      </desc>
     712    </const>
     713    <const name="TeleportingIn"         value="15">
     714      <desc>
     715        Teleporting the machine state in from another host or process.
     716      </desc>
     717    </const>
     718    <const name="RestoringSnapshot"     value="16">
    681719      <desc>
    682720        A machine snapshot is being restored; this typically does not take long.
    683721      </desc>
    684722    </const>
    685     <const name="DeletingSnapshot"      value="13">
     723    <const name="DeletingSnapshot"      value="17">
    686724      <desc>
    687725        A machine snapshot is being deleted; this can take a long time since this
     
    689727      </desc>
    690728    </const>
    691     <const name="SettingUp"             value="14">
     729    <const name="SettingUp"             value="18">
    692730      <desc>
    693731        Lengthy setup operation is in progress.
     
    695733    </const>
    696734
    697     <const name="FirstOnline" value="4" wsmap="suppress"> <!-- Running -->
     735    <const name="FirstOnline" value="5" wsmap="suppress"> <!-- Running -->
    698736      <desc>
    699737        Pseudo-state: first online state (for use in relational expressions).
    700738      </desc>
    701739    </const>
    702     <const name="LastOnline"  value="11" wsmap="suppress"> <!-- Restoring -->
     740    <const name="LastOnline"  value="13" wsmap="suppress"> <!-- TeleportingIn -->
    703741      <desc>
    704742        Pseudo-state: last online state (for use in relational expressions).
     
    706744    </const>
    707745
    708     <const name="FirstTransient" value="7" wsmap="suppress"> <!-- Starting -->
     746    <const name="FirstTransient" value="8" wsmap="suppress"> <!-- Teleporting -->
    709747      <desc>
    710748        Pseudo-state: first transient state (for use in relational expressions).
    711749      </desc>
    712750    </const>
    713     <const name="LastTransient"  value="14" wsmap="suppress"> <!-- SettingUp -->
     751    <const name="LastTransient"  value="18" wsmap="suppress"> <!-- SettingUp -->
    714752      <desc>
    715753        Pseudo-state: last transient state (for use in relational expressions).
  • trunk/src/VBox/Main/include/Global.h

    r23676 r24301  
    7373     * dedicated process) or not. Note that some online states are also
    7474     * transitional states (see #IsTransitional()).
     75     *
     76     * @remarks Saving may actually be an offline state according to the
     77     *          documentation (offline snapshot).
    7578     */
    7679    static bool IsOnline(MachineState_T aState)
    7780    {
     81#if 0
    7882        return aState >= MachineState_FirstOnline &&
    7983               aState <= MachineState_LastOnline;
     84#else
     85        switch (aState)
     86        {
     87            case MachineState_Running:
     88            case MachineState_Paused:
     89            case MachineState_Teleporting:
     90            case MachineState_LiveSnapshotting:
     91            case MachineState_Stuck:
     92            case MachineState_Starting:
     93            case MachineState_Stopping:
     94            case MachineState_Saving:
     95            case MachineState_Restoring:
     96            case MachineState_TeleportingPausedVM:
     97            case MachineState_TeleportingIn:
     98                return true;
     99            default:
     100                return false;
     101        }
     102#endif
    80103    }
    81104
     
    89112    static bool IsTransient(MachineState_T aState)
    90113    {
     114#if 0
    91115        return aState >= MachineState_FirstTransient &&
    92116               aState <= MachineState_LastTransient;
     117#else
     118        switch (aState)
     119        {
     120            case MachineState_Teleporting:
     121            case MachineState_LiveSnapshotting:
     122            case MachineState_Starting:
     123            case MachineState_Stopping:
     124            case MachineState_Saving:
     125            case MachineState_Restoring:
     126            case MachineState_TeleportingPausedVM:
     127            case MachineState_TeleportingIn:
     128            case MachineState_RestoringSnapshot:
     129            case MachineState_DeletingSnapshot:
     130            case MachineState_SettingUp:
     131                return true;
     132            default:
     133                return false;
     134        }
     135#endif
    93136    }
    94137
    95138    /**
    96      * Shortcut to <tt>IsOnline (aState) || IsTransient (aState)</tt>. When it
    97      * returns @false, the VM is turned off (no VM process) and not busy with
     139     * Shortcut to <tt>IsOnline(aState) || IsTransient(aState)</tt>. When it returns
     140     * @false, the VM is turned off (no VM process) and not busy with
    98141     * another exclusive operation.
    99142     */
     
    101144    {
    102145        return IsOnline(aState) || IsTransient(aState);
    103     }
    104 
    105     /**
    106      * Shortcut to <tt>IsOnline (aState) && !IsTransient (aState)</tt>. This is
    107      * a recommended way to detect if the VM emulation thread is in action
    108      * (either running, suspended, or stuck). When this method returns @false,
    109      * then either the VM is not online or the emulation thread is being started
    110      * or stopped, etc.
    111      */
    112     static bool IsActive(MachineState_T aState)
    113     {
    114         return IsOnline(aState) && !IsTransient(aState);
    115146    }
    116147
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