Changeset 71328 in vbox for trunk/src/VBox/HostServices/GuestControl
- Timestamp:
- Mar 14, 2018 2:31:47 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121279
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestControl/service.cpp
r71320 r71328 558 558 559 559 return rc; 560 } 561 562 /** Returns the pointer to the current host command in a client's list. 563 * NULL if no current command available. */ 564 const HostCommand *GetCurrent(void) 565 { 566 if (!mHostCmdList.size()) 567 return NULL; 568 569 return (*mHostCmdList.begin()); 560 570 } 561 571 … … 1019 1029 int clientSetMsgFilterSet(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 1020 1030 int clientSetMsgFilterUnset(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 1021 int client SkipMsg(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);1031 int clientMsgSkip(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]); 1022 1032 int cancelHostCmd(uint32_t u32ContextID); 1023 1033 int cancelPendingWaits(uint32_t u32ClientID, int rcPending); … … 1249 1259 } 1250 1260 1251 int Service::clientSkipMsg(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, 1261 /** 1262 * A client tells this service that the current command can be skipped and therefore can be removed 1263 * from the internal command list. 1264 * 1265 * This also tells the host callback(s) waiting for a reply for this command that this command 1266 * has been skipped by returning VERR_NOT_SUPPORTED to the host. 1267 * 1268 * @return VBox status code. 1269 * @param u32ClientID The client's ID. 1270 * @param callHandle The client's call handle. 1271 * @param cParms Number of parameters. 1272 * @param paParms Array of parameters. 1273 */ 1274 int Service::clientMsgSkip(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, 1252 1275 uint32_t cParms, VBOXHGCMSVCPARM paParms[]) 1253 1276 { 1254 RT_NOREF(callHandle, paParms); 1277 RT_NOREF(callHandle, cParms, paParms); 1278 1279 int rc; 1255 1280 1256 1281 /* … … 1259 1284 */ 1260 1285 ClientStateMapIter itClientState = mClientStateMap.find(u32ClientID); 1261 AssertMsg(itClientState != mClientStateMap.end(), ("Client ID=%RU32 not found when it should be present\n", 1262 u32ClientID)); 1263 if (itClientState == mClientStateMap.end()) 1264 return VERR_NOT_FOUND; /* Should never happen. */ 1265 1266 if (cParms != 1) 1267 return VERR_INVALID_PARAMETER; 1268 1269 LogFlowFunc(("[Client %RU32] Skipping current message ...\n", u32ClientID)); 1270 1271 itClientState->second.DequeueCurrent(); 1272 1273 return VINF_SUCCESS; 1286 AssertMsg(itClientState != mClientStateMap.end(), ("Client ID=%RU32 not found when it should be present\n", u32ClientID)); 1287 if (itClientState != mClientStateMap.end()) 1288 { 1289 const HostCommand *pCurCmd = itClientState->second.GetCurrent(); 1290 if (pCurCmd) 1291 { 1292 /* Tell the host that the guest did not handle the current command. */ 1293 uint32_t cHstParms = 0; 1294 VBOXHGCMSVCPARM aHstParms[4]; 1295 aHstParms[cHstParms++].setUInt32(pCurCmd->mContextID); 1296 aHstParms[cHstParms++].setUInt32(0); /* Notification type (None / generic). */ 1297 aHstParms[cHstParms++].setUInt32(VERR_NOT_SUPPORTED); 1298 aHstParms[cHstParms++].setPointer(NULL, 0); /* Payload (none). */ 1299 1300 itClientState->second.DequeueCurrent(); 1301 1302 rc = hostCallback(GUEST_MSG_REPLY, cHstParms, aHstParms); 1303 } 1304 else 1305 rc = VERR_NOT_FOUND; /* Should never happen. */ 1306 } 1307 else 1308 rc = VERR_NOT_FOUND; /* Ditto. */ 1309 1310 LogFlowFunc(("[Client %RU32] Skipped current message, rc=%Rrc\n", u32ClientID, rc)); 1311 return rc; 1274 1312 } 1275 1313 … … 1483 1521 case GUEST_MSG_SKIP: 1484 1522 LogFlowFunc(("[Client %RU32] GUEST_MSG_SKIP\n", u32ClientID)); 1485 rc = client SkipMsg(u32ClientID, callHandle, cParms, paParms);1523 rc = clientMsgSkip(u32ClientID, callHandle, cParms, paParms); 1486 1524 break; 1487 1525
Note:
See TracChangeset
for help on using the changeset viewer.