VirtualBox

Ignore:
Timestamp:
Mar 14, 2018 2:31:47 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
121279
Message:

Guest Control/service: Renamed clientSkipMsg() -> clientMsgSkip() and also let the host know that the current message has been skipped.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/GuestControl/service.cpp

    r71320 r71328  
    558558
    559559        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());
    560570    }
    561571
     
    10191029    int clientSetMsgFilterSet(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    10201030    int clientSetMsgFilterUnset(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    1021     int clientSkipMsg(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
     1031    int clientMsgSkip(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle, uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    10221032    int cancelHostCmd(uint32_t u32ContextID);
    10231033    int cancelPendingWaits(uint32_t u32ClientID, int rcPending);
     
    12491259}
    12501260
    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 */
     1274int Service::clientMsgSkip(uint32_t u32ClientID, VBOXHGCMCALLHANDLE callHandle,
    12521275                           uint32_t cParms, VBOXHGCMSVCPARM paParms[])
    12531276{
    1254     RT_NOREF(callHandle, paParms);
     1277    RT_NOREF(callHandle, cParms, paParms);
     1278
     1279    int rc;
    12551280
    12561281    /*
     
    12591284     */
    12601285    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;
    12741312}
    12751313
     
    14831521                case GUEST_MSG_SKIP:
    14841522                    LogFlowFunc(("[Client %RU32] GUEST_MSG_SKIP\n", u32ClientID));
    1485                     rc = clientSkipMsg(u32ClientID, callHandle, cParms, paParms);
     1523                    rc = clientMsgSkip(u32ClientID, callHandle, cParms, paParms);
    14861524                    break;
    14871525
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette