VirtualBox

儲存庫 vbox 的更動 18396


忽略:
時間撮記:
2009-3-27 下午02:06:29 (16 年 以前)
作者:
vboxsync
訊息:

VBoxManage: add hidden --detailed-progress option for import to debug progress display.

位置:
trunk/src/VBox/Frontends/VBoxManage
檔案:
修改 4 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r18072 r18396  
    6767#endif /* !VBOX_ONLY_DOCS */
    6868
    69 // funcs
    70 ///////////////////////////////////////////////////////////////////////////////
     69////////////////////////////////////////////////////////////////////////////////
     70//
     71// global variables
     72//
     73////////////////////////////////////////////////////////////////////////////////
     74
     75/*extern*/ bool g_fDetailedProgress = false;
     76
     77////////////////////////////////////////////////////////////////////////////////
     78//
     79// functions
     80//
     81////////////////////////////////////////////////////////////////////////////////
     82
     83#ifndef VBOX_ONLY_DOCS
     84/**
     85 * Print out progress on the console
     86 */
     87void showProgress(ComPtr<IProgress> progress)
     88{
     89    BOOL fCompleted;
     90    ULONG ulCurrentPercent;
     91    ULONG ulLastPercent = 0;
     92
     93    ULONG ulCurrentOperationPercent;
     94    ULONG ulLastOperationPercent;
     95
     96    ULONG ulLastOperation = (ULONG)-1;
     97    Bstr bstrOperationDescription;
     98
     99    ULONG cOperations;
     100    progress->COMGETTER(OperationCount)(&cOperations);
     101
     102    if (!g_fDetailedProgress)
     103    {
     104        RTPrintf("0%%...");
     105        RTStrmFlush(g_pStdOut);
     106    }
     107
     108    while (SUCCEEDED(progress->COMGETTER(Completed(&fCompleted))))
     109    {
     110        ULONG ulOperation;
     111        progress->COMGETTER(Operation)(&ulOperation);
     112
     113        progress->COMGETTER(Percent(&ulCurrentPercent));
     114        progress->COMGETTER(OperationPercent(&ulCurrentOperationPercent));
     115
     116        if (g_fDetailedProgress)
     117        {
     118            if (ulLastOperation != ulOperation)
     119            {
     120                progress->COMGETTER(OperationDescription(bstrOperationDescription.asOutParam()));
     121                ulLastPercent = (ULONG)-1;        // force print
     122                ulLastOperation = ulOperation;
     123            }
     124
     125            if (    (ulCurrentPercent != ulLastPercent)
     126                 || (ulCurrentOperationPercent != ulLastOperationPercent)
     127               )
     128            {
     129                RTPrintf("(%ld/%ld) %ls %ld%% => %ld%%\n", ulOperation + 1, cOperations, bstrOperationDescription.raw(), ulCurrentOperationPercent, ulCurrentPercent);
     130                ulLastPercent = ulCurrentPercent;
     131                ulLastOperationPercent = ulCurrentOperationPercent;
     132            }
     133        }
     134        else
     135        {
     136            /* did we cross a 10% mark? */
     137            if (((ulCurrentPercent / 10) > (ulLastPercent / 10)))
     138            {
     139                /* make sure to also print out missed steps */
     140                for (ULONG curVal = (ulLastPercent / 10) * 10 + 10; curVal <= (ulCurrentPercent / 10) * 10; curVal += 10)
     141                {
     142                    if (curVal < 100)
     143                    {
     144                        RTPrintf("%ld%%...", curVal);
     145                        RTStrmFlush(g_pStdOut);
     146                    }
     147                }
     148                ulLastPercent = (ulCurrentPercent / 10) * 10;
     149            }
     150        }
     151        if (fCompleted)
     152            break;
     153
     154        /* make sure the loop is not too tight */
     155        progress->WaitForCompletion(100);
     156    }
     157
     158    /* complete the line. */
     159    HRESULT rc;
     160    if (SUCCEEDED(progress->COMGETTER(ResultCode)(&rc)))
     161    {
     162        if (SUCCEEDED(rc))
     163            RTPrintf("100%%\n");
     164        else
     165            RTPrintf("FAILED\n");
     166    }
     167    else
     168        RTPrintf("\n");
     169    RTStrmFlush(g_pStdOut);
     170}
     171#endif /* !VBOX_ONLY_DOCS */
    71172
    72173void showLogo(void)
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h

    r18023 r18396  
    3636# define USE_XPCOM_QUEUE
    3737#endif
     38
     39////////////////////////////////////////////////////////////////////////////////
     40//
     41// definitions
     42//
     43////////////////////////////////////////////////////////////////////////////////
    3844
    3945/** @name Syntax diagram category.
     
    124130} VMINFO_DETAILS;
    125131
    126 /*
    127  * Prototypes
    128  */
     132////////////////////////////////////////////////////////////////////////////////
     133//
     134// global variables
     135//
     136////////////////////////////////////////////////////////////////////////////////
     137
     138extern bool g_fDetailedProgress;        // in VBoxManage.cpp
     139
     140////////////////////////////////////////////////////////////////////////////////
     141//
     142// prototypes
     143//
     144////////////////////////////////////////////////////////////////////////////////
    129145
    130146/* VBoxManageHelp.cpp */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp

    r18270 r18396  
    554554}
    555555
    556 #ifndef VBOX_ONLY_DOCS
    557 /**
    558  * Print out progress on the console
    559  */
    560 void showProgress(ComPtr<IProgress> progress)
    561 {
    562     BOOL fCompleted;
    563     ULONG currentPercent;
    564     ULONG lastPercent = 0;
    565 
    566     RTPrintf("0%%...");
    567     RTStrmFlush(g_pStdOut);
    568     while (SUCCEEDED(progress->COMGETTER(Completed(&fCompleted))))
    569     {
    570         progress->COMGETTER(Percent(&currentPercent));
    571 
    572         /* did we cross a 10% mark? */
    573         if (((currentPercent / 10) > (lastPercent / 10)))
    574         {
    575             /* make sure to also print out missed steps */
    576             for (ULONG curVal = (lastPercent / 10) * 10 + 10; curVal <= (currentPercent / 10) * 10; curVal += 10)
    577             {
    578                 if (curVal < 100)
    579                 {
    580                     RTPrintf("%ld%%...", curVal);
    581                     RTStrmFlush(g_pStdOut);
    582                 }
    583             }
    584             lastPercent = (currentPercent / 10) * 10;
    585         }
    586         if (fCompleted)
    587             break;
    588 
    589         /* make sure the loop is not too tight */
    590         progress->WaitForCompletion(100);
    591     }
    592 
    593     /* complete the line. */
    594     HRESULT rc;
    595     if (SUCCEEDED(progress->COMGETTER(ResultCode)(&rc)))
    596     {
    597         if (SUCCEEDED(rc))
    598             RTPrintf("100%%\n");
    599         else
    600             RTPrintf("FAILED\n");
    601     }
    602     else
    603         RTPrintf("\n");
    604     RTStrmFlush(g_pStdOut);
    605 }
    606 
    607 #endif /* !VBOX_ONLY_DOCS */
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageImport.cpp

    r18337 r18396  
    104104           )
    105105            fExecute = false;
     106        else if (strThisArg == "--detailed-progress")
     107            g_fDetailedProgress = true;
    106108        else if (strThisArg == "-vsys")
    107109        {
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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