1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/* $Id$ */
/** @file
* IProgress implementation for Machine::LaunchVMProcess in VBoxSVC.
*/
/*
* Copyright (C) 2006-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef MAIN_INCLUDED_ProgressProxyImpl_h
#define MAIN_INCLUDED_ProgressProxyImpl_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include "ProgressImpl.h"
#include "AutoCaller.h"
/**
* The ProgressProxy class allows proxying the important Progress calls and
* attributes to a different IProgress object for a period of time.
*/
class ATL_NO_VTABLE ProgressProxy :
public Progress
{
public:
VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(ProgressProxy, IProgress)
DECLARE_NOT_AGGREGATABLE(ProgressProxy)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(ProgressProxy)
COM_INTERFACE_ENTRY(ISupportErrorInfo)
COM_INTERFACE_ENTRY(IProgress)
COM_INTERFACE_ENTRY2(IDispatch, IProgress)
VBOX_TWEAK_INTERFACE_ENTRY(IProgress)
END_COM_MAP()
HRESULT FinalConstruct();
void FinalRelease();
HRESULT init(
#ifndef VBOX_COM_INPROC
VirtualBox *pParent,
#endif
IUnknown *pInitiator,
CBSTR bstrDescription,
BOOL fCancelable);
HRESULT init(
#ifndef VBOX_COM_INPROC
VirtualBox *pParent,
#endif
IUnknown *pInitiator,
CBSTR bstrDescription,
BOOL fCancelable,
ULONG uTotalOperationsWeight,
CBSTR bstrFirstOperationDescription,
ULONG uFirstOperationWeight,
ULONG cOtherProgressObjectOperations);
void uninit();
// IProgress properties
STDMETHOD(COMGETTER(Cancelable))(BOOL *aCancelable);
STDMETHOD(COMGETTER(Percent))(ULONG *aPercent);
STDMETHOD(COMGETTER(TimeRemaining))(LONG *aTimeRemaining);
STDMETHOD(COMGETTER(Completed))(BOOL *aCompleted);
STDMETHOD(COMGETTER(Canceled))(BOOL *aCanceled);
STDMETHOD(COMGETTER(ResultCode))(LONG *aResultCode);
STDMETHOD(COMGETTER(ErrorInfo))(IVirtualBoxErrorInfo **aErrorInfo);
//STDMETHOD(COMGETTER(OperationCount))(ULONG *aOperationCount); - not necessary
STDMETHOD(COMGETTER(Operation))(ULONG *aOperation);
STDMETHOD(COMGETTER(OperationDescription))(BSTR *aOperationDescription);
STDMETHOD(COMGETTER(OperationPercent))(ULONG *aOperationPercent);
STDMETHOD(COMSETTER(Timeout))(ULONG aTimeout);
STDMETHOD(COMGETTER(Timeout))(ULONG *aTimeout);
// IProgress methods
STDMETHOD(WaitForCompletion)(LONG aTimeout);
STDMETHOD(WaitForOperationCompletion)(ULONG aOperation, LONG aTimeout);
STDMETHOD(Cancel)();
STDMETHOD(SetCurrentOperationProgress)(ULONG aPercent);
STDMETHOD(SetNextOperation)(IN_BSTR bstrNextOperationDescription, ULONG ulNextOperationsWeight);
// public methods only for internal purposes
HRESULT notifyComplete(HRESULT aResultCode);
HRESULT notifyComplete(HRESULT aResultCode,
const GUID &aIID,
const char *pcszComponent,
const char *aText, ...);
bool setOtherProgressObject(IProgress *pOtherProgress);
protected:
void clearOtherProgressObjectInternal(bool fEarly);
void copyProgressInfo(IProgress *pOtherProgress, bool fEarly);
private:
/** The other progress object. This can be NULL. */
ComPtr<IProgress> mptrOtherProgress;
/** Set if the other progress object has multiple operations. */
bool mfMultiOperation;
/** The weight the other progress object started at. */
ULONG muOtherProgressStartWeight;
/** The weight of other progress object. */
ULONG muOtherProgressWeight;
/** The operation number the other progress object started at. */
ULONG muOtherProgressStartOperation;
};
#endif /* !MAIN_INCLUDED_ProgressProxyImpl_h */
|