VirtualBox

Ignore:
Timestamp:
Nov 13, 2017 3:29:43 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119042
Message:

iprt: A bunch of basic function for working the file system relative to an open directory. There is only a default implementation currently, the path race conditions will first be eliminated/reduced with platform specific implementations (POSIX, NT). Also added a VFS wrapper around RTDIR handles, completing RTVfsChainOpenDir and making RTLs work on normal directories too (instead of only isofs and fat).

Location:
trunk/src/VBox/HostServices/SharedFolders
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostServices/SharedFolders/testcase/tstShflCase.cpp

    r69500 r69674  
    106106};
    107107
    108 int rtDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter)
    109 {
    110     RT_NOREF1(enmFilter);
     108int rtDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uitn32_t fFlags)
     109{
     110    RT_NOREF1(enmFilter, fFlags);
    111111    if (!strcmp(pszPath, "c:\\*"))
    112112        iDirList = 1;
     
    225225    strcat(pDirEntry->szName, szWildCard);
    226226
    227     rc = RTDirOpenFiltered (&hSearch, pDirEntry->szName, RTDIRFILTER_WINNT);
     227    rc = RTDirOpenFiltered(&hSearch, pDirEntry->szName, RTDIRFILTER_WINNT, 0 /*fFlags*/);
    228228    *(pszStartComponent-1) = RTPATH_DELIMITER;
    229229    if (RT_FAILURE(rc))
  • trunk/src/VBox/HostServices/SharedFolders/teststubs.h

    r69500 r69674  
    3434extern int testRTDirOpen(PRTDIR *ppDir, const char *pszPath);
    3535#define RTDirOpenFiltered    testRTDirOpenFiltered
    36 extern int testRTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fOpen);
     36extern int testRTDirOpenFiltered(PRTDIR *ppDir, const char *pszPath, RTDIRFILTER enmFilter, uint32_t fFlags);
    3737#define RTDirQueryInfo       testRTDirQueryInfo
    3838extern int testRTDirQueryInfo(PRTDIR pDir, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
  • trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp

    r69500 r69674  
    668668        {
    669669            /* Open the directory now */
    670             rc = RTDirOpenFiltered(&pHandle->dir.Handle, pszPath, RTDIRFILTER_NONE, 0);
     670            rc = RTDirOpenFiltered(&pHandle->dir.Handle, pszPath, RTDIRFILTER_NONE, 0 /*fFlags*/);
    671671            if (RT_SUCCESS(rc))
    672672            {
     
    12001200            if (RT_SUCCESS(rc))
    12011201            {
    1202                 rc = RTDirOpenFiltered(&pHandle->dir.SearchHandle, pszFullPath, RTDIRFILTER_WINNT, 0);
     1202                rc = RTDirOpenFiltered(&pHandle->dir.SearchHandle, pszFullPath, RTDIRFILTER_WINNT, 0 /*fFlags*/);
    12031203
    12041204                /* free the path string */
  • trunk/src/VBox/HostServices/SharedFolders/vbsfpath.cpp

    r69500 r69674  
    9898    {
    9999        PRTDIR hSearch = NULL;
    100         rc = RTDirOpenFiltered(&hSearch, pDirEntry->szName, RTDIRFILTER_WINNT, 0);
     100        rc = RTDirOpenFiltered(&hSearch, pDirEntry->szName, RTDIRFILTER_WINNT, 0 /*fFlags*/);
    101101        if (RT_SUCCESS(rc))
    102102        {
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