VirtualBox

Changeset 13179 in vbox for trunk


Ignore:
Timestamp:
Oct 10, 2008 2:45:34 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37709
Message:

HostServices/GuestProperties: only notify Main from HGCM if the guest changed properties, not if Main changed them itself

File:
1 edited

Legend:

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

    r13159 r13179  
    214214    int getPropValue(uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    215215    int getProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    216     int setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    217     int delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
     216    int setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify);
     217    int delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify);
    218218    int enumProps(uint32_t cParms, VBOXHGCMSVCPARM paParms[]);
    219219    void notifyHost(const char *pszProperty);
     
    446446 * @thread  HGCM
    447447 */
    448 int Service::setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
     448int Service::setProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify)
    449449{
    450450    int rc = VINF_SUCCESS;
     
    524524    if (RT_SUCCESS(rc))
    525525    {
    526         notifyHost(pszName);
     526        if (notify)
     527            notifyHost(pszName);
    527528        Log2(("Set string %s, rc=%Rrc, value=%s\n", pszName, rc, pszValue));
    528529    }
     
    541542 * @thread  HGCM
    542543 */
    543 int Service::delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[])
     544int Service::delProperty(uint32_t cParms, VBOXHGCMSVCPARM paParms[], bool notify)
    544545{
    545546    int rc = VINF_SUCCESS;
     
    559560    {
    560561        CFGMR3RemoveValue(mpValueNode, pszName);
    561         notifyHost(pszName);
     562        if (notify)
     563            notifyHost(pszName);
    562564    }
    563565    LogFlowThisFunc(("rc = %Rrc\n", rc));
     
    879881        case SET_PROP:
    880882            LogFlowFunc(("SET_PROP\n"));
    881             rc = setProperty(cParms, paParms);
     883            rc = setProperty(cParms, paParms, true);
    882884            break;
    883885
     
    885887        case SET_PROP_VALUE:
    886888            LogFlowFunc(("SET_PROP_VALUE\n"));
    887             rc = setProperty(cParms, paParms);
     889            rc = setProperty(cParms, paParms, true);
    888890            break;
    889891
     
    891893        case DEL_PROP:
    892894            LogFlowFunc(("DEL_PROP\n"));
    893             rc = delProperty(cParms, paParms);
     895            rc = delProperty(cParms, paParms, true);
    894896            break;
    895897
     
    972974        case SET_PROP_HOST:
    973975            LogFlowFunc(("SET_PROP_HOST\n"));
    974             rc = setProperty(cParms, paParms);
     976            rc = setProperty(cParms, paParms, false);
    975977            break;
    976978
     
    978980        case SET_PROP_VALUE_HOST:
    979981            LogFlowFunc(("SET_PROP_VALUE_HOST\n"));
    980             rc = setProperty(cParms, paParms);
     982            rc = setProperty(cParms, paParms, false);
    981983            break;
    982984
     
    984986        case DEL_PROP_HOST:
    985987            LogFlowFunc(("DEL_PROP_HOST\n"));
    986             rc = delProperty(cParms, paParms);
     988            rc = delProperty(cParms, paParms, false);
    987989            break;
    988990
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