VirtualBox

Changeset 57643 in vbox for trunk/include


Ignore:
Timestamp:
Sep 7, 2015 1:47:08 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102533
Message:

IPRT: Added RTVfsIoStrmFromRTPipe (and RTPipeQueryInfo) for the purpose of making RTVfsIoStrmFromStdHandle be able to work with pipes. Mostly untested.

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/mangling.h

    r57613 r57643  
    11051105# define RTPipeFlush                                    RT_MANGLER(RTPipeFlush)
    11061106# define RTPipeFromNative                               RT_MANGLER(RTPipeFromNative)
     1107# define RTPipeQueryInfo                                RT_MANGLER(RTPipeQueryInfo)
    11071108# define RTPipeQueryReadable                            RT_MANGLER(RTPipeQueryReadable)
    11081109# define RTPipeRead                                     RT_MANGLER(RTPipeRead)
     
    19351936# define RTVfsIoStrmFlush                               RT_MANGLER(RTVfsIoStrmFlush)
    19361937# define RTVfsIoStrmFromRTFile                          RT_MANGLER(RTVfsIoStrmFromRTFile)
     1938# define RTVfsIoStrmFromRTPipe                          RT_MANGLER(RTVfsIoStrmFromRTPipe)
    19371939# define RTVfsIoStrmFromStdHandle                       RT_MANGLER(RTVfsIoStrmFromStdHandle)
    19381940# define RTVfsIoStrmIsAtEnd                             RT_MANGLER(RTVfsIoStrmIsAtEnd)
  • trunk/include/iprt/pipe.h

    r56291 r57643  
    2929#include <iprt/cdefs.h>
    3030#include <iprt/types.h>
     31#include <iprt/fs.h>
    3132
    3233RT_C_DECLS_BEGIN
     
    219220RTDECL(int) RTPipeQueryReadable(RTPIPE hPipe, size_t *pcbReadable);
    220221
     222/**
     223 * Query information about a pipe (mainly a VFS I/O stream formality).
     224 *
     225 * The only thing we guarentee to be returned is RTFSOBJINFO::Attr.fMode being
     226 * set to FIFO and will reflect the read/write end in the RTFS_DOS_READONLY,
     227 * RTFS_UNIX_IRUSR and RTFS_UNIX_IWUSR bits.
     228 *
     229 * Some implementations sometimes provide the pipe buffer size via
     230 * RTFSOBJINFO::cbAllocated.
     231 *
     232 * Some implementations sometimes provide the available read data or available
     233 * write space via RTFSOBJINFO::cbObject.
     234 *
     235 * Some implementations sometimes provide valid device and/or inode numbers.
     236 *
     237 * @returns iprt status code.
     238 *
     239 * @param   hPipe       The IPRT read pipe handle.
     240 * @param   pObjInfo    Object information structure to be filled on successful
     241 *                      return.
     242 * @param   enmAddAttr  Which set of additional attributes to request.  Use
     243 *                      RTFSOBJATTRADD_NOTHING if this doesn't matter.
     244 */
     245RTDECL(int) RTPipeQueryInfo(RTPIPE hPipe, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAddAttr);
     246
    221247/** @} */
    222248
  • trunk/include/iprt/vfs.h

    r56291 r57643  
    440440
    441441/**
    442  * Create a VFS I/O stream handle from a standard IPRT file handle (RTFILE).
     442 * Creates a VFS I/O stream handle from a standard IPRT file handle (RTFILE).
    443443 *
    444444 * @returns IPRT status code.
     
    451451 */
    452452RTDECL(int)         RTVfsIoStrmFromRTFile(RTFILE hFile, uint64_t fOpen, bool fLeaveOpen, PRTVFSIOSTREAM phVfsIos);
     453
     454/**
     455 * Creates a VFS I/O stream handle from a standard IPRT pipe handle (RTPIPE).
     456 *
     457 * @returns IPRT status code.
     458 * @param   hPipe           The standard IPRT pipe handle.
     459 * @param   fLeaveOpen      Whether to leave the handle open when the VFS file
     460 *                          is released, or to close it (@c false).
     461 * @param   phVfsIos        Where to return the VFS I/O stream handle.
     462 */
     463RTDECL(int)         RTVfsIoStrmFromRTPipe(RTPIPE hPipe, bool fLeaveOpen, PRTVFSIOSTREAM phVfsIos);
    453464
    454465/**
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