VirtualBox

Ignore:
Timestamp:
Nov 14, 2017 3:27:52 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119064
Message:

iprt: Started on RTDirRel for NT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/dir.cpp

    r69674 r69691  
    506506 *
    507507 * @returns IPRT status code.
    508  * @param   ppDir       Where to store the directory handle.
    509  * @param   pszPath     The specified path.
    510  * @param   pszFilter   Pointer to where the filter start in the path. NULL if no filter.
    511  * @param   enmFilter   The type of filter to apply.
    512  * @param   fFlags      RTDIR_F_XXX.
    513  */
    514 static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter, uint32_t fFlags)
     508 * @param   ppDir               Where to store the directory handle.
     509 * @param   pszPath             The specified path.
     510 * @param   pszFilter           Pointer to where the filter start in the path.
     511 *                              NULL if no filter.
     512 * @param   enmFilter           The type of filter to apply.
     513 * @param   fFlags              RTDIR_F_XXX.
     514 * @param   hRelativeDir        The directory @a pvNativeRelative is relative,
     515 *                              ~(uintptr_t)0 if absolute.
     516 * @param   pvNativeRelative    The native relative path.  NULL if absolute.
     517 */
     518static int rtDirOpenCommon(PRTDIR *ppDir, const char *pszPath, const char *pszFilter, RTDIRFILTER enmFilter, uint32_t fFlags,
     519                           uintptr_t hRelativeDir, void *pvNativeRelative)
    515520{
    516521    /*
     
    623628     * Hand it over to the native part.
    624629     */
    625     rc = rtDirNativeOpen(pDir, szRealPath);
     630    rc = rtDirNativeOpen(pDir, szRealPath, hRelativeDir, pvNativeRelative);
    626631    if (RT_SUCCESS(rc))
    627632        *ppDir = pDir;
     
    633638
    634639
    635 
    636640RTDECL(int) RTDirOpen(PRTDIR *ppDir, const char *pszPath)
    637641{
     
    645649     * Take common cause with RTDirOpenFiltered().
    646650     */
    647     int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE, 0 /*fFlags*/);
     651    int rc = rtDirOpenCommon(ppDir, pszPath, NULL, RTDIRFILTER_NONE, 0 /*fFlags*/, ~(uintptr_t)0, NULL);
    648652    LogFlow(("RTDirOpen(%p:{%p}, %p:{%s}): return %Rrc\n", ppDir, *ppDir, pszPath, pszPath, rc));
    649653    return rc;
     
    651655
    652656
    653 RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags)
     657DECLHIDDEN(int) rtDirOpenRelative(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags,
     658                                  uintptr_t hRelativeDir, void *pvNativeRelative)
    654659{
    655660    /*
     
    689694     * and initialize the handle, and finally call the backend.
    690695     */
    691     int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter, fFlags);
    692 
    693     LogFlow(("RTDirOpenFiltered(%p:{%p}, %p:{%s}, %d, %#x): return %Rrc\n",
    694              ppDir, *ppDir, pszPath, pszPath, enmFilter, fFlags, rc));
     696    int rc = rtDirOpenCommon(ppDir, pszPath, pszFilter, enmFilter, fFlags, hRelativeDir, pvNativeRelative);
     697
     698    LogFlow(("RTDirOpenFiltered(%p:{%p}, %p:{%s}, %d, %#x, %p, %p): return %Rrc\n",
     699             ppDir,*ppDir, pszPath, pszPath, enmFilter, fFlags, hRelativeDir, pvNativeRelative, rc));
    695700    return rc;
     701}
     702
     703
     704RTDECL(int) RTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags)
     705{
     706    return rtDirOpenRelative(ppDir, pszPath, enmFilter, fFlags, ~(uintptr_t)0, NULL);
    696707}
    697708
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