VirtualBox

Changeset 12810 in vbox for trunk/src


Ignore:
Timestamp:
Sep 29, 2008 4:11:14 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37164
Message:

VbglR3GuestPropDelTree -> VbglR3GuestPropDelSet, documenting it and adjusting the interface to be easier to use (const strings).

Location:
trunk/src/VBox/Additions
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/VBoxService/VBoxVMInfo.cpp

    r12734 r12810  
    112112    Assert(pCtx);
    113113
    114     /* @todo Temporary solution: Zap all values which are not valid anymore when VM goes down (reboot/shutdown).
     114    /** @todo Temporary solution: Zap all values which are not valid anymore when VM goes down (reboot/shutdown).
    115115     * Needs to be replaced with "temporary properties" later. */
    116     char szPropPath [_MAX_PATH+1] = {0};
    117     char*pPtr = &szPropPath[0];
    118116
    119117    vboxVMInfoWriteProp(pCtx, "GuestInfo/OS/LoggedInUsersList", "");
    120118    vboxVMInfoWritePropInt(pCtx, "GuestInfo/OS/LoggedInUsers", 0);
    121119
    122     RTStrPrintf(szPropPath, sizeof(szPropPath), "/VirtualBox/GuestInfo/Net/*");
    123     VbglR3GuestPropDelTree(pCtx->iInfoSvcClientID, &pPtr, 1);
     120    const char *apszPat[1] = { "/VirtualBox/GuestInfo/Net/*" };
     121    VbglR3GuestPropDelSet(pCtx->iInfoSvcClientID, &apszPat[0], RT_ELEMENTS(apszPat));
    124122    vboxVMInfoWritePropInt(pCtx, "GuestInfo/Net/Count", 0);
    125123
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp

    r12722 r12810  
    508508 *          uninitialised
    509509 *
    510  * @param   papszPatterns The patterns against which the properties are
    511  *                        matched.  Pass NULL if everything should be matched.
    512  * @param   cPatterns     The number of patterns in @a papszPatterns.  0 means
    513  *                        match everything.
    514  * @param   ppHandle      where the handle for continued enumeration is stored
    515  *                        on success.  This must be freed with
    516  *                        VbglR3GuestPropEnumFree when it is no longer needed.
    517  * @param   ppszName      Where to store the first property name on success.
    518  *                        Should not be freed.
    519  * @param   ppszValue     Where to store the first property value on success.
    520  *                        Should not be freed.
    521  * @param   ppszValue     Where to store the first timestamp value on success.
    522  * @param   ppszFlags     Where to store the first flags value on success.
    523  *                        Should not be freed.
     510 * @param   u32ClientId     The client id returned by VbglR3InfoSvcConnect().
     511 * @param   papszPatterns   The patterns against which the properties are
     512 *                          matched.  Pass NULL if everything should be matched.
     513 * @param   cPatterns       The number of patterns in @a papszPatterns.  0 means
     514 *                          match everything.
     515 * @param   ppHandle        where the handle for continued enumeration is stored
     516 *                          on success.  This must be freed with
     517 *                          VbglR3GuestPropEnumFree when it is no longer needed.
     518 * @param   ppszName        Where to store the first property name on success.
     519 *                          Should not be freed.
     520 * @param   ppszValue       Where to store the first property value on success.
     521 *                          Should not be freed.
     522 * @param   ppszValue       Where to store the first timestamp value on success.
     523 * @param   ppszFlags       Where to store the first flags value on success.
     524 *                          Should not be freed.
     525 *
     526 * @todo    Make papszPatterns char const * const *, and cPatterns size_t (so we
     527 *          can use RT_ELEMENTS without getting warnings on Windows).
     528 *          Most of the returns should also be made char const * to discourage
     529 *          changes and encourage compiler optimizations.
    524530 */
    525531VBGLR3DECL(int) VbglR3GuestPropEnum(uint32_t u32ClientId,
     
    613619 *                       set to NULL if there are no more properties to
    614620 *                       enumerate.  This pointer should not be freed.
     621 *
     622 * @todo return char const *.
    615623 */
    616624VBGLR3DECL(int) VbglR3GuestPropEnumNext(PVBGLR3GUESTPROPENUM pHandle,
     
    652660}
    653661
    654 /**
    655  * Deletes a key (matching pattern) including its children.
    656  *
    657  * @returns VBox status code.
    658  */
    659 VBGLR3DECL(int) VbglR3GuestPropDelTree(uint32_t u32ClientId,
    660                                        char **papszPatterns,
    661                                        int cPatterns)
    662 {
    663     PVBGLR3GUESTPROPENUM pHandle = NULL;
    664     int rc = VINF_SUCCESS;
    665 
    666     char* pszName = NULL;
    667     char* pszValue = NULL;
    668     uint64_t pu64Timestamp = 0;
    669     char* pszFlags = NULL;
    670 
    671     rc = VbglR3GuestPropEnum(u32ClientId,
    672                              papszPatterns,
    673                              cPatterns,
    674                              &pHandle,
    675                              &pszName,
    676                              &pszValue,
    677                              &pu64Timestamp,
    678                              &pszFlags);
    679 
    680     while (RT_SUCCESS(rc) && (pszName != NULL))
     662
     663/**
     664 * Deletes a set of keys.
     665 *
     666 * The set is specified in the same way as for VbglR3GuestPropEnum.
     667 *
     668 * @returns VBox status code. Stops on first failure.
     669 *          See also VbglR3GuestPropEnum.
     670 *
     671 * @param   u32ClientId     The client id returned by VbglR3InfoSvcConnect().
     672 * @param   papszPatterns   The patterns against which the properties are
     673 *                          matched.  Pass NULL if everything should be matched.
     674 * @param   cPatterns       The number of patterns in @a papszPatterns.  0 means
     675 *                          match everything.
     676 */
     677VBGLR3DECL(int) VbglR3GuestPropDelSet(uint32_t u32ClientId,
     678                                      const char * const *papszPatterns,
     679                                      size_t cPatterns)
     680{
     681    PVBGLR3GUESTPROPENUM pHandle;
     682    char *pszName;
     683    char *pszValue;
     684    uint64_t pu64Timestamp;
     685    char *pszFlags;
     686    int rc = VbglR3GuestPropEnum(u32ClientId,
     687                                 (char **)papszPatterns, /** @todo fix this cast. */
     688                                 cPatterns,
     689                                 &pHandle,
     690                                 &pszName,
     691                                 &pszValue,
     692                                 &pu64Timestamp,
     693                                 &pszFlags);
     694
     695    while (RT_SUCCESS(rc) && pszName)
    681696    {
    682697        rc = VbglR3GuestPropWriteValue(u32ClientId, pszName, NULL);
    683         if(!RT_SUCCESS(rc))
     698        if (!RT_SUCCESS(rc))
    684699            break;
    685700
     
    694709    return rc;
    695710}
     711
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