Changeset 50919 in vbox
- Timestamp:
- Mar 28, 2014 3:21:43 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93053
- Location:
- trunk/src/VBox/Main
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/SharedFolderImpl.h
r50174 r50919 19 19 #define ____H_SHAREDFOLDERIMPL 20 20 21 #include " VirtualBoxBase.h"21 #include "SharedFolderWrap.h" 22 22 #include <VBox/shflsvc.h> 23 23 … … 25 25 26 26 class ATL_NO_VTABLE SharedFolder : 27 public VirtualBoxBase, 28 VBOX_SCRIPTABLE_IMPL(ISharedFolder) 27 public SharedFolderWrap 29 28 { 30 29 public: 31 32 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(SharedFolder, ISharedFolder)33 34 DECLARE_NOT_AGGREGATABLE(SharedFolder)35 36 DECLARE_PROTECT_FINAL_CONSTRUCT()37 38 BEGIN_COM_MAP(SharedFolder)39 VBOX_DEFAULT_INTERFACE_ENTRIES (ISharedFolder)40 END_COM_MAP()41 30 42 31 DECLARE_EMPTY_CTOR_DTOR (SharedFolder) … … 52 41 void uninit(); 53 42 54 // ISharedFolder properties55 STDMETHOD(COMGETTER(Name)) (BSTR *aName);56 STDMETHOD(COMGETTER(HostPath)) (BSTR *aHostPath);57 STDMETHOD(COMGETTER(Accessible)) (BOOL *aAccessible);58 STDMETHOD(COMGETTER(Writable)) (BOOL *aWritable);59 STDMETHOD(COMGETTER(AutoMount)) (BOOL *aAutoMount);60 STDMETHOD(COMGETTER(LastAccessError)) (BSTR *aLastAccessError);61 62 43 // public methods for internal purposes only 63 44 // (ensure there is a caller and a read lock before calling them!) … … 67 48 * @return 68 49 */ 69 const Utf8Str& getName() const;50 const Utf8Str& i_getName() const; 70 51 71 52 /** … … 73 54 * @return 74 55 */ 75 const Utf8Str& getHostPath() const;56 const Utf8Str& i_getHostPath() const; 76 57 77 58 /** … … 79 60 * @return 80 61 */ 81 bool i sWritable() const;62 bool i_isWritable() const; 82 63 83 64 /** … … 85 66 * @return 86 67 */ 87 bool i sAutoMounted() const;68 bool i_isAutoMounted() const; 88 69 89 70 protected: 90 71 91 HRESULT protectedInit(VirtualBoxBase *aParent,92 const Utf8Str &aName,93 const Utf8Str &aHostPath,94 bool aWritable,95 bool aAutoMount,96 bool fFailOnError);72 HRESULT i_protectedInit(VirtualBoxBase *aParent, 73 const Utf8Str &aName, 74 const Utf8Str &aHostPath, 75 bool aWritable, 76 bool aAutoMount, 77 bool fFailOnError); 97 78 private: 79 80 // wrapped ISharedFolder properies. 81 HRESULT getName(com::Utf8Str &aName); 82 HRESULT getHostPath(com::Utf8Str &aHostPath); 83 HRESULT getAccessible(BOOL *aAccessible); 84 HRESULT getWritable(BOOL *aWritable); 85 HRESULT getAutoMount(BOOL *aAutoMount); 86 HRESULT getLastAccessError(com::Utf8Str &aLastAccessError); 98 87 99 88 VirtualBoxBase * const mParent; -
trunk/src/VBox/Main/src-all/SharedFolderImpl.cpp
r46820 r50919 111 111 unconst(mMachine) = aMachine; 112 112 113 HRESULT rc = protectedInit(aMachine, aName, aHostPath, aWritable, aAutoMount, fFailOnError);113 HRESULT rc = i_protectedInit(aMachine, aName, aHostPath, aWritable, aAutoMount, fFailOnError); 114 114 115 115 /* Confirm a successful initialization when it's the case */ … … 140 140 unconst(mMachine) = aMachine; 141 141 142 HRESULT rc = protectedInit(aMachine,143 aThat->m->strName,144 aThat->m->strHostPath,145 aThat->m->fWritable,146 aThat->m->fAutoMount,147 false /* fFailOnError */ );142 HRESULT rc = i_protectedInit(aMachine, 143 aThat->m->strName, 144 aThat->m->strHostPath, 145 aThat->m->fWritable, 146 aThat->m->fAutoMount, 147 false /* fFailOnError */ ); 148 148 149 149 /* Confirm a successful initialization when it's the case */ … … 221 221 unconst(mConsole) = aConsole; 222 222 223 HRESULT rc = protectedInit(aConsole, aName, aHostPath, aWritable, aAutoMount, fFailOnError);223 HRESULT rc = i_protectedInit(aConsole, aName, aHostPath, aWritable, aAutoMount, fFailOnError); 224 224 225 225 /* Confirm a successful initialization when it's the case */ … … 237 237 * Must be called from under the object's lock! 238 238 */ 239 HRESULT SharedFolder:: protectedInit(VirtualBoxBase *aParent,240 const Utf8Str &aName,241 const Utf8Str &aHostPath,242 bool aWritable,243 bool aAutoMount,244 bool fFailOnError)239 HRESULT SharedFolder::i_protectedInit(VirtualBoxBase *aParent, 240 const Utf8Str &aName, 241 const Utf8Str &aHostPath, 242 bool aWritable, 243 bool aAutoMount, 244 bool fFailOnError) 245 245 { 246 246 LogFlowThisFunc(("aName={%s}, aHostPath={%s}, aWritable={%d}, aAutoMount={%d}\n", … … 322 322 } 323 323 324 // ISharedFolder properties324 // wrapped ISharedFolder properties 325 325 ///////////////////////////////////////////////////////////////////////////// 326 327 STDMETHODIMP SharedFolder::COMGETTER(Name) (BSTR *aName) 328 { 329 CheckComArgOutPointerValid(aName); 330 331 AutoCaller autoCaller(this); 332 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 333 326 HRESULT SharedFolder::getName(com::Utf8Str &aName) 327 { 334 328 /* mName is constant during life time, no need to lock */ 335 m->strName.cloneTo(aName); 336 337 return S_OK; 338 } 339 340 STDMETHODIMP SharedFolder::COMGETTER(HostPath) (BSTR *aHostPath) 341 { 342 CheckComArgOutPointerValid(aHostPath); 343 344 AutoCaller autoCaller(this); 345 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 346 329 aName = m->strName; 330 331 return S_OK; 332 } 333 334 HRESULT SharedFolder::getHostPath(com::Utf8Str &aHostPath) 335 { 347 336 /* mHostPath is constant during life time, no need to lock */ 348 m->strHostPath.cloneTo(aHostPath); 349 350 return S_OK; 351 } 352 353 STDMETHODIMP SharedFolder::COMGETTER(Accessible) (BOOL *aAccessible) 354 { 355 CheckComArgOutPointerValid(aAccessible); 356 357 AutoCaller autoCaller(this); 358 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 359 337 aHostPath = m->strHostPath; 338 339 return S_OK; 340 } 341 342 HRESULT SharedFolder::getAccessible(BOOL *aAccessible) 343 { 360 344 /* mName and mHostPath are constant during life time, no need to lock */ 361 345 … … 382 366 383 367 *aAccessible = FALSE; 384 return S_OK; 385 } 386 387 STDMETHODIMP SharedFolder::COMGETTER(Writable) (BOOL *aWritable) 388 { 389 CheckComArgOutPointerValid(aWritable); 390 391 AutoCaller autoCaller(this); 392 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 393 368 369 return S_OK; 370 } 371 372 HRESULT SharedFolder::getWritable(BOOL *aWritable) 373 { 394 374 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 395 375 … … 399 379 } 400 380 401 STDMETHODIMP SharedFolder::COMGETTER(AutoMount) (BOOL *aAutoMount) 402 { 403 CheckComArgOutPointerValid(aAutoMount); 404 405 AutoCaller autoCaller(this); 406 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 407 381 HRESULT SharedFolder::getAutoMount(BOOL *aAutoMount) 382 { 408 383 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 409 384 … … 413 388 } 414 389 415 STDMETHODIMP SharedFolder::COMGETTER(LastAccessError) (BSTR *aLastAccessError) 416 { 417 CheckComArgOutPointerValid(aLastAccessError); 418 419 AutoCaller autoCaller(this); 420 if (FAILED(autoCaller.rc())) return autoCaller.rc(); 421 390 HRESULT SharedFolder::getLastAccessError(com::Utf8Str &aLastAccessError) 391 { 422 392 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); 423 393 424 m->strLastAccessError.cloneTo(aLastAccessError); 425 426 return S_OK; 427 } 428 429 const Utf8Str& SharedFolder::getName() const 394 aLastAccessError = m->strLastAccessError; 395 396 return S_OK; 397 } 398 399 400 const Utf8Str& SharedFolder::i_getName() const 430 401 { 431 402 return m->strName; 432 403 } 433 404 434 const Utf8Str& SharedFolder:: getHostPath() const405 const Utf8Str& SharedFolder::i_getHostPath() const 435 406 { 436 407 return m->strHostPath; 437 408 } 438 409 439 bool SharedFolder::i sWritable() const410 bool SharedFolder::i_isWritable() const 440 411 { 441 412 return m->fWritable; 442 413 } 443 414 444 bool SharedFolder::i sAutoMounted() const415 bool SharedFolder::i_isAutoMounted() const 445 416 { 446 417 return m->fAutoMount; -
trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
r50914 r50919 1612 1612 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS); 1613 1613 1614 Utf8Str name = pSF-> getName();1614 Utf8Str name = pSF->i_getName(); 1615 1615 vrc = SSMR3PutU32(pSSM, (uint32_t)name.length() + 1 /* term. 0 */); 1616 1616 AssertRC(vrc); … … 1618 1618 AssertRC(vrc); 1619 1619 1620 Utf8Str hostPath = pSF-> getHostPath();1620 Utf8Str hostPath = pSF->i_getHostPath(); 1621 1621 vrc = SSMR3PutU32(pSSM, (uint32_t)hostPath.length() + 1 /* term. 0 */); 1622 1622 AssertRC(vrc); … … 1624 1624 AssertRC(vrc); 1625 1625 1626 vrc = SSMR3PutBool(pSSM, !!pSF->i sWritable());1626 vrc = SSMR3PutBool(pSSM, !!pSF->i_isWritable()); 1627 1627 AssertRC(vrc); 1628 1628 1629 vrc = SSMR3PutBool(pSSM, !!pSF->i sAutoMounted());1629 vrc = SSMR3PutBool(pSSM, !!pSF->i_isAutoMounted()); 1630 1630 AssertRC(vrc); 1631 1631 } … … 6604 6604 AutoCaller sfCaller(pSF); 6605 6605 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS); 6606 sharedFolders[it->first] = SharedFolderData(pSF-> getHostPath(),6607 pSF->i sWritable(),6608 pSF->i sAutoMounted());6606 sharedFolders[it->first] = SharedFolderData(pSF->i_getHostPath(), 6607 pSF->i_isWritable(), 6608 pSF->i_isAutoMounted()); 6609 6609 } 6610 6610 } -
trunk/src/VBox/Main/src-client/xpcom/module.cpp
r50914 r50919 76 76 NS_DECL_CLASSINFO(RemoteUSBDevice) 77 77 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(RemoteUSBDevice, IHostUSBDevice, IUSBDevice) 78 NS_DECL_CLASSINFO(SharedFolder)79 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SharedFolder, ISharedFolder)80 78 NS_DECL_CLASSINFO(VRDEServerInfo) 81 79 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(VRDEServerInfo, IVRDEServerInfo) -
trunk/src/VBox/Main/src-server/MachineImpl.cpp
r50874 r50919 8988 8988 SharedFolder *pSF = *it; 8989 8989 AutoCaller autoCaller(pSF); 8990 if (pSF-> getName() == aName)8990 if (pSF->i_getName() == aName) 8991 8991 { 8992 8992 aSharedFolder = pSF; … … 10758 10758 AutoReadLock sfLock(pSF COMMA_LOCKVAL_SRC_POS); 10759 10759 settings::SharedFolder sf; 10760 sf.strName = pSF-> getName();10761 sf.strHostPath = pSF-> getHostPath();10762 sf.fWritable = !!pSF->i sWritable();10763 sf.fAutoMount = !!pSF->i sAutoMounted();10760 sf.strName = pSF->i_getName(); 10761 sf.strHostPath = pSF->i_getHostPath(); 10762 sf.fWritable = !!pSF->i_isWritable(); 10763 sf.fAutoMount = !!pSF->i_isAutoMounted(); 10764 10764 10765 10765 data.llSharedFolders.push_back(sf); -
trunk/src/VBox/Main/src-server/xpcom/server.cpp
r50914 r50919 117 117 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(ProgressProxy, IProgress) 118 118 119 NS_DECL_CLASSINFO(SharedFolder)120 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SharedFolder, ISharedFolder)121 122 119 #ifdef VBOX_WITH_USB 123 120
Note:
See TracChangeset
for help on using the changeset viewer.