Changeset 59087 in vbox for trunk/src/VBox/Main
- Timestamp:
- Dec 11, 2015 11:04:51 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104649
- Location:
- trunk/src/VBox/Main
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ThreadTask.h
r58552 r59087 22 22 struct ThreadVoidData 23 23 { 24 /* 25 * The class ThreadVoidData is used as a base class for any data which we want to pass into a thread 26 */ 24 27 public: 25 28 ThreadVoidData(){}; -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r56398 r59087 381 381 382 382 #ifdef RT_OS_WINDOWS 383 friend class StartSVCHelperClientData; 383 384 static DECLCALLBACK(int) SVCHelperClientThread(RTTHREAD aThread, void *aUser); 384 385 #endif 386 385 387 }; 386 388 -
trunk/src/VBox/Main/src-all/ThreadTask.cpp
r58519 r59087 43 43 delete this; 44 44 } 45 catch(std::exception& e)45 catch(std::exception& ) 46 46 { 47 47 rc = E_FAIL; … … 74 74 catch(HRESULT eRC) 75 75 { 76 rc = E_FAIL;76 rc = eRC; 77 77 } 78 catch(std::exception& e)78 catch(std::exception& ) 79 79 { 80 80 rc = E_FAIL; -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r58132 r59087 82 82 # include "win/svchlp.h" 83 83 # include "win/VBoxComEvents.h" 84 #include "ThreadTask.h" 84 85 #endif 85 86 … … 2391 2392 #ifdef RT_OS_WINDOWS 2392 2393 2393 struct StartSVCHelperClientData 2394 { 2394 class StartSVCHelperClientData : public ThreadTask 2395 { 2396 public: 2397 StartSVCHelperClientData() 2398 { 2399 LogFlowFuncEnter(); 2400 m_strTaskName = "SVCHelper"; 2401 threadVoidData = NULL; 2402 initialized = false; 2403 } 2404 2405 virtual ~StartSVCHelperClientData() 2406 { 2407 LogFlowFuncEnter(); 2408 if (threadVoidData!=NULL) 2409 { 2410 delete threadVoidData; 2411 threadVoidData=NULL; 2412 } 2413 }; 2414 2415 void handler() 2416 { 2417 int vrc = VirtualBox::SVCHelperClientThread(NULL, this); 2418 } 2419 2420 const ComPtr<Progress>& GetProgressObject() const {return progress;} 2421 2422 bool init(VirtualBox* aVbox, 2423 Progress* aProgress, 2424 bool aPrivileged, 2425 VirtualBox::SVCHelperClientFunc aFunc, 2426 void *aUser) 2427 { 2428 LogFlowFuncEnter(); 2429 that = aVbox; 2430 progress = aProgress; 2431 privileged = aPrivileged; 2432 func = aFunc; 2433 user = aUser; 2434 2435 initThreadVoidData(); 2436 2437 initialized = true; 2438 2439 return initialized; 2440 } 2441 2442 bool isOk() const{ return initialized;} 2443 2444 bool initialized; 2395 2445 ComObjPtr<VirtualBox> that; 2396 2446 ComObjPtr<Progress> progress; … … 2398 2448 VirtualBox::SVCHelperClientFunc func; 2399 2449 void *user; 2450 ThreadVoidData *threadVoidData; 2451 2452 private: 2453 bool initThreadVoidData() 2454 { 2455 LogFlowFuncEnter(); 2456 threadVoidData = static_cast<ThreadVoidData*>(user); 2457 return true; 2458 } 2400 2459 }; 2401 2460 … … 2452 2511 void *aUser, Progress *aProgress) 2453 2512 { 2513 LogFlowFuncEnter(); 2454 2514 AssertReturn(aFunc, E_POINTER); 2455 2515 AssertReturn(aProgress, E_POINTER); … … 2459 2519 2460 2520 /* create the SVCHelperClientThread() argument */ 2461 std::auto_ptr <StartSVCHelperClientData> 2462 d(new StartSVCHelperClientData()); 2463 AssertReturn(d.get(), E_OUTOFMEMORY); 2464 2465 d->that = this; 2466 d->progress = aProgress; 2467 d->privileged = aPrivileged; 2468 d->func = aFunc; 2469 d->user = aUser; 2470 2521 2522 HRESULT hr = S_OK; 2523 StartSVCHelperClientData *pTask = NULL; 2471 2524 RTTHREAD tid = NIL_RTTHREAD; 2472 int vrc = RTThreadCreate(&tid, SVCHelperClientThread, 2473 static_cast <void *>(d.get()), 2474 0, RTTHREADTYPE_MAIN_WORKER, 2475 RTTHREADFLAGS_WAITABLE, "SVCHelper"); 2476 if (RT_FAILURE(vrc)) 2477 return setError(E_FAIL, "Could not create SVCHelper thread (%Rrc)", vrc); 2478 2479 /* d is now owned by SVCHelperClientThread(), so release it */ 2480 d.release(); 2481 2482 return S_OK; 2525 try 2526 { 2527 pTask = new StartSVCHelperClientData(); 2528 2529 pTask->init(this, aProgress, aPrivileged, aFunc, aUser); 2530 2531 if (!pTask->isOk()) 2532 { 2533 delete pTask; 2534 LogRel(("Could not init StartSVCHelperClientData object \n")); 2535 throw E_FAIL; 2536 } 2537 2538 //this function delete pTask in case of exceptions, so there is no need in the call of delete operator 2539 hr = pTask->createThread(&tid, RTTHREADTYPE_MAIN_WORKER); 2540 2541 } 2542 catch(std::bad_alloc &) 2543 { 2544 hr = setError(E_OUTOFMEMORY); 2545 } 2546 catch(...) 2547 { 2548 LogRel(("Could not create thread for StartSVCHelperClientData \n")); 2549 hr = E_FAIL; 2550 } 2551 2552 return hr; 2483 2553 } 2484 2554 … … 2492 2562 LogFlowFuncEnter(); 2493 2563 2494 std::auto_ptr<StartSVCHelperClientData> 2495 d(static_cast<StartSVCHelperClientData*>(aUser)); 2496 2564 StartSVCHelperClientData* d = static_cast<StartSVCHelperClientData*>(aUser); 2497 2565 HRESULT rc = S_OK; 2498 2566 bool userFuncCalled = false; … … 2500 2568 do 2501 2569 { 2502 AssertBreakStmt(d .get(), rc = E_POINTER);2570 AssertBreakStmt(d, rc = E_POINTER); 2503 2571 AssertReturn(!d->progress.isNull(), E_POINTER); 2504 2572 -
trunk/src/VBox/Main/src-server/win/NetIf-win.cpp
r59082 r59087 46 46 #include "VirtualBoxImpl.h" 47 47 #include "netif.h" 48 #include "ThreadTask.h" 48 49 49 50 #ifdef VBOX_WITH_NETFLT … … 237 238 }; 238 239 239 struct NetworkInterfaceHelperClientData 240 { 240 class NetworkInterfaceHelperClientData : public ThreadVoidData 241 { 242 public: 243 NetworkInterfaceHelperClientData(){}; 244 ~NetworkInterfaceHelperClientData(){}; 245 241 246 SVCHlpMsg::Code msgCode; 242 247 /* for SVCHlpMsg::CreateHostOnlyNetworkInterface */ … … 253 258 } u; 254 259 255 256 260 }; 257 261 … … 269 273 AssertReturn(aUser, E_POINTER); 270 274 271 std::auto_ptr<NetworkInterfaceHelperClientData> 272 d(static_cast<NetworkInterfaceHelperClientData *>(aUser)); 275 NetworkInterfaceHelperClientData* d = static_cast<NetworkInterfaceHelperClientData *>(aUser); 273 276 274 277 if (aClient == NULL) … … 1161 1164 1162 1165 /* create the networkInterfaceHelperClient() argument */ 1163 std::auto_ptr<NetworkInterfaceHelperClientData> 1164 d(new NetworkInterfaceHelperClientData()); 1165 AssertReturn(d.get(), E_OUTOFMEMORY); 1166 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1166 1167 1167 1168 d->msgCode = SVCHlpMsg::CreateHostOnlyNetworkInterface; … … 1172 1173 rc = pVirtualBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1173 1174 netIfNetworkInterfaceHelperClient, 1174 static_cast<void *>(d .get()),1175 static_cast<void *>(d), 1175 1176 progress); 1176 if (SUCCEEDED(rc)) 1177 { 1178 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */ 1179 d.release(); 1180 } 1177 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1178 1181 1179 } 1182 1180 } … … 1208 1206 1209 1207 /* create the networkInterfaceHelperClient() argument */ 1210 std::auto_ptr<NetworkInterfaceHelperClientData> 1211 d(new NetworkInterfaceHelperClientData()); 1212 AssertReturn(d.get(), E_OUTOFMEMORY); 1208 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1213 1209 1214 1210 d->msgCode = SVCHlpMsg::RemoveHostOnlyNetworkInterface; … … 1217 1213 rc = pVirtualBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1218 1214 netIfNetworkInterfaceHelperClient, 1219 static_cast<void *>(d .get()),1215 static_cast<void *>(d), 1220 1216 progress); 1221 1222 if (SUCCEEDED(rc)) 1223 { 1224 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */ 1225 d.release(); 1226 } 1217 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1218 1227 1219 } 1228 1220 } … … 1262 1254 1263 1255 /* create the networkInterfaceHelperClient() argument */ 1264 std::auto_ptr<NetworkInterfaceHelperClientData> 1265 d(new NetworkInterfaceHelperClientData()); 1266 AssertReturn(d.get(), E_OUTOFMEMORY); 1256 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1267 1257 1268 1258 d->msgCode = SVCHlpMsg::EnableStaticIpConfig; … … 1274 1264 rc = vBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1275 1265 netIfNetworkInterfaceHelperClient, 1276 static_cast<void *>(d .get()),1266 static_cast<void *>(d), 1277 1267 progress); 1268 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1278 1269 1279 1270 if (SUCCEEDED(rc)) 1280 1271 { 1281 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */1282 d.release();1283 1284 1272 progress->WaitForCompletion(-1); 1285 1273 } … … 1324 1312 1325 1313 /* create the networkInterfaceHelperClient() argument */ 1326 std::auto_ptr<NetworkInterfaceHelperClientData> 1327 d(new NetworkInterfaceHelperClientData()); 1328 AssertReturn(d.get(), E_OUTOFMEMORY); 1314 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1329 1315 1330 1316 d->msgCode = SVCHlpMsg::EnableStaticIpConfigV6; … … 1336 1322 rc = vBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1337 1323 netIfNetworkInterfaceHelperClient, 1338 static_cast<void *>(d .get()),1324 static_cast<void *>(d), 1339 1325 progress); 1326 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1340 1327 1341 1328 if (SUCCEEDED(rc)) 1342 1329 { 1343 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */1344 d.release();1345 1346 1330 progress->WaitForCompletion(-1); 1347 1331 } … … 1385 1369 1386 1370 /* create the networkInterfaceHelperClient() argument */ 1387 std::auto_ptr<NetworkInterfaceHelperClientData> 1388 d(new NetworkInterfaceHelperClientData()); 1389 AssertReturn(d.get(), E_OUTOFMEMORY); 1371 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1390 1372 1391 1373 d->msgCode = SVCHlpMsg::EnableDynamicIpConfig; … … 1395 1377 rc = vBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1396 1378 netIfNetworkInterfaceHelperClient, 1397 static_cast<void *>(d .get()),1379 static_cast<void *>(d), 1398 1380 progress); 1381 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1399 1382 1400 1383 if (SUCCEEDED(rc)) 1401 1384 { 1402 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */1403 d.release();1404 1405 1385 progress->WaitForCompletion(-1); 1406 1386 } … … 1444 1424 1445 1425 /* create the networkInterfaceHelperClient() argument */ 1446 std::auto_ptr<NetworkInterfaceHelperClientData> 1447 d(new NetworkInterfaceHelperClientData()); 1448 AssertReturn(d.get(), E_OUTOFMEMORY); 1426 NetworkInterfaceHelperClientData* d = new NetworkInterfaceHelperClientData(); 1449 1427 1450 1428 d->msgCode = SVCHlpMsg::DhcpRediscover; … … 1454 1432 rc = vBox->i_startSVCHelperClient(IsUACEnabled() == TRUE /* aPrivileged */, 1455 1433 netIfNetworkInterfaceHelperClient, 1456 static_cast<void *>(d .get()),1434 static_cast<void *>(d), 1457 1435 progress); 1436 /* d is now owned by netIfNetworkInterfaceHelperClient(), no need to delete one here */ 1458 1437 1459 1438 if (SUCCEEDED(rc)) 1460 1439 { 1461 /* d is now owned by netIfNetworkInterfaceHelperClient(), so release it */1462 d.release();1463 1464 1440 progress->WaitForCompletion(-1); 1465 1441 }
Note:
See TracChangeset
for help on using the changeset viewer.