Changeset 44098 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Dec 12, 2012 8:31:52 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82633
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServicePropCache.cpp
r36249 r44098 39 39 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheFindInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, uint32_t uFlags) 40 40 { 41 AssertPtr(pCache); 42 AssertPtr(pszName); 41 AssertPtrReturn(pCache, NULL); 42 AssertPtrReturn(pszName, NULL); 43 43 44 /** @todo This is a O(n) lookup, maybe improve this later to O(1) using a 44 45 * map. … … 66 67 PVBOXSERVICEVEPROPCACHEENTRY vboxServicePropCacheInsertEntryInternal(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName) 67 68 { 68 AssertPtr(pszName); 69 AssertPtrReturn(pCache, NULL); 70 AssertPtrReturn(pszName, NULL); 71 69 72 PVBOXSERVICEVEPROPCACHEENTRY pNode = (PVBOXSERVICEVEPROPCACHEENTRY)RTMemAlloc(sizeof(VBOXSERVICEVEPROPCACHEENTRY)); 70 73 if (pNode) 71 74 { 72 75 pNode->pszName = RTStrDup(pszName); 76 if (!pNode->pszName) 77 { 78 RTMemFree(pNode); 79 return VERR_NO_MEMORY; 80 } 73 81 pNode->pszValue = NULL; 74 82 pNode->fFlags = 0; … … 89 97 int vboxServicePropCacheWritePropF(uint32_t u32ClientId, const char *pszName, uint32_t fFlags, const char *pszValueFormat, ...) 90 98 { 91 AssertPtr(pszName); 99 AssertPtrReturn(pszName, VERR_INVALID_POINTER); 100 92 101 int rc; 93 102 if (pszValueFormat != NULL) … … 142 151 int VBoxServicePropCacheCreate(PVBOXSERVICEVEPROPCACHE pCache, uint32_t uClientId) 143 152 { 144 AssertPtr (pCache);153 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 145 154 /** @todo Prevent init the cache twice! 146 155 * r=bird: Use a magic. */ … … 165 174 const char *pszName, uint32_t fFlags, const char *pszValueReset) 166 175 { 167 AssertPtr (pCache);168 AssertPtr (pszName);176 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 177 AssertPtrReturn(pszName, VERR_INVALID_POINTER); 169 178 PVBOXSERVICEVEPROPCACHEENTRY pNode = vboxServicePropCacheFindInternal(pCache, pszName, 0); 170 179 if (pNode == NULL) … … 183 192 RTStrFree(pNode->pszValueReset); 184 193 pNode->pszValueReset = RTStrDup(pszValueReset); 194 AssertPtr(pNode->pszValueReset); 185 195 } 186 196 rc = RTCritSectLeave(&pCache->CritSect); … … 206 216 int VBoxServicePropCacheUpdate(PVBOXSERVICEVEPROPCACHE pCache, const char *pszName, const char *pszValueFormat, ...) 207 217 { 208 AssertPtr (pCache);218 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 209 219 Assert(pCache->uClientID); 210 AssertPtr (pszName);220 AssertPtrReturn(pszName, VERR_INVALID_POINTER); 211 221 212 222 /* … … 251 261 /* Write the update. */ 252 262 rc = vboxServicePropCacheWritePropF(pCache->uClientID, pNode->pszName, pNode->fFlags, pszValue); 263 VBoxServiceVerbose(4, "PropCache %p: Written \"%s\"=\"%s\" (flags: %x), rc=%Rrc\n", 264 pCache, pNode->pszName, pszValue, pNode->fFlags, rc); 253 265 RTStrFree(pNode->pszValue); 254 266 pNode->pszValue = RTStrDup(pszValue); 267 if (!pNode->pszValue) 268 rc = VERR_NO_MEMORY; 255 269 } 256 270 else … … 267 281 rc = vboxServicePropCacheWritePropF(pCache->uClientID, pNode->pszName, 268 282 0, /* Flags */ NULL /* Value */); 283 VBoxServiceVerbose(4, "PropCache %p: Deleted \"%s\"=\"%s\" (flags: %x), rc=%Rrc\n", 284 pCache, pNode->pszName, pNode->pszValue, pNode->fFlags, rc); 269 285 } 270 286 else … … 296 312 int VBoxServicePropCacheUpdateByPath(PVBOXSERVICEVEPROPCACHE pCache, const char *pszValue, uint32_t fFlags, const char *pszPathFormat, ...) 297 313 { 298 AssertPtr(pCache); 299 AssertPtr(pszPathFormat); 314 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 315 AssertPtrReturn(pszPathFormat, VERR_INVALID_POINTER); 316 300 317 int rc = VERR_NOT_FOUND; 301 318 PVBOXSERVICEVEPROPCACHEENTRY pNodeIt = NULL; … … 342 359 int VBoxServicePropCacheFlush(PVBOXSERVICEVEPROPCACHE pCache) 343 360 { 344 AssertPtr(pCache); 361 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 362 345 363 int rc = VINF_SUCCESS; 346 364 PVBOXSERVICEVEPROPCACHEENTRY pNodeIt = NULL; … … 367 385 void VBoxServicePropCacheDestroy(PVBOXSERVICEVEPROPCACHE pCache) 368 386 { 369 AssertPtr (pCache);387 AssertPtrReturn(pCache, VERR_INVALID_POINTER); 370 388 Assert(pCache->uClientID); 371 389
Note:
See TracChangeset
for help on using the changeset viewer.