- Timestamp:
- Nov 21, 2023 10:38:17 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160311
- Location:
- trunk/src/libs/xpcom18a4/xpcom/components
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/components/nsCategoryManager.cpp
r101976 r102186 356 356 357 357 struct persistent_userstruct { 358 PR FileDesc*fd;358 PRTSTREAM fd; 359 359 const char* categoryName; 360 360 PRBool success; … … 370 370 371 371 if (aLeaf->pValue) { 372 if ( PR_fprintf(args->fd,373 "%s,%s,%s\n",374 args->categoryName,375 aLeaf->GetKey(),376 aLeaf->pValue) == (PRUint32)-1) {372 if (RTStrmPrintf(args->fd, 373 "%s,%s,%s\n", 374 args->categoryName, 375 aLeaf->GetKey(), 376 aLeaf->pValue) == -1) { 377 377 args->success = PR_FALSE; 378 378 status = PL_DHASH_STOP; … … 384 384 385 385 PRBool 386 CategoryNode::WritePersistentEntries(PR FileDesc*fd, const char* aCategoryName)386 CategoryNode::WritePersistentEntries(PRTSTREAM fd, const char* aCategoryName) 387 387 { 388 388 persistent_userstruct args = { … … 645 645 646 646 struct writecat_struct { 647 PR FileDesc*fd;647 PRTSTREAM fd; 648 648 PRBool success; 649 649 }; … … 665 665 666 666 NS_METHOD 667 nsCategoryManager::WriteCategoryManagerToRegistry(PR FileDesc*fd)667 nsCategoryManager::WriteCategoryManagerToRegistry(PRTSTREAM fd) 668 668 { 669 669 writecat_struct args = { -
trunk/src/libs/xpcom18a4/xpcom/components/nsCategoryManager.h
r101976 r102186 46 46 47 47 #include <iprt/semaphore.h> 48 #include <iprt/stream.h> 48 49 49 50 #define NS_CATEGORYMANAGER_CLASSNAME "Category Manager" … … 110 111 NS_METHOD Enumerate(nsISimpleEnumerator** _retval); 111 112 112 PRBool WritePersistentEntries(PR FileDesc*fd, const char* aCategoryName);113 PRBool WritePersistentEntries(PRTSTREAM fd, const char* aCategoryName); 113 114 114 115 // CategoryNode is arena-allocated, with the strings … … 142 143 * This is to be used by nsComponentManagerImpl (and NO ONE ELSE). 143 144 */ 144 NS_METHOD WriteCategoryManagerToRegistry(PR FileDesc*fd);145 NS_METHOD WriteCategoryManagerToRegistry(PRTSTREAM fd); 145 146 146 147 nsCategoryManager() : mLock(nsnull) { } -
trunk/src/libs/xpcom18a4/xpcom/components/nsComponentManager.cpp
r102175 r102186 88 88 89 89 #include <iprt/assert.h> 90 #include <iprt/file.h> 91 #include <iprt/stream.h> 90 92 #include <iprt/string.h> 91 93 #include <VBox/log.h> … … 1276 1278 struct PersistentWriterArgs 1277 1279 { 1278 PR FileDesc *mFD;1280 PRTSTREAM mFD; 1279 1281 nsLoaderdata *mLoaderData; 1280 1282 }; … … 1296 1298 return PL_DHASH_NEXT; 1297 1299 1298 PR FileDesc*fd = ((PersistentWriterArgs*)arg)->mFD;1300 PRTSTREAM fd = ((PersistentWriterArgs*)arg)->mFD; 1299 1301 1300 1302 char cidString[UID_STRING_LENGTH]; 1301 1303 GetIDString(factoryEntry->mCid, cidString); 1302 PR_fprintf(fd, "%s,%s\n", contractID, cidString); // what if this fails?1304 RTStrmPrintf(fd, "%s,%s\n", contractID, cidString); // what if this fails? 1303 1305 return PL_DHASH_NEXT; 1304 1306 } … … 1311 1313 { 1312 1314 nsFactoryEntry *factoryEntry = ((nsFactoryTableEntry*)hdr)->mFactoryEntry; 1313 PR FileDesc*fd = ((PersistentWriterArgs*)arg)->mFD;1315 PRTSTREAM fd = ((PersistentWriterArgs*)arg)->mFD; 1314 1316 nsLoaderdata *loaderData = ((PersistentWriterArgs*)arg)->mLoaderData; 1315 1317 … … 1341 1343 1342 1344 // cid,contract_id,type,class_name,inproc_server 1343 PR_fprintf(fd,1344 "%s,%s,%s,%s,%s\n",1345 cidString,1346 (contractID ? contractID : ""),1347 (loaderName ? loaderName : ""),1348 (className ? className : ""),1349 (location ? location : ""));1345 RTStrmPrintf(fd, 1346 "%s,%s,%s,%s,%s\n", 1347 cidString, 1348 (contractID ? contractID : ""), 1349 (loaderName ? loaderName : ""), 1350 (className ? className : ""), 1351 (location ? location : "")); 1350 1352 1351 1353 if (contractID) … … 1360 1362 AutoRegEntryWriter(nsHashKey *aKey, void *aData, void* aClosure) 1361 1363 { 1362 PR FileDesc* fd = (PRFileDesc*) aClosure;1364 PRTSTREAM fd = (PRTSTREAM) aClosure; 1363 1365 AutoRegEntry* entry = (AutoRegEntry*) aData; 1364 1366 … … 1369 1371 else 1370 1372 fmt = "%s,%lld\n"; 1371 PR_fprintf(fd, fmt, entry->GetName().get(), entry->GetDate(), extraData);1373 RTStrmPrintf(fd, fmt, entry->GetName().get(), entry->GetDate(), extraData); 1372 1374 1373 1375 return PR_TRUE; … … 1395 1397 localFile->SetNativeLeafName(leafName); 1396 1398 1397 PRFileDesc* fd = nsnull;1398 nsresult rv = localFile-> OpenNSPRFileDesc(PR_WRONLY | PR_CREATE_FILE | PR_TRUNCATE, 0600, &fd);1399 nsCAutoString pathName; 1400 nsresult rv = localFile->GetNativePath(pathName); 1399 1401 if (NS_FAILED(rv)) 1400 1402 return rv; 1401 1403 1402 if (PR_fprintf(fd, "Generated File. Do not edit.\n") == (PRUint32) -1) { 1404 RTFILE hFile = NIL_RTFILE; 1405 PRTSTREAM pStream = NULL; 1406 int vrc = RTFileOpen(&hFile, pathName.get(), 1407 RTFILE_O_CREATE | RTFILE_O_WRITE | RTFILE_O_TRUNCATE | RTFILE_O_DENY_NONE 1408 | (0600 << RTFILE_O_CREATE_MODE_SHIFT)); 1409 if (RT_SUCCESS(vrc)) 1410 { 1411 vrc = RTStrmOpenFileHandle(hFile, "at", 0 /*fFlags*/, &pStream); 1412 if (RT_FAILURE(vrc)) 1413 { 1414 RTFileClose(hFile); 1415 return NS_ERROR_UNEXPECTED; 1416 } 1417 } 1418 else 1419 return NS_ERROR_UNEXPECTED; 1420 1421 if (RTStrmPrintf(pStream, "Generated File. Do not edit.\n") == -1) { 1403 1422 rv = NS_ERROR_UNEXPECTED; 1404 1423 goto out; 1405 1424 } 1406 1425 1407 if ( PR_fprintf(fd, "\n[HEADER]\nVersion,%d,%d\n",1426 if (RTStrmPrintf(pStream, "\n[HEADER]\nVersion,%d,%d\n", 1408 1427 PERSISTENT_REGISTRY_VERSION_MAJOR, 1409 PERSISTENT_REGISTRY_VERSION_MINOR) == (PRUint32)-1) {1428 PERSISTENT_REGISTRY_VERSION_MINOR) == -1) { 1410 1429 rv = NS_ERROR_UNEXPECTED; 1411 1430 goto out; 1412 1431 } 1413 1432 1414 if ( PR_fprintf(fd, "\n[COMPONENTS]\n") == (PRUint32)-1) {1433 if (RTStrmPrintf(pStream, "\n[COMPONENTS]\n") == -1) { 1415 1434 rv = NS_ERROR_UNEXPECTED; 1416 1435 goto out; 1417 1436 } 1418 1437 1419 mAutoRegEntries.Enumerate(AutoRegEntryWriter, (void*) fd);1438 mAutoRegEntries.Enumerate(AutoRegEntryWriter, (void*)pStream); 1420 1439 1421 1440 PersistentWriterArgs args; 1422 args.mFD = fd;1441 args.mFD = pStream; 1423 1442 args.mLoaderData = mLoaderData; 1424 1443 1425 if ( PR_fprintf(fd, "\n[CLASSIDS]\n") == (PRUint32)-1) {1444 if (RTStrmPrintf(pStream, "\n[CLASSIDS]\n") == -1) { 1426 1445 rv = NS_ERROR_UNEXPECTED; 1427 1446 goto out; … … 1431 1450 PL_DHashTableEnumerate(&mFactories, ClassIDWriter, (void*)&args); 1432 1451 1433 if ( PR_fprintf(fd, "\n[CONTRACTIDS]\n") == (PRUint32)-1) {1452 if (RTStrmPrintf(pStream, "\n[CONTRACTIDS]\n") == -1) { 1434 1453 rv = NS_ERROR_UNEXPECTED; 1435 1454 goto out; … … 1439 1458 PL_DHashTableEnumerate(&mContractIDs, ContractIDWriter, (void*)&args); 1440 1459 1441 if ( PR_fprintf(fd, "\n[CATEGORIES]\n") == (PRUint32)-1) {1460 if (RTStrmPrintf(pStream, "\n[CATEGORIES]\n") == -1) { 1442 1461 rv = NS_ERROR_UNEXPECTED; 1443 1462 goto out; … … 1449 1468 rv = NS_ERROR_UNEXPECTED; 1450 1469 } else { 1451 rv = mCategoryManager->WriteCategoryManagerToRegistry( fd);1470 rv = mCategoryManager->WriteCategoryManagerToRegistry(pStream); 1452 1471 } 1453 1472 1454 1473 out: 1455 if ( fd)1456 PR_Close(fd);1474 if (pStream) 1475 RTStrmClose(pStream); 1457 1476 1458 1477 // don't create the file is there was a problem????
Note:
See TracChangeset
for help on using the changeset viewer.