VirtualBox

Changeset 29932 in vbox for trunk/src/VBox/Main/include


Ignore:
Timestamp:
Jun 1, 2010 1:40:07 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
62200
Message:

Main: Rewrote ProgressProxyImpl.cpp to proxy at the most one progress object and skip the final operation of the proxy object that wasn't really needed in the openRemoteSession case. Operations are proxied as well so that the openRemoteSession user can wait for the teleporter to become operational by waiting for the 3rd last operation to complete in a loop(!).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/ProgressProxyImpl.h

    r29862 r29932  
    5959                 CBSTR bstrDescription,
    6060                 BOOL fCancelable,
    61                  ULONG cOtherProgressObjects,
    6261                 ULONG uTotalOperationsWeight,
    6362                 CBSTR bstrFirstOperationDescription,
    6463                 ULONG uFirstOperationWeight,
    65                  OUT_GUID pId = NULL);
     64                 ULONG cOtherProgressObjectOperations);
    6665    void    uninit();
    6766
    6867    // IProgress properties
     68    STDMETHOD(COMGETTER(Cancelable))(BOOL *aCancelable);
    6969    STDMETHOD(COMGETTER(Percent))(ULONG *aPercent);
     70    STDMETHOD(COMGETTER(TimeRemaining))(LONG *aTimeRemaining);
    7071    STDMETHOD(COMGETTER(Completed))(BOOL *aCompleted);
    7172    STDMETHOD(COMGETTER(Canceled))(BOOL *aCanceled);
    7273    STDMETHOD(COMGETTER(ResultCode))(LONG *aResultCode);
    7374    STDMETHOD(COMGETTER(ErrorInfo))(IVirtualBoxErrorInfo **aErrorInfo);
     75    //STDMETHOD(COMGETTER(OperationCount))(ULONG *aOperationCount); - not necessary
     76    STDMETHOD(COMGETTER(Operation))(ULONG *aOperation);
     77    STDMETHOD(COMGETTER(OperationDescription))(BSTR *aOperationDescription);
    7478    STDMETHOD(COMGETTER(OperationPercent))(ULONG *aOperationPercent);
    7579    STDMETHOD(COMSETTER(Timeout))(ULONG aTimeout);
     
    9296                           const char *aText, ...);
    9397    bool    notifyPointOfNoReturn(void);
    94     bool    setOtherProgressObject(IProgress *pOtherProgress, ULONG uOperationWeight);
    95     bool    clearOtherProgressObject(const char *pszLastOperationDescription, ULONG uLastOperationWeight);
     98    bool    setOtherProgressObject(IProgress *pOtherProgress);
    9699
    97100    /** For com::SupportErrorInfoImpl. */
     
    105108    /** The other progress object.  This can be NULL. */
    106109    ComPtr<IProgress> mptrOtherProgress;
    107     /** The number of other progress objects expected. */
    108     ULONG mcOtherProgressObjects;
    109     /** The current other progress object. */
    110     ULONG miCurOtherProgressObject;
     110    /** Set if the other progress object has multiple operations. */
     111    bool mfMultiOperation;
     112    /** The weight the other progress object started at. */
     113    ULONG muOtherProgressStartWeight;
     114    /** The weight of other progress object. */
     115    ULONG muOtherProgressWeight;
     116    /** The operation number the other progress object started at. */
     117    ULONG muOtherProgressStartOperation;
    111118
    112119};
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