VirtualBox

source: vbox/trunk/src/VBox/Main/VFSExplorerImpl.cpp@ 30670

Last change on this file since 30670 was 30670, checked in by vboxsync, 14 years ago

Main: COM header cleanup (remove obscure and unused templates)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.5 KB
Line 
1/* $Id: VFSExplorerImpl.cpp 30670 2010-07-06 14:37:09Z vboxsync $ */
2/** @file
3 *
4 * IVFSExplorer COM class implementations.
5 */
6
7/*
8 * Copyright (C) 2009 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#include <iprt/dir.h>
20#include <iprt/path.h>
21#include <iprt/file.h>
22#include <iprt/s3.h>
23#include <iprt/cpp/utils.h>
24
25#include <VBox/com/array.h>
26
27#include <VBox/param.h>
28#include <VBox/version.h>
29
30#include "VFSExplorerImpl.h"
31#include "VirtualBoxImpl.h"
32#include "ProgressImpl.h"
33
34#include "AutoCaller.h"
35#include "Logging.h"
36
37#include <memory>
38
39////////////////////////////////////////////////////////////////////////////////
40//
41// VFSExplorer definitions
42//
43////////////////////////////////////////////////////////////////////////////////
44
45/* opaque private instance data of VFSExplorer class */
46struct VFSExplorer::Data
47{
48 struct DirEntry
49 {
50 DirEntry(Utf8Str aName, VFSFileType_T aType)
51 : name(aName)
52 , type(aType) {}
53
54 Utf8Str name;
55 VFSFileType_T type;
56 };
57
58 VFSType_T storageType;
59 Utf8Str strUsername;
60 Utf8Str strPassword;
61 Utf8Str strHostname;
62 Utf8Str strPath;
63 Utf8Str strBucket;
64
65 std::list<DirEntry> entryList;
66};
67
68VFSExplorer::VFSExplorer()
69 : mVirtualBox(NULL)
70{
71}
72
73VFSExplorer::~VFSExplorer()
74{
75}
76
77
78/**
79 * VFSExplorer COM initializer.
80 * @param
81 * @return
82 */
83HRESULT VFSExplorer::init(VFSType_T aType, Utf8Str aFilePath, Utf8Str aHostname, Utf8Str aUsername, Utf8Str aPassword, VirtualBox *aVirtualBox)
84{
85 /* Enclose the state transition NotReady->InInit->Ready */
86 AutoInitSpan autoInitSpan(this);
87 AssertReturn(autoInitSpan.isOk(), E_FAIL);
88
89 /* Weak reference to a VirtualBox object */
90 unconst(mVirtualBox) = aVirtualBox;
91
92 /* initialize data */
93 m = new Data;
94
95 m->storageType = aType;
96 m->strPath = aFilePath;
97 m->strHostname = aHostname;
98 m->strUsername = aUsername;
99 m->strPassword = aPassword;
100
101 if (m->storageType == VFSType_S3)
102 {
103 size_t bpos = aFilePath.find("/", 1);
104 if (bpos != Utf8Str::npos)
105 {
106 m->strBucket = aFilePath.substr(1, bpos - 1); /* The bucket without any slashes */
107 aFilePath = aFilePath.substr(bpos); /* The rest of the file path */
108 }
109 }
110
111 /* Confirm a successful initialization */
112 autoInitSpan.setSucceeded();
113
114 return S_OK;
115}
116
117/**
118 * VFSExplorer COM uninitializer.
119 * @return
120 */
121void VFSExplorer::uninit()
122{
123 delete m;
124 m = NULL;
125}
126
127/**
128 * Public method implementation.
129 * @param
130 * @return
131 */
132STDMETHODIMP VFSExplorer::COMGETTER(Path)(BSTR *aPath)
133{
134 if (!aPath)
135 return E_POINTER;
136
137 AutoCaller autoCaller(this);
138 if (FAILED(autoCaller.rc())) return autoCaller.rc();
139
140 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
141
142 Bstr bstrPath(m->strPath);
143 bstrPath.cloneTo(aPath);
144
145 return S_OK;
146}
147
148STDMETHODIMP VFSExplorer::COMGETTER(Type)(VFSType_T *aType)
149{
150 if (!aType)
151 return E_POINTER;
152
153 AutoCaller autoCaller(this);
154 if (FAILED(autoCaller.rc())) return autoCaller.rc();
155
156 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
157
158 *aType = m->storageType;
159
160 return S_OK;
161}
162
163struct VFSExplorer::TaskVFSExplorer
164{
165 enum TaskType
166 {
167 Update,
168 Delete
169 };
170
171 TaskVFSExplorer(TaskType aTaskType, VFSExplorer *aThat, Progress *aProgress)
172 : taskType(aTaskType),
173 pVFSExplorer(aThat),
174 progress(aProgress),
175 rc(S_OK)
176 {}
177 ~TaskVFSExplorer() {}
178
179 int startThread();
180 static int taskThread(RTTHREAD aThread, void *pvUser);
181 static int uploadProgress(unsigned uPercent, void *pvUser);
182
183 TaskType taskType;
184 VFSExplorer *pVFSExplorer;
185 ComObjPtr<Progress> progress;
186 HRESULT rc;
187
188 /* task data */
189 std::list<Utf8Str> filenames;
190};
191
192int VFSExplorer::TaskVFSExplorer::startThread()
193{
194 int vrc = RTThreadCreate(NULL, VFSExplorer::TaskVFSExplorer::taskThread, this,
195 0, RTTHREADTYPE_MAIN_HEAVY_WORKER, 0,
196 "Explorer::Task");
197
198 ComAssertMsgRCRet(vrc,
199 ("Could not create taskThreadVFS (%Rrc)\n", vrc), E_FAIL);
200
201 return vrc;
202}
203
204/* static */
205DECLCALLBACK(int) VFSExplorer::TaskVFSExplorer::taskThread(RTTHREAD /* aThread */, void *pvUser)
206{
207 std::auto_ptr<TaskVFSExplorer> task(static_cast<TaskVFSExplorer*>(pvUser));
208 AssertReturn(task.get(), VERR_GENERAL_FAILURE);
209
210 VFSExplorer *pVFSExplorer = task->pVFSExplorer;
211
212 LogFlowFuncEnter();
213 LogFlowFunc(("VFSExplorer %p\n", pVFSExplorer));
214
215 HRESULT rc = S_OK;
216
217 switch(task->taskType)
218 {
219 case TaskVFSExplorer::Update:
220 {
221 if (pVFSExplorer->m->storageType == VFSType_File)
222 rc = pVFSExplorer->updateFS(task.get());
223 else if (pVFSExplorer->m->storageType == VFSType_S3)
224 rc = pVFSExplorer->updateS3(task.get());
225 break;
226 }
227 case TaskVFSExplorer::Delete:
228 {
229 if (pVFSExplorer->m->storageType == VFSType_File)
230 rc = pVFSExplorer->deleteFS(task.get());
231 else if (pVFSExplorer->m->storageType == VFSType_S3)
232 rc = pVFSExplorer->deleteS3(task.get());
233 break;
234 }
235 }
236
237 LogFlowFunc(("rc=%Rhrc\n", rc));
238 LogFlowFuncLeave();
239
240 return VINF_SUCCESS;
241}
242
243/* static */
244int VFSExplorer::TaskVFSExplorer::uploadProgress(unsigned uPercent, void *pvUser)
245{
246 VFSExplorer::TaskVFSExplorer* pTask = *(VFSExplorer::TaskVFSExplorer**)pvUser;
247
248 if (pTask &&
249 !pTask->progress.isNull())
250 {
251 BOOL fCanceled;
252 pTask->progress->COMGETTER(Canceled)(&fCanceled);
253 if (fCanceled)
254 return -1;
255 pTask->progress->SetCurrentOperationProgress(uPercent);
256 }
257 return VINF_SUCCESS;
258}
259
260VFSFileType_T VFSExplorer::RTToVFSFileType(int aType) const
261{
262 VFSFileType_T t;
263 switch(aType)
264 {
265 default:
266 case RTDIRENTRYTYPE_UNKNOWN: t = VFSFileType_Unknown; break;
267 case RTDIRENTRYTYPE_FIFO: t = VFSFileType_Fifo; break;
268 case RTDIRENTRYTYPE_DEV_CHAR: t = VFSFileType_DevChar; break;
269 case RTDIRENTRYTYPE_DIRECTORY: t = VFSFileType_Directory; break;
270 case RTDIRENTRYTYPE_DEV_BLOCK: t = VFSFileType_DevBlock; break;
271 case RTDIRENTRYTYPE_FILE: t = VFSFileType_File; break;
272 case RTDIRENTRYTYPE_SYMLINK: t = VFSFileType_SymLink; break;
273 case RTDIRENTRYTYPE_SOCKET: t = VFSFileType_Socket; break;
274 case RTDIRENTRYTYPE_WHITEOUT: t = VFSFileType_WhiteOut; break;
275 }
276 return t;
277}
278
279HRESULT VFSExplorer::updateFS(TaskVFSExplorer *aTask)
280{
281 LogFlowFuncEnter();
282
283 AutoCaller autoCaller(this);
284 if (FAILED(autoCaller.rc())) return autoCaller.rc();
285
286 AutoWriteLock appLock(this COMMA_LOCKVAL_SRC_POS);
287
288 HRESULT rc = S_OK;
289
290 std::list<VFSExplorer::Data::DirEntry> fileList;
291 char *pszPath = NULL;
292 PRTDIR pDir = NULL;
293 try
294 {
295 pszPath = RTStrDup(m->strPath.c_str());
296 RTPathStripFilename(pszPath);
297 int vrc = RTDirOpen(&pDir, pszPath);
298 if (RT_FAILURE(vrc))
299 throw setError(VBOX_E_FILE_ERROR, tr ("Can't open directory '%s' (%Rrc)"), pszPath, vrc);
300
301 if (aTask->progress)
302 aTask->progress->SetCurrentOperationProgress(33);
303 RTDIRENTRY entry;
304 while (RT_SUCCESS(vrc))
305 {
306 vrc = RTDirRead(pDir, &entry, NULL);
307 if (RT_SUCCESS(vrc))
308 {
309 Utf8Str name(entry.szName);
310 if (name != "." &&
311 name != "..")
312 fileList.push_back(VFSExplorer::Data::DirEntry(name, RTToVFSFileType(entry.enmType)));
313 }
314 }
315 if (aTask->progress)
316 aTask->progress->SetCurrentOperationProgress(66);
317 }
318 catch(HRESULT aRC)
319 {
320 rc = aRC;
321 }
322
323 /* Clean up */
324 if (pszPath)
325 RTStrFree(pszPath);
326 if (pDir)
327 RTDirClose(pDir);
328
329 if (aTask->progress)
330 aTask->progress->SetCurrentOperationProgress(99);
331
332 /* Assign the result on success (this clears the old list) */
333 if (rc == S_OK)
334 m->entryList.assign(fileList.begin(), fileList.end());
335
336 aTask->rc = rc;
337
338 if (!aTask->progress.isNull())
339 aTask->progress->notifyComplete(rc);
340
341 LogFlowFunc(("rc=%Rhrc\n", rc));
342 LogFlowFuncLeave();
343
344 return VINF_SUCCESS;
345}
346
347HRESULT VFSExplorer::deleteFS(TaskVFSExplorer *aTask)
348{
349 LogFlowFuncEnter();
350
351 AutoCaller autoCaller(this);
352 if (FAILED(autoCaller.rc())) return autoCaller.rc();
353
354 AutoWriteLock appLock(this COMMA_LOCKVAL_SRC_POS);
355
356 HRESULT rc = S_OK;
357
358 float fPercentStep = 100.0f / aTask->filenames.size();
359 try
360 {
361 char szPath[RTPATH_MAX];
362 std::list<Utf8Str>::const_iterator it;
363 size_t i = 0;
364 for (it = aTask->filenames.begin();
365 it != aTask->filenames.end();
366 ++it, ++i)
367 {
368 memcpy(szPath, m->strPath.c_str(), strlen(m->strPath.c_str()) + 1);
369 RTPathStripFilename(szPath);
370 RTPathAppend(szPath, sizeof(szPath), (*it).c_str());
371 int vrc = RTFileDelete(szPath);
372 if (RT_FAILURE(vrc))
373 throw setError(VBOX_E_FILE_ERROR, tr ("Can't delete file '%s' (%Rrc)"), szPath, vrc);
374 if (aTask->progress)
375 aTask->progress->SetCurrentOperationProgress((ULONG)(fPercentStep * i));
376 }
377 }
378 catch(HRESULT aRC)
379 {
380 rc = aRC;
381 }
382
383 aTask->rc = rc;
384
385 if (!aTask->progress.isNull())
386 aTask->progress->notifyComplete(rc);
387
388 LogFlowFunc(("rc=%Rhrc\n", rc));
389 LogFlowFuncLeave();
390
391 return VINF_SUCCESS;
392}
393
394HRESULT VFSExplorer::updateS3(TaskVFSExplorer *aTask)
395{
396 LogFlowFuncEnter();
397
398 AutoCaller autoCaller(this);
399 if (FAILED(autoCaller.rc())) return autoCaller.rc();
400
401 AutoWriteLock appLock(this COMMA_LOCKVAL_SRC_POS);
402
403 HRESULT rc = S_OK;
404
405 RTS3 hS3 = NULL;
406 std::list<VFSExplorer::Data::DirEntry> fileList;
407 try
408 {
409 int vrc = RTS3Create(&hS3, m->strUsername.c_str(), m->strPassword.c_str(), m->strHostname.c_str(), "virtualbox-agent/"VBOX_VERSION_STRING);
410 if (RT_FAILURE(vrc))
411 throw setError(E_FAIL, tr ("Can't open S3 storage service (%Rrc)"), vrc);
412
413 RTS3SetProgressCallback(hS3, VFSExplorer::TaskVFSExplorer::uploadProgress, &aTask);
414 /* Do we need the list of buckets or keys? */
415 if (m->strBucket.isEmpty())
416 {
417 PCRTS3BUCKETENTRY pBuckets = NULL;
418 vrc = RTS3GetBuckets(hS3, &pBuckets);
419 if (RT_FAILURE(vrc))
420 throw setError(E_FAIL, tr ("Can't get buckets (%Rrc)"), vrc);
421
422 PCRTS3BUCKETENTRY pTmpBuckets = pBuckets;
423 while (pBuckets)
424 {
425 fileList.push_back(VFSExplorer::Data::DirEntry(pBuckets->pszName, VFSFileType_Directory));
426 pBuckets = pBuckets->pNext;
427 }
428 RTS3BucketsDestroy(pTmpBuckets);
429 }
430 else
431 {
432 PCRTS3KEYENTRY pKeys = NULL;
433 vrc = RTS3GetBucketKeys(hS3, m->strBucket.c_str(), &pKeys);
434 if (RT_FAILURE(vrc))
435 throw setError(E_FAIL, tr ("Can't get keys for bucket (%Rrc)"), vrc);
436
437 PCRTS3KEYENTRY pTmpKeys = pKeys;
438 while (pKeys)
439 {
440 Utf8Str name(pKeys->pszName);
441 fileList.push_back(VFSExplorer::Data::DirEntry(pKeys->pszName, VFSFileType_File));
442 pKeys = pKeys->pNext;
443 }
444 RTS3KeysDestroy(pTmpKeys);
445 }
446 }
447 catch(HRESULT aRC)
448 {
449 rc = aRC;
450 }
451
452 if (hS3 != NULL)
453 RTS3Destroy(hS3);
454
455 /* Assign the result on success (this clears the old list) */
456 if (rc == S_OK)
457 m->entryList.assign(fileList.begin(), fileList.end());
458
459 aTask->rc = rc;
460
461 if (!aTask->progress.isNull())
462 aTask->progress->notifyComplete(rc);
463
464 LogFlowFunc(("rc=%Rhrc\n", rc));
465 LogFlowFuncLeave();
466
467 return VINF_SUCCESS;
468}
469
470HRESULT VFSExplorer::deleteS3(TaskVFSExplorer *aTask)
471{
472 LogFlowFuncEnter();
473
474 AutoCaller autoCaller(this);
475 if (FAILED(autoCaller.rc())) return autoCaller.rc();
476
477 AutoWriteLock appLock(this COMMA_LOCKVAL_SRC_POS);
478
479 HRESULT rc = S_OK;
480
481 RTS3 hS3 = NULL;
482 float fPercentStep = 100.0f / aTask->filenames.size();
483 try
484 {
485 int vrc = RTS3Create(&hS3, m->strUsername.c_str(), m->strPassword.c_str(), m->strHostname.c_str(), "virtualbox-agent/"VBOX_VERSION_STRING);
486 if (RT_FAILURE(vrc))
487 throw setError(E_FAIL, tr ("Can't open S3 storage service (%Rrc)"), vrc);
488
489 RTS3SetProgressCallback(hS3, VFSExplorer::TaskVFSExplorer::uploadProgress, &aTask);
490
491 std::list<Utf8Str>::const_iterator it;
492 size_t i = 0;
493 for (it = aTask->filenames.begin();
494 it != aTask->filenames.end();
495 ++it, ++i)
496 {
497 vrc = RTS3DeleteKey(hS3, m->strBucket.c_str(), (*it).c_str());
498 if (RT_FAILURE(vrc))
499 throw setError(VBOX_E_FILE_ERROR, tr ("Can't delete file '%s' (%Rrc)"), (*it).c_str(), vrc);
500 if (aTask->progress)
501 aTask->progress->SetCurrentOperationProgress((ULONG)(fPercentStep * i));
502 }
503 }
504 catch(HRESULT aRC)
505 {
506 rc = aRC;
507 }
508
509 aTask->rc = rc;
510
511 if (hS3 != NULL)
512 RTS3Destroy(hS3);
513
514 if (!aTask->progress.isNull())
515 aTask->progress->notifyComplete(rc);
516
517 LogFlowFunc(("rc=%Rhrc\n", rc));
518 LogFlowFuncLeave();
519
520 return VINF_SUCCESS;
521}
522
523STDMETHODIMP VFSExplorer::Update(IProgress **aProgress)
524{
525 CheckComArgOutPointerValid(aProgress);
526
527 AutoCaller autoCaller(this);
528 if (FAILED(autoCaller.rc())) return autoCaller.rc();
529
530 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
531
532 HRESULT rc = S_OK;
533
534 ComObjPtr<Progress> progress;
535 try
536 {
537 Bstr progressDesc = BstrFmt(tr("Update directory info for '%s'"),
538 m->strPath.raw());
539 /* Create the progress object */
540 progress.createObject();
541
542 rc = progress->init(mVirtualBox, static_cast<IVFSExplorer*>(this),
543 progressDesc,
544 TRUE /* aCancelable */);
545 if (FAILED(rc)) throw rc;
546
547 /* Initialize our worker task */
548 std::auto_ptr<TaskVFSExplorer> task(new TaskVFSExplorer(TaskVFSExplorer::Update, this, progress));
549
550 rc = task->startThread();
551 if (FAILED(rc)) throw rc;
552
553 /* Don't destruct on success */
554 task.release();
555 }
556 catch (HRESULT aRC)
557 {
558 rc = aRC;
559 }
560
561 if (SUCCEEDED(rc))
562 /* Return progress to the caller */
563 progress.queryInterfaceTo(aProgress);
564
565 return rc;
566}
567
568STDMETHODIMP VFSExplorer::Cd(IN_BSTR aDir, IProgress **aProgress)
569{
570 CheckComArgStrNotEmptyOrNull(aDir);
571 CheckComArgOutPointerValid(aProgress);
572
573 return E_NOTIMPL;
574}
575
576STDMETHODIMP VFSExplorer::CdUp(IProgress **aProgress)
577{
578 CheckComArgOutPointerValid(aProgress);
579
580 return E_NOTIMPL;
581}
582
583STDMETHODIMP VFSExplorer::EntryList(ComSafeArrayOut(BSTR, aNames), ComSafeArrayOut(VFSFileType_T, aTypes))
584{
585 if (ComSafeArrayOutIsNull(aNames) ||
586 ComSafeArrayOutIsNull(aTypes))
587 return E_POINTER;
588
589 AutoCaller autoCaller(this);
590 if (FAILED(autoCaller.rc())) return autoCaller.rc();
591
592 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
593
594 com::SafeArray<BSTR> sfaNames((ULONG)m->entryList.size());
595 com::SafeArray<ULONG> sfaTypes((VFSFileType_T)m->entryList.size());
596
597 std::list<VFSExplorer::Data::DirEntry>::const_iterator it;
598 size_t i = 0;
599 for (it = m->entryList.begin();
600 it != m->entryList.end();
601 ++it, ++i)
602 {
603 const VFSExplorer::Data::DirEntry &entry = (*it);
604 Bstr bstr(entry.name);
605 bstr.cloneTo(&sfaNames[i]);
606 sfaTypes[i] = entry.type;
607 }
608
609 sfaNames.detachTo(ComSafeArrayOutArg(aNames));
610 sfaTypes.detachTo(ComSafeArrayOutArg(aTypes));
611
612 return S_OK;
613}
614
615STDMETHODIMP VFSExplorer::Exists(ComSafeArrayIn(IN_BSTR, aNames), ComSafeArrayOut(BSTR, aExists))
616{
617 CheckComArgSafeArrayNotNull(aNames);
618
619 AutoCaller autoCaller(this);
620 if (FAILED(autoCaller.rc())) return autoCaller.rc();
621
622 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
623
624 com::SafeArray<IN_BSTR> sfaNames(ComSafeArrayInArg(aNames));
625 std::list<BSTR> listExists;
626
627 std::list<VFSExplorer::Data::DirEntry>::const_iterator it;
628 for (it = m->entryList.begin();
629 it != m->entryList.end();
630 ++it)
631 {
632 const VFSExplorer::Data::DirEntry &entry = (*it);
633 for (size_t a=0; a < sfaNames.size(); ++a)
634 {
635 if (entry.name == RTPathFilename(Utf8Str(sfaNames[a]).c_str()))
636 {
637 BSTR name;
638 Bstr tmp(sfaNames[a]); /* gcc-3.3 cruft */
639 tmp.cloneTo(&name);
640 listExists.push_back(name);
641 }
642 }
643 }
644
645 com::SafeArray<BSTR> sfaExists(listExists);
646 sfaExists.detachTo(ComSafeArrayOutArg(aExists));
647
648 return S_OK;
649}
650
651STDMETHODIMP VFSExplorer::Remove(ComSafeArrayIn(IN_BSTR, aNames), IProgress **aProgress)
652{
653 CheckComArgSafeArrayNotNull(aNames);
654 CheckComArgOutPointerValid(aProgress);
655
656 AutoCaller autoCaller(this);
657 if (FAILED(autoCaller.rc())) return autoCaller.rc();
658
659 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS);
660
661 HRESULT rc = S_OK;
662
663 com::SafeArray<IN_BSTR> sfaNames(ComSafeArrayInArg(aNames));
664
665 ComObjPtr<Progress> progress;
666 try
667 {
668 /* Create the progress object */
669 progress.createObject();
670
671 rc = progress->init(mVirtualBox, static_cast<IVFSExplorer*>(this),
672 Bstr(tr("Delete files")),
673 TRUE /* aCancelable */);
674 if (FAILED(rc)) throw rc;
675
676 /* Initialize our worker task */
677 std::auto_ptr<TaskVFSExplorer> task(new TaskVFSExplorer(TaskVFSExplorer::Delete, this, progress));
678
679 /* Add all filenames to delete as task data */
680 for (size_t a=0; a < sfaNames.size(); ++a)
681 task->filenames.push_back(Utf8Str(sfaNames[a]));
682
683 rc = task->startThread();
684 if (FAILED(rc)) throw rc;
685
686 /* Don't destruct on success */
687 task.release();
688 }
689 catch (HRESULT aRC)
690 {
691 rc = aRC;
692 }
693
694 if (SUCCEEDED(rc))
695 /* Return progress to the caller */
696 progress.queryInterfaceTo(aProgress);
697
698 return rc;
699}
700
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