Changeset 24301 in vbox for trunk/src/VBox
- Timestamp:
- Nov 3, 2009 10:07:55 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 54298
- Location:
- trunk/src/VBox
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r24136 r24301 403 403 { 404 404 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"; 409 406 break; 410 407 case MachineState_Saved: … … 414 411 pszState = "aborted"; 415 412 break; 413 case MachineState_Teleported: 414 pszState = "teleported"; 415 break; 416 416 case MachineState_Running: 417 417 pszState = "running"; … … 419 419 case MachineState_Paused: 420 420 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"; 421 430 break; 422 431 case MachineState_Starting: … … 432 441 pszState = "restoring"; 433 442 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"; 439 455 break; 440 456 default: -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r24258 r24301 230 230 { 231 231 case MachineState_Running: 232 case MachineState_Teleporting: 233 case MachineState_LiveSnapshotting: 232 234 case MachineState_Paused: 235 case MachineState_TeleportingPausedVM: 233 236 rc = showVMInfo(a->virtualBox, 234 237 machines[i], -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r23998 r24301 463 463 464 464 if ( machineState == MachineState_Aborted 465 || machineState == MachineState_Teleported 465 466 || (machineState == MachineState_Saved && !m_fIgnorePowerOffEvents) 466 || (machineState == MachineState_PoweredOff && !m_fIgnorePowerOffEvents)) 467 || (machineState == MachineState_PoweredOff && !m_fIgnorePowerOffEvents) 468 ) 467 469 { 468 470 /* … … 472 474 event.user.type = SDL_USER_EVENT_TERMINATE; 473 475 event.user.code = machineState == MachineState_Aborted 474 475 476 ? VBOXSDL_TERM_ABEND 477 : VBOXSDL_TERM_NORMAL; 476 478 } 477 479 else … … 605 607 case MachineState_PoweredOff: return "PoweredOff"; 606 608 case MachineState_Saved: return "Saved"; 609 case MachineState_Teleported: return "Teleported"; 607 610 case MachineState_Aborted: return "Aborted"; 608 611 case MachineState_Running: return "Running"; 612 case MachineState_Teleporting: return "Teleporting"; 613 case MachineState_LiveSnapshotting: return "LiveSnapshotting"; 609 614 case MachineState_Paused: return "Paused"; 610 615 case MachineState_Stuck: return "GuruMeditation"; … … 613 618 case MachineState_Saving: return "Saving"; 614 619 case MachineState_Restoring: return "Restoring"; 615 case MachineState_TeleportingFrom: return "TeleportingFrom"; 620 case MachineState_TeleportingPausedVM: return "TeleportingPausedVM"; 621 case MachineState_TeleportingIn: return "TeleportingIn"; 616 622 case MachineState_RestoringSnapshot: return "RestoringSnapshot"; 617 623 case MachineState_DeletingSnapshot: return "DeletingSnapshot"; … … 2143 2149 && ( machineState == MachineState_Starting 2144 2150 || machineState == MachineState_Restoring 2145 || machineState == MachineState_TeleportingFrom) 2151 || machineState == MachineState_TeleportingIn 2152 ) 2146 2153 ) 2147 2154 { … … 2239 2246 && ( machineState == MachineState_Starting 2240 2247 || machineState == MachineState_Restoring 2241 || machineState == MachineState_TeleportingFrom) 2248 || machineState == MachineState_TeleportingIn 2249 ) 2242 2250 ); 2243 2251 … … 2774 2782 */ 2775 2783 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 ) 2777 2790 { 2778 2791 cbConsoleImpl->ignorePowerOffEvents(true); … … 4338 4351 " - Restoring..."); 4339 4352 } 4340 else if (machineState == MachineState_Teleporting From)4353 else if (machineState == MachineState_TeleportingIn) 4341 4354 { 4342 4355 ULONG cPercentNow; … … 4770 4783 MachineState_T machineState; 4771 4784 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) 4773 4789 gConsole->Pause(); 4774 4790 SetFullscreen(!gpFramebuffer[0]->getFullscreen()); 4775 if ( machineState == MachineState_Running)4791 if (fPauseIt) 4776 4792 gConsole->Resume(); 4777 4793 … … 4794 4810 MachineState_T machineState; 4795 4811 gMachine->COMGETTER(State)(&machineState); 4796 if (machineState == MachineState_Running) 4812 if ( machineState == MachineState_Running 4813 || machineState == MachineState_Teleporting 4814 || machineState == MachineState_LiveSnapshotting 4815 ) 4797 4816 { 4798 4817 if (gfGrabbed) -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxConsoleView.h
r23223 r24301 88 88 89 89 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 } 91 95 const QPixmap& pauseShot() const { return mPausedShot; } 92 96 … … 231 235 void setPointerShape (MousePointerChangeEvent *me); 232 236 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 } 234 243 235 244 static void dimImage (QImage &img); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r24132 r24301 3294 3294 { 3295 3295 case KMachineState_Paused: 3296 case KMachineState_TeleportingPausedVM: /** @todo Live Migration: Check out this */ 3296 3297 { 3297 3298 if (mode != VBoxDefs::TimerMode && mFrameBuf) … … 3328 3329 case KMachineState_Running: 3329 3330 { 3330 if (mLastState == KMachineState_Paused) 3331 if ( mLastState == KMachineState_Paused 3332 || mLastState == KMachineState_TeleportingPausedVM 3333 ) 3331 3334 { 3332 3335 if (mode != VBoxDefs::TimerMode && mFrameBuf) … … 4227 4230 (mLastState == KMachineState_Running || 4228 4231 mLastState == KMachineState_Paused || 4232 mLastState == KMachineState_Teleporting || 4233 mLastState == KMachineState_LiveSnapshotting || 4229 4234 mLastState == KMachineState_Restoring || 4230 mLastState == KMachineState_TeleportingFrom || 4235 mLastState == KMachineState_TeleportingPausedVM || 4236 mLastState == KMachineState_TeleportingIn || 4231 4237 mLastState == KMachineState_Saving)) 4232 4238 updateDockIcon(); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleWnd.cpp
r24168 r24301 1273 1273 } 1274 1274 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) 1317 1309 { 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) 1322 1328 { 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); 1325 1349 } 1326 else if (lastAction [0] == kPowerOff || !isACPIEnabled)1350 else 1327 1351 { 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); 1329 1355 dlg.mRbPowerOff->setChecked (true); 1330 dlg.mRbPowerOff->setFocus();1331 1356 } 1332 else /* The default is ACPI Shutdown */ 1357 1358 bool wasShutdown = false; 1359 1360 if (dlg.exec() == QDialog::Accepted) 1333 1361 { 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 } 1336 1466 } 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(); 1338 1480 } 1339 1481 else 1340 1482 { 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) 1358 1484 { 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); 1454 1488 } 1455 1489 } 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; 1475 1491 } 1476 1492 … … 1773 1789 /* Check if we missed a really quick termination after successful 1774 1790 * 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 ) 1776 1796 { 1777 1797 close(); … … 2475 2495 if (mConsole && mMachineState != aState) 2476 2496 { 2477 if (aState >= KMachineState_Running)2478 { 2479 switch (aState)2497 switch (aState) 2498 { 2499 case KMachineState_Stuck: 2480 2500 { 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 } 2498 2521 #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; 2509 2530 } 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; 2513 2540 2514 2541 /* Enable/Disable actions that are not managed by updateAppearanceOf() */ 2515 2542 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 ); 2517 2547 mRunningOrPausedActions->setEnabled (isRunningOrPaused); 2518 2548 … … 2524 2554 PauseAction | DisableMouseIntegrAction); 2525 2555 2526 if (aState < KMachineState_Running) 2556 if ( aState == KMachineState_PoweredOff 2557 || aState == KMachineState_Saved 2558 || aState == KMachineState_Teleported 2559 || aState == KMachineState_Aborted 2560 ) 2527 2561 { 2528 2562 /* VM has been powered off or saved or aborted, no matter … … 2773 2807 CConsole console = mConsole->console(); 2774 2808 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; 2776 2814 2777 2815 if (aElement & Caption) … … 2896 2934 mNetLed->setState (count > 0 ? KDeviceActivity_Idle : KDeviceActivity_Null); 2897 2935 2898 mDevicesNetworkDialogAction->setEnabled (is RunningOrPaused && count > 0);2899 mDevicesNetworkMenu->setEnabled (is RunningOrPaused && count > 0);2936 mDevicesNetworkDialogAction->setEnabled (isStrictRunningOrPaused && count > 0); 2937 mDevicesNetworkMenu->setEnabled (isStrictRunningOrPaused && count > 0); 2900 2938 2901 2939 QString tip = tr ("<p style='white-space:pre'><nobr>Indicates the activity of the " … … 2931 2969 if (!usbctl.isNull() && usbctl.GetEnabled()) 2932 2970 { 2933 mDevicesUSBMenu->setEnabled (is RunningOrPaused);2971 mDevicesUSBMenu->setEnabled (isStrictRunningOrPaused); 2934 2972 2935 2973 CUSBDeviceVector devsvec = console.GetUSBDevices(); … … 3069 3107 mVmDisableMouseIntegrAction->setStatusTip (tr ("Enable temporarily disabled host mouse pointer integration")); 3070 3108 } 3071 if (mMachineState == KMachineState_Running) 3109 if ( mMachineState == KMachineState_Running 3110 || mMachineState == KMachineState_Teleporting 3111 || mMachineState == KMachineState_LiveSnapshotting 3112 ) 3072 3113 mVmDisableMouseIntegrAction->setEnabled (mConsole->isMouseAbsolute()); 3073 3114 else -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r24252 r24301 2634 2634 mMachineStates [KMachineState_PoweredOff] = tr ("Powered Off", "MachineState"); 2635 2635 mMachineStates [KMachineState_Saved] = tr ("Saved", "MachineState"); 2636 mMachineStates [KMachineState_Teleported] = tr ("Teleported", "MachineState"); 2636 2637 mMachineStates [KMachineState_Aborted] = tr ("Aborted", "MachineState"); 2637 2638 mMachineStates [KMachineState_Running] = tr ("Running", "MachineState"); 2638 2639 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"); 2640 2643 mMachineStates [KMachineState_Starting] = tr ("Starting", "MachineState"); 2641 2644 mMachineStates [KMachineState_Stopping] = tr ("Stopping", "MachineState"); 2642 2645 mMachineStates [KMachineState_Saving] = tr ("Saving", "MachineState"); 2643 2646 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"); 2645 2649 mMachineStates [KMachineState_RestoringSnapshot] = tr ("Restoring Snapshot", "MachineState"); 2646 2650 mMachineStates [KMachineState_DeletingSnapshot] = tr ("Deleting Snapshot", "MachineState"); … … 4606 4610 {KMachineState_Saved, ":/state_saved_16px.png"}, 4607 4611 {KMachineState_Aborted, ":/state_aborted_16px.png"}, 4612 {KMachineState_Teleported, ":/state_saved_16px.png"}, /** @todo Live Migration: New icon? (not really important) */ 4608 4613 {KMachineState_Running, ":/state_running_16px.png"}, 4609 4614 {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) */ 4610 4617 {KMachineState_Stuck, ":/state_stuck_16px.png"}, 4611 4618 {KMachineState_Starting, ":/state_running_16px.png"}, /// @todo (dmik) separate icon? … … 4613 4620 {KMachineState_Saving, ":/state_saving_16px.png"}, 4614 4621 {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) */ 4616 4624 {KMachineState_RestoringSnapshot, ":/state_discarding_16px.png"}, 4617 4625 {KMachineState_DeletingSnapshot, ":/state_discarding_16px.png"}, … … 4629 4637 mVMStateColors.insert (KMachineState_Saved, new QColor (Qt::yellow)); 4630 4638 mVMStateColors.insert (KMachineState_Aborted, new QColor (Qt::darkRed)); 4639 mVMStateColors.insert (KMachineState_Teleported, new QColor (Qt::red)); 4631 4640 mVMStateColors.insert (KMachineState_Running, new QColor (Qt::green)); 4632 4641 mVMStateColors.insert (KMachineState_Paused, new QColor (Qt::darkGreen)); 4633 4642 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)); 4634 4645 mVMStateColors.insert (KMachineState_Starting, new QColor (Qt::green)); 4635 4646 mVMStateColors.insert (KMachineState_Stopping, new QColor (Qt::green)); 4636 4647 mVMStateColors.insert (KMachineState_Saving, new QColor (Qt::green)); 4637 4648 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)); 4639 4651 mVMStateColors.insert (KMachineState_RestoringSnapshot, new QColor (Qt::green)); 4640 4652 mVMStateColors.insert (KMachineState_DeletingSnapshot, new QColor (Qt::green)); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxMediaManagerDlg.cpp
r24147 r24301 1437 1437 case KMachineState_Aborted: 1438 1438 case KMachineState_Saved: 1439 case KMachineState_Teleported: 1439 1440 case KMachineState_Starting: 1440 1441 case KMachineState_Restoring: 1441 case KMachineState_Teleporting From:1442 case KMachineState_TeleportingIn: 1442 1443 { 1443 1444 refreshAll(); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp
r24263 r24301 980 980 } 981 981 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())); 984 987 985 988 QString id = item->id(); … … 1455 1458 mVmDeleteAction->setEnabled (modifyEnabled); 1456 1459 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 ); 1459 1466 1460 1467 /* 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 1462 1481 { 1463 1482 mVmStartAction->setText (tr ("S&how")); … … 1467 1486 mVmStartAction->setEnabled (item->canSwitchTo()); 1468 1487 } 1469 else1470 {1471 mVmStartAction->setText (tr ("S&tart"));1472 mVmStartAction->setStatusTip (1473 tr ("Start the selected virtual machine"));1474 1475 mVmStartAction->setEnabled (!running);1476 }1477 1488 1478 1489 /* change the Pause/Resume button text accordingly */ 1479 if (state == KMachineState_Paused) 1490 if ( state == KMachineState_Paused 1491 || state == KMachineState_TeleportingPausedVM /*?*/ 1492 ) 1480 1493 { 1481 1494 mVmPauseAction->setText (tr ("R&esume")); … … 1865 1878 1866 1879 /* 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 1868 1892 { 1869 1893 mVmStartAction->setText (VBoxVMListView::tr ("S&how")); … … 1872 1896 mVmStartAction->setEnabled (pItem->canSwitchTo()); 1873 1897 } 1874 else1875 {1876 mVmStartAction->setText (VBoxVMListView::tr ("S&tart"));1877 mVmStartAction->setStatusTip (1878 VBoxVMListView::tr ("Start the selected virtual machine"));1879 mVmStartAction->setEnabled (!running);1880 }1881 1898 1882 1899 /* 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 ) 1887 1910 { 1888 1911 mVmPauseAction->setText (VBoxVMListView::tr ("R&esume")); -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxVMListView.cpp
r20820 r24301 213 213 mSnapshotCount = mMachine.GetSnapshotCount(); 214 214 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 216 228 { 217 229 mPid = mMachine.GetSessionPid(); … … 219 231 #if 0 220 232 mWinId = FindWindowIdFromPid (mPid); 221 #endif222 }223 else224 {225 mPid = (ULONG) ~0;226 /// @todo Remove. See @c todo in #switchTo() below.227 #if 0228 mWinId = (WId) ~0;229 233 #endif 230 234 } -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VBoxDockIconPreview.cpp
r23801 r24301 117 117 { 118 118 CGImageRef img; 119 if (mMainWnd->machineState() == KMachineState_Paused) 119 if ( mMainWnd->machineState() == KMachineState_Paused 120 || mMainWnd->machineState() == KMachineState_TeleportingPausedVM) 120 121 img = mStatePaused; 121 122 else if ( mMainWnd->machineState() == KMachineState_Restoring 122 || mMainWnd->machineState() == KMachineState_Teleporting From)123 || mMainWnd->machineState() == KMachineState_TeleportingIn) 123 124 img = mStateRestoring; 124 else if (mMainWnd->machineState() == KMachineState_Saving) 125 else if ( mMainWnd->machineState() == KMachineState_Saving 126 || mMainWnd->machineState() == KMachineState_LiveSnapshotting) 125 127 img = mStateSaving; 126 128 else -
trunk/src/VBox/Main/ConsoleImpl.cpp
r24255 r24301 1504 1504 AutoWriteLock alock(this); 1505 1505 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 1508 1516 /* 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: 1510 1522 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)); 1519 1525 } 1520 1526 … … 1564 1570 AutoWriteLock alock(this); 1565 1571 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 ) 1567 1577 return setError(VBOX_E_INVALID_VM_STATE, 1568 1578 tr("Invalid machine state: %s"), … … 1597 1607 AutoWriteLock alock(this); 1598 1608 1599 if (mMachineState != MachineState_Running) 1609 if ( mMachineState != MachineState_Running 1610 && mMachineState != MachineState_Teleporting 1611 && mMachineState != MachineState_LiveSnapshotting 1612 ) 1600 1613 return setError(VBOX_E_INVALID_VM_STATE, 1601 1614 tr("Invalid machine state: %s"), … … 1671 1684 AutoWriteLock alock(this); 1672 1685 1673 if (mMachineState != MachineState_Running) 1686 if ( mMachineState != MachineState_Running 1687 && mMachineState != MachineState_Teleporting 1688 && mMachineState != MachineState_LiveSnapshotting 1689 ) 1674 1690 return setError(VBOX_E_INVALID_VM_STATE, 1675 1691 tr("Invalid machine state: %s"), … … 1712 1728 AutoWriteLock alock(this); 1713 1729 1714 if (mMachineState != MachineState_Running) 1730 if ( mMachineState != MachineState_Running 1731 && mMachineState != MachineState_Teleporting 1732 && mMachineState != MachineState_LiveSnapshotting 1733 ) 1715 1734 return setError(VBOX_E_INVALID_VM_STATE, 1716 1735 tr("Invalid machine state: %s"), … … 1756 1775 AutoWriteLock alock(this); 1757 1776 1758 if (mMachineState != MachineState_Running) 1777 if ( mMachineState != MachineState_Running 1778 && mMachineState != MachineState_Teleporting 1779 && mMachineState != MachineState_LiveSnapshotting 1780 ) 1759 1781 return setError(VBOX_E_INVALID_VM_STATE, 1760 1782 tr("Invalid machine state %s when checking if the guest entered the ACPI mode)"), … … 1791 1813 AutoWriteLock alock(this); 1792 1814 1793 if (mMachineState != MachineState_Running) 1815 if (mMachineState != MachineState_Running) /** @todo Live Migration: ??? */ 1794 1816 return setError(VBOX_E_INVALID_VM_STATE, 1795 1817 tr("Invalid machine state: %s)"), … … 1832 1854 AutoWriteLock alock(this); 1833 1855 1834 if ( mMachineState != MachineState_Running &&1835 mMachineState != MachineState_Paused)1856 if ( mMachineState != MachineState_Running 1857 && mMachineState != MachineState_Paused) 1836 1858 { 1837 1859 return setError(VBOX_E_INVALID_VM_STATE, … … 1970 1992 AutoWriteLock alock(this); 1971 1993 1972 if (mMachineState != MachineState_PoweredOff && 1973 mMachineState != MachineState_Aborted) 1994 if ( mMachineState != MachineState_PoweredOff 1995 && mMachineState != MachineState_Teleported 1996 && mMachineState != MachineState_Aborted 1997 ) 1974 1998 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)"), 1976 2000 Global::stringifyMachineState(mMachineState)); 1977 2001 … … 2109 2133 AutoWriteLock alock(this); 2110 2134 2111 if ( mMachineState != MachineState_Running &&2112 mMachineState != MachineState_Paused)2135 if ( mMachineState != MachineState_Running 2136 && mMachineState != MachineState_Paused) 2113 2137 return setError(VBOX_E_INVALID_VM_STATE, 2114 2138 tr("Cannot attach a USB device to the machine which is not running or paused (machine state: %s)"), … … 2288 2312 return setError(VBOX_E_INVALID_VM_STATE, 2289 2313 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 ) 2291 2320 return setError(VBOX_E_INVALID_VM_STATE, 2292 2321 tr("Cannot create a transient shared folder on the machine while it is changing the state (machine state: %s)"), … … 2350 2379 return setError(VBOX_E_INVALID_VM_STATE, 2351 2380 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 ) 2353 2387 return setError(VBOX_E_INVALID_VM_STATE, 2354 2388 tr("Cannot remove a transient shared folder from the machine while it is changing the state (machine state: %s)"), … … 3514 3548 HRESULT rc = S_OK; 3515 3549 3516 if (mVRDPServer && mMachineState == MachineState_Running) 3550 if ( mVRDPServer 3551 && ( mMachineState == MachineState_Running 3552 || mMachineState == MachineState_Teleporting 3553 || mMachineState == MachineState_LiveSnapshotting 3554 ) 3555 ) 3517 3556 { 3518 3557 BOOL vrdpEnabled = FALSE; … … 4008 4047 AutoWriteLock alock(this); 4009 4048 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); 4014 4054 4015 4055 return setMachineStateLocally(aMachineState); … … 4712 4752 setMachineState(MachineState_Restoring); 4713 4753 else if (fTeleporterEnabled) 4714 setMachineState(MachineState_Teleporting From);4754 setMachineState(MachineState_TeleportingIn); 4715 4755 else 4716 4756 setMachineState(MachineState_Starting); … … 4772 4812 Assert(mpVM != NULL); 4773 4813 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))); 4783 4826 4784 4827 LogRel(("Console::powerDown(): A request to power off the VM has been issued (mMachineState=%d, InUninit=%d)\n", … … 4793 4836 && ( mMachineState == MachineState_Starting 4794 4837 || mMachineState == MachineState_Restoring 4795 || mMachineState == MachineState_Teleporting From)4838 || mMachineState == MachineState_TeleportingIn) 4796 4839 ) 4797 4840 mVMPoweredOff = true; … … 4801 4844 * set the state to Saved on VMSTATE_TERMINATED. In terms of protecting from 4802 4845 * 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. */ 4804 4847 if ( mMachineState != MachineState_Saving 4805 4848 && mMachineState != MachineState_Restoring 4806 && mMachineState != MachineState_TeleportingFrom4807 4849 && 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? */ 4808 4854 ) 4809 4855 setMachineState(MachineState_Stopping); … … 4862 4908 uint32_t fFlags; 4863 4909 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 4866 4913 ) 4867 4914 { … … 5490 5537 && that->mMachineState != MachineState_Saving 5491 5538 && 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 5493 5543 ) 5494 5544 { … … 5585 5635 that->setMachineState(MachineState_Saved); 5586 5636 break; 5587 case MachineState_Teleporting From:5637 case MachineState_TeleportingIn: 5588 5638 /* Teleportation failed or was cancelled. Back to powered off. */ 5589 5639 that->setMachineState(MachineState_PoweredOff); 5590 5640 break; 5641 case MachineState_Teleporting: 5642 case MachineState_TeleportingPausedVM: 5643 /* Successfully teleported the VM. */ 5644 that->setMachineState(MachineState_Teleported); 5645 break; 5591 5646 } 5592 5647 break; … … 5595 5650 case VMSTATE_SUSPENDED: 5596 5651 { 5597 /** @todo state/live VMSTATE_SUSPENDING_LS. */5652 /** @todo Live Migration: state/live VMSTATE_SUSPENDING_LS. */ 5598 5653 if (aOldState == VMSTATE_SUSPENDING) 5599 5654 { … … 5626 5681 && aOldState == VMSTATE_POWERING_ON) 5627 5682 || ( ( that->mMachineState == MachineState_Restoring 5628 || that->mMachineState == MachineState_Teleporting From5683 || that->mMachineState == MachineState_TeleportingIn 5629 5684 || that->mMachineState == MachineState_Paused) 5630 5685 && aOldState == VMSTATE_RESUMING)); … … 6821 6876 if ( console->mMachineState == MachineState_Starting 6822 6877 || console->mMachineState == MachineState_Restoring 6823 || console->mMachineState == MachineState_Teleporting From6878 || console->mMachineState == MachineState_TeleportingIn 6824 6879 ) 6825 6880 { -
trunk/src/VBox/Main/ConsoleImplTeleporter.cpp
r23904 r24301 684 684 */ 685 685 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!! */ 688 691 VMSTATE enmVMState = VMR3GetState(pState->mpVM); 689 692 if (SUCCEEDED(hrc)) 690 693 { 691 694 if (enmVMState == VMSTATE_SUSPENDED) 692 pState->mptrConsole->setMachineState(MachineState_ Paused);695 pState->mptrConsole->setMachineState(MachineState_TeleportingPausedVM); 693 696 } 694 697 else … … 779 782 default: 780 783 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)"), 782 785 Global::stringifyMachineState(mMachineState)); 783 786 } … … 810 813 if (RT_SUCCESS(vrc)) 811 814 { 812 hrc = setMachineState(MachineState_Saving); 815 if (mMachineState == MachineState_Running) 816 hrc = setMachineState(MachineState_Teleporting); 817 else 818 hrc = setMachineState(MachineState_TeleportingPausedVM); 813 819 if (SUCCEEDED(hrc)) 814 820 ptrProgress.queryInterfaceTo(aProgress); -
trunk/src/VBox/Main/DisplayImpl.cpp
r24265 r24301 281 281 STDMETHODIMP Display::OnStateChange(MachineState_T machineState) 282 282 { 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")); 286 289 287 290 mfMachineRunning = true; -
trunk/src/VBox/Main/Global.cpp
r24000 r24301 189 189 case MachineState_PoweredOff: return "PoweredOff"; 190 190 case MachineState_Saved: return "Saved"; 191 case MachineState_Teleported: return "Teleported"; 191 192 case MachineState_Aborted: return "Aborted"; 192 193 case MachineState_Running: return "Running"; 194 case MachineState_Teleporting: return "Teleporting"; 195 case MachineState_LiveSnapshotting: return "LiveSnapshotting"; 193 196 case MachineState_Paused: return "Paused"; 194 197 case MachineState_Stuck: return "GuruMeditation"; … … 197 200 case MachineState_Saving: return "Saving"; 198 201 case MachineState_Restoring: return "Restoring"; 199 case MachineState_TeleportingFrom: return "TeleportingFrom"; 202 case MachineState_TeleportingPausedVM: return "TeleportingPausedVM"; 203 case MachineState_TeleportingIn: return "TeleportingIn"; 200 204 case MachineState_RestoringSnapshot: return "RestoringSnapshot"; 201 205 case MachineState_DeletingSnapshot: return "DeletingSnapshot"; -
trunk/src/VBox/Main/MachineDebuggerImpl.cpp
r23392 r24301 789 789 MachineState_T machineState; 790 790 mParent->COMGETTER(State) (&machineState); 791 if (!Global::IsActive (machineState)) 791 switch (machineState) 792 { 792 793 // 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 } 794 804 } 795 805 return false; -
trunk/src/VBox/Main/MachineImpl.cpp
r24295 r24301 2017 2017 && ( mType != IsSessionMachine 2018 2018 || ( mData->mMachineState != MachineState_PoweredOff 2019 && mData->mMachineState != MachineState_Aborted) 2019 && mData->mMachineState != MachineState_Teleported 2020 && mData->mMachineState != MachineState_Aborted 2021 ) 2020 2022 ) 2021 2023 ) … … 4908 4910 case MutableStateDep: 4909 4911 { 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 ) 4914 4922 return setError(VBOX_E_INVALID_VM_STATE, 4915 4923 tr("The machine is not mutable (state is %s)"), … … 4919 4927 case MutableOrSavedStateDep: 4920 4928 { 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 ) 4924 4940 return setError(VBOX_E_INVALID_VM_STATE, 4925 4941 tr("The machine is not mutable (state is %s)"), … … 6353 6369 mData->m_pMachineConfigFile->timeLastStateChange = mData->mLastStateChange; 6354 6370 mData->m_pMachineConfigFile->fAborted = (mData->mMachineState == MachineState_Aborted); 6371 /// @todo Live Migration: mData->m_pMachineConfigFile->fTeleported = (mData->mMachineState == MachineState_Teleported); 6355 6372 6356 6373 mData->m_pMachineConfigFile->fTeleporterEnabled = !!mUserData->mTeleporterEnabled; … … 6761 6778 6762 6779 mData->m_pMachineConfigFile->fAborted = (mData->mMachineState == MachineState_Aborted); 6780 //@todo live migration mData->m_pMachineConfigFile->fTeleported = (mData->mMachineState == MachineState_Teleported); 6763 6781 } 6764 6782 … … 6819 6837 6820 6838 /* 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); 6825 6844 6826 6845 HRESULT rc = S_OK; … … 7038 7057 MachineState_T oldState = mData->mMachineState; 7039 7058 if ( oldState != MachineState_Saving 7059 && oldState != MachineState_LiveSnapshotting 7040 7060 && oldState != MachineState_RestoringSnapshot 7041 7061 && oldState != MachineState_DeletingSnapshot … … 8662 8682 AutoWriteLock alock(this); 8663 8683 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. */ 8667 8688 8668 8689 Utf8Str stateFilePathFull = aSavedStateFile; … … 9163 9184 case MachineState_Starting: 9164 9185 case MachineState_Restoring: 9165 case MachineState_Teleporting From:9186 case MachineState_TeleportingIn: 9166 9187 case MachineState_Paused: 9167 9188 case MachineState_Running: 9189 /** @todo Live Migration: snapshoting & teleporting. Need to fend things of 9190 * elsewhere... */ 9168 9191 return mUSBController->hasMatchingFilter (aDevice, aMaskedIfs); 9169 9192 default: break; … … 9319 9342 AssertReturn( mData->mMachineState == MachineState_Starting 9320 9343 || mData->mMachineState == MachineState_Restoring 9321 || mData->mMachineState == MachineState_Teleporting From, E_FAIL);9344 || mData->mMachineState == MachineState_TeleportingIn, E_FAIL); 9322 9345 9323 9346 typedef std::list <ComPtr<IMedium> > MediaList; … … 9495 9518 if ( ( oldMachineState == MachineState_Saved 9496 9519 && 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 ) 9501 9528 ) 9502 9529 { … … 9508 9535 /// change anything when in the Starting/Restoring state 9509 9536 } 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 ) 9515 9554 /* ignore PoweredOff->Saving->PoweredOff transition when taking a 9516 9555 * snapshot */ 9517 9556 && ( mSnapshotData.mSnapshot.isNull() 9518 || mSnapshotData.mLastState >= MachineState_Running) 9557 || mSnapshotData.mLastState >= MachineState_Running /** @todo Live Migration: clean up (lazy bird) */ 9558 ) 9519 9559 ) 9520 9560 { … … 9543 9583 else if ( oldMachineState == MachineState_Saved 9544 9584 && ( aMachineState == MachineState_PoweredOff 9545 || aMachineState == MachineState_Aborted) 9585 || aMachineState == MachineState_Aborted 9586 || aMachineState == MachineState_Teleported 9587 ) 9546 9588 ) 9547 9589 { … … 9569 9611 if ( aMachineState == MachineState_Starting 9570 9612 || aMachineState == MachineState_Restoring 9571 || aMachineState == MachineState_Teleporting From9613 || aMachineState == MachineState_TeleportingIn 9572 9614 ) 9573 9615 { … … 9596 9638 mPeer->setMachineState (aMachineState); 9597 9639 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) 9601 9644 { 9602 9645 /* the machine has stopped execution … … 9605 9648 } 9606 9649 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) 9610 9655 { 9611 9656 /* the saved state file was adopted */ … … 9616 9661 rc = saveStateSettings (stsFlags); 9617 9662 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 ) 9622 9672 { 9623 9673 /* we've been shut down for any reason */ -
trunk/src/VBox/Main/SnapshotImpl.cpp
r24299 r24301 1272 1272 mMediaData.backup(); 1273 1273 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. */ 1276 1279 1277 1280 /* create new differencing hard disks and attach them to this machine */ … … 1351 1354 AutoWriteLock alock(this); 1352 1355 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); 1358 1363 1359 1364 /* -
trunk/src/VBox/Main/cbinding/tstXPCOMCCall.c
r23801 r24301 76 76 case MachineState_PoweredOff: return "PoweredOff"; 77 77 case MachineState_Saved: return "Saved"; 78 case MachineState_Teleported: return "Teleported"; 78 79 case MachineState_Aborted: return "Aborted"; 79 80 case MachineState_Running: return "Running"; 81 case MachineState_Teleporting: return "Teleporting"; 82 case MachineState_LiveSnapshotting: return "LiveSnapshotting"; 80 83 case MachineState_Paused: return "Paused"; 81 84 case MachineState_Stuck: return "Stuck"; … … 84 87 case MachineState_Saving: return "Saving"; 85 88 case MachineState_Restoring: return "Restoring"; 86 case MachineState_TeleportingFrom: return "TeleportingFrom"; 89 case MachineState_TeleportingPausedVM: return "TeleportingPausedVM"; 90 case MachineState_TeleportingIn: return "TeleportingIn"; 87 91 case MachineState_Discarding: return "Discarding"; 88 92 case MachineState_SettingUp: return "SettingUp"; … … 130 134 printf("OnStateChange: %s\n", GetStateName(state)); 131 135 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 ) 133 141 g_fStop = 1; 134 142 return 0; -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r24297 r24301 473 473 <enum 474 474 name="MachineState" 475 uuid=" 0f4cc50c-e1cc-4cde-ae7a-e6164bac5ba2"475 uuid="36518cf6-cdf0-4d0d-ad2a-5ee9c60c7494" 476 476 > 477 477 <desc> … … 616 616 </desc> 617 617 </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"> 619 626 <desc> 620 627 The process running the machine has terminated abnormally. This may … … 623 630 </desc> 624 631 </const> 625 <const name="Running" value=" 4">632 <const name="Running" value="5"> 626 633 <desc> 627 634 The machine is currently being executed. … … 630 637 comparisons in the old source code valid, this state must immediately 631 638 precede the Paused state. 639 TODO: Lift this spectacularly wonderful restriction. 632 640 </note> 633 641 </desc> 634 642 </const> 635 <const name="Paused" value=" 5">643 <const name="Paused" value="6"> 636 644 <desc> 637 645 Execution of the machine has been paused. … … 640 648 comparisons in the old source code valid, this state must immediately 641 649 follow the Running state. 650 TODO: Lift this spectacularly wonderful restriction. 642 651 </note> 643 652 </desc> 644 653 </const> 645 <const name="Stuck" value=" 6">654 <const name="Stuck" value="7"> 646 655 <desc> 647 656 Execution of the machine has reached the "Guru Meditation" 648 657 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"> 652 683 <desc> 653 684 Machine is being started after powering it on from a … … 655 686 </desc> 656 687 </const> 657 <const name="Stopping" value=" 8">688 <const name="Stopping" value="11"> 658 689 <desc> 659 690 Machine is being normally stopped powering it off, or after the guest OS … … 661 692 </desc> 662 693 </const> 663 <const name="Saving" value=" 9">694 <const name="Saving" value="12"> 664 695 <desc> 665 696 Machine is saving its execution state to a file, or an online … … 667 698 </desc> 668 699 </const> 669 <const name="Restoring" value="1 0">700 <const name="Restoring" value="13"> 670 701 <desc> 671 702 Execution state of the machine is being restored from a file … … 673 704 </desc> 674 705 </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"> 681 719 <desc> 682 720 A machine snapshot is being restored; this typically does not take long. 683 721 </desc> 684 722 </const> 685 <const name="DeletingSnapshot" value="1 3">723 <const name="DeletingSnapshot" value="17"> 686 724 <desc> 687 725 A machine snapshot is being deleted; this can take a long time since this … … 689 727 </desc> 690 728 </const> 691 <const name="SettingUp" value="1 4">729 <const name="SettingUp" value="18"> 692 730 <desc> 693 731 Lengthy setup operation is in progress. … … 695 733 </const> 696 734 697 <const name="FirstOnline" value=" 4" wsmap="suppress"> <!-- Running -->735 <const name="FirstOnline" value="5" wsmap="suppress"> <!-- Running --> 698 736 <desc> 699 737 Pseudo-state: first online state (for use in relational expressions). 700 738 </desc> 701 739 </const> 702 <const name="LastOnline" value="1 1" wsmap="suppress"> <!-- Restoring-->740 <const name="LastOnline" value="13" wsmap="suppress"> <!-- TeleportingIn --> 703 741 <desc> 704 742 Pseudo-state: last online state (for use in relational expressions). … … 706 744 </const> 707 745 708 <const name="FirstTransient" value=" 7" wsmap="suppress"> <!-- Starting -->746 <const name="FirstTransient" value="8" wsmap="suppress"> <!-- Teleporting --> 709 747 <desc> 710 748 Pseudo-state: first transient state (for use in relational expressions). 711 749 </desc> 712 750 </const> 713 <const name="LastTransient" value="1 4" wsmap="suppress"> <!-- SettingUp -->751 <const name="LastTransient" value="18" wsmap="suppress"> <!-- SettingUp --> 714 752 <desc> 715 753 Pseudo-state: last transient state (for use in relational expressions). -
trunk/src/VBox/Main/include/Global.h
r23676 r24301 73 73 * dedicated process) or not. Note that some online states are also 74 74 * transitional states (see #IsTransitional()). 75 * 76 * @remarks Saving may actually be an offline state according to the 77 * documentation (offline snapshot). 75 78 */ 76 79 static bool IsOnline(MachineState_T aState) 77 80 { 81 #if 0 78 82 return aState >= MachineState_FirstOnline && 79 83 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 80 103 } 81 104 … … 89 112 static bool IsTransient(MachineState_T aState) 90 113 { 114 #if 0 91 115 return aState >= MachineState_FirstTransient && 92 116 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 93 136 } 94 137 95 138 /** 96 * Shortcut to <tt>IsOnline (aState) || IsTransient (aState)</tt>. When it97 * returns@false, the VM is turned off (no VM process) and not busy with139 * 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 98 141 * another exclusive operation. 99 142 */ … … 101 144 { 102 145 return IsOnline(aState) || IsTransient(aState); 103 }104 105 /**106 * Shortcut to <tt>IsOnline (aState) && !IsTransient (aState)</tt>. This is107 * a recommended way to detect if the VM emulation thread is in action108 * (either running, suspended, or stuck). When this method returns @false,109 * then either the VM is not online or the emulation thread is being started110 * or stopped, etc.111 */112 static bool IsActive(MachineState_T aState)113 {114 return IsOnline(aState) && !IsTransient(aState);115 146 } 116 147
Note:
See TracChangeset
for help on using the changeset viewer.