VirtualBox

source: vbox/trunk/include/VBox/com/MultiResult.h@ 76507

Last change on this file since 76507 was 76507, checked in by vboxsync, 6 years ago

/include: scm --fix-header-guards. bugref:9344

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 8.4 KB
Line 
1/* $Id: MultiResult.h 76507 2018-12-30 03:43:09Z vboxsync $ */
2/** @file
3 * MS COM / XPCOM Abstraction Layer - MultiResult class declarations.
4 */
5
6/*
7 * Copyright (C) 2008-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef ___VBox_com_MultiResult_h
28#define ___VBox_com_MultiResult_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include "VBox/com/defs.h"
34#include "VBox/com/string.h"
35
36#include <stdarg.h>
37
38/** @defgroup grp_com_mr MultiResult Classes
39 * @ingroup grp_com
40 * @{
41 */
42
43namespace com
44{
45
46/**
47 * "First worst" result type.
48 *
49 * Variables of this class are used instead of HRESULT variables when it is
50 * desirable to memorize the "first worst" result code instead of the last
51 * assigned one. In other words, an assignment operation to a variable of this
52 * class will succeed only if the result code to assign has worse severity. The
53 * following table demonstrate this (the first column lists the previous result
54 * code stored in the variable, the first row lists the new result code being
55 * assigned, 'A' means the assignment will take place, '> S_OK' means a warning
56 * result code):
57 *
58 * {{{
59 * FAILED > S_OK S_OK
60 * FAILED - - -
61 * > S_OK A - -
62 * S_OK A A -
63 *
64 * }}}
65 *
66 * In practice, you will need to use a FWResult variable when you call some COM
67 * method B after another COM method A fails and want to return the result code
68 * of A even if B also fails, but want to return the failed result code of B if
69 * A issues a warning or succeeds.
70 */
71class FWResult
72{
73
74public:
75
76 /**
77 * Constructs a new variable. Note that by default this constructor sets the
78 * result code to E_FAIL to make sure a failure is returned to the caller if
79 * the variable is never assigned another value (which is considered as the
80 * improper use of this class).
81 */
82 FWResult (HRESULT aRC = E_FAIL) : mRC (aRC) {}
83
84 FWResult &operator= (HRESULT aRC)
85 {
86 if ((FAILED (aRC) && !FAILED (mRC)) ||
87 (mRC == S_OK && aRC != S_OK))
88 mRC = aRC;
89
90 return *this;
91 }
92
93 operator HRESULT() const { return mRC; }
94
95 HRESULT *operator&() { return &mRC; }
96
97private:
98
99 HRESULT mRC;
100};
101
102/**
103 * The MultiResult class is a com::FWResult enhancement that also acts as a
104 * switch to turn on multi-error mode for VirtualBoxBase::setError() and
105 * VirtualBoxBase::setWarning() calls.
106 *
107 * When an instance of this class is created, multi-error mode is turned on
108 * for the current thread and the turn-on counter is increased by one. In
109 * multi-error mode, a call to setError() or setWarning() does not
110 * overwrite the current error or warning info object possibly set on the
111 * current thread by other method calls, but instead it stores this old
112 * object in the IVirtualBoxErrorInfo::next attribute of the new error
113 * object being set.
114 *
115 * This way, error/warning objects are stacked together and form a chain of
116 * errors where the most recent error is the first one retrieved by the
117 * calling party, the preceding error is what the
118 * IVirtualBoxErrorInfo::next attribute of the first error points to, and so
119 * on, up to the first error or warning occurred which is the last in the
120 * chain. See IVirtualBoxErrorInfo documentation for more info.
121 *
122 * When the instance of the MultiResult class goes out of scope and gets
123 * destroyed, it automatically decreases the turn-on counter by one. If
124 * the counter drops to zero, multi-error mode for the current thread is
125 * turned off and the thread switches back to single-error mode where every
126 * next error or warning object overwrites the previous one.
127 *
128 * Note that the caller of a COM method uses a non-S_OK result code to
129 * decide if the method has returned an error (negative codes) or a warning
130 * (positive non-zero codes) and will query extended error info only in
131 * these two cases. However, since multi-error mode implies that the method
132 * doesn't return control return to the caller immediately after the first
133 * error or warning but continues its execution, the functionality provided
134 * by the base com::FWResult class becomes very useful because it allows to
135 * preserve the error or the warning result code even if it is later assigned
136 * a S_OK value multiple times. See com::FWResult for details.
137 *
138 * Here is the typical usage pattern:
139 * @code
140 HRESULT Bar::method()
141 {
142 // assume multi-errors are turned off here...
143
144 if (something)
145 {
146 // Turn on multi-error mode and make sure severity is preserved
147 MultiResult rc = foo->method1();
148
149 // return on fatal error, but continue on warning or on success
150 CheckComRCReturnRC (rc);
151
152 rc = foo->method2();
153 // no matter what result, stack it and continue
154
155 // ...
156
157 // return the last worst result code (it will be preserved even if
158 // foo->method2() returns S_OK.
159 return rc;
160 }
161
162 // multi-errors are turned off here again...
163
164 return S_OK;
165 }
166 * @endcode
167 *
168 * @note This class is intended to be instantiated on the stack, therefore
169 * You cannot create them using new(). Although it is possible to copy
170 * instances of MultiResult or return them by value, please never do
171 * that as it is breaks the class semantics (and will assert);
172 */
173class MultiResult : public FWResult
174{
175public:
176
177 /**
178 * @copydoc FWResult::FWResult()
179 */
180 MultiResult (HRESULT aRC = E_FAIL) : FWResult (aRC) { incCounter(); }
181
182 MultiResult (const MultiResult &aThat) : FWResult (aThat)
183 {
184 /* We need this copy constructor only for GCC that wants to have
185 * it in case of expressions like |MultiResult rc = E_FAIL;|. But
186 * we assert since the optimizer should actually avoid the
187 * temporary and call the other constructor directly instead. */
188 AssertFailed();
189 }
190
191 ~MultiResult() { decCounter(); }
192
193 MultiResult &operator= (HRESULT aRC)
194 {
195 FWResult::operator= (aRC);
196 return *this;
197 }
198
199 MultiResult &operator= (const MultiResult & /* aThat */)
200 {
201 /* We need this copy constructor only for GCC that wants to have
202 * it in case of expressions like |MultiResult rc = E_FAIL;|. But
203 * we assert since the optimizer should actually avoid the
204 * temporary and call the other constructor directly instead. */
205 AssertFailed();
206 return *this;
207 }
208
209 /**
210 * Returns true if multi-mode is enabled for the current thread (i.e. at
211 * least one MultiResult instance exists on the stack somewhere).
212 * @return
213 */
214 static bool isMultiEnabled();
215
216private:
217
218 DECLARE_CLS_NEW_DELETE_NOOP(MultiResult);
219
220 static void incCounter();
221 static void decCounter();
222
223 static RTTLS sCounter;
224
225 friend class MultiResultRef;
226};
227
228/**
229 * The MultiResultRef class is equivalent to MultiResult except that it takes
230 * a reference to the existing HRESULT variable instead of maintaining its own
231 * one.
232 */
233class MultiResultRef
234{
235public:
236
237 MultiResultRef (HRESULT &aRC) : mRC (aRC) { MultiResult::incCounter(); }
238
239 ~MultiResultRef() { MultiResult::decCounter(); }
240
241 MultiResultRef &operator= (HRESULT aRC)
242 {
243 /* Copied from FWResult */
244 if ((FAILED (aRC) && !FAILED (mRC)) ||
245 (mRC == S_OK && aRC != S_OK))
246 mRC = aRC;
247
248 return *this;
249 }
250
251 operator HRESULT() const { return mRC; }
252
253 HRESULT *operator&() { return &mRC; }
254
255private:
256
257 DECLARE_CLS_NEW_DELETE_NOOP(MultiResultRef);
258
259 HRESULT &mRC;
260};
261
262
263} /* namespace com */
264
265/** @} */
266
267#endif /* !___VBox_com_MultiResult_h */
268
Note: See TracBrowser for help on using the repository browser.

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