1 | /* $Id: vfsmisc.cpp 57643 2015-09-07 13:47:08Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Virtual File System, Misc functions with heavy dependencies.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2015 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*********************************************************************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *********************************************************************************************************************************/
|
---|
31 | #include "internal/iprt.h"
|
---|
32 | #include <iprt/vfs.h>
|
---|
33 |
|
---|
34 | #include <iprt/assert.h>
|
---|
35 | #include <iprt/err.h>
|
---|
36 | #include <iprt/file.h>
|
---|
37 | #include <iprt/handle.h>
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | RTDECL(int) RTVfsIoStrmFromStdHandle(RTHANDLESTD enmStdHandle, uint64_t fOpen, bool fLeaveOpen,
|
---|
42 | PRTVFSIOSTREAM phVfsIos)
|
---|
43 | {
|
---|
44 | /*
|
---|
45 | * Input validation.
|
---|
46 | */
|
---|
47 | AssertPtrReturn(phVfsIos, VERR_INVALID_POINTER);
|
---|
48 | *phVfsIos = NIL_RTVFSIOSTREAM;
|
---|
49 | AssertReturn( enmStdHandle == RTHANDLESTD_INPUT
|
---|
50 | || enmStdHandle == RTHANDLESTD_OUTPUT
|
---|
51 | || enmStdHandle == RTHANDLESTD_ERROR,
|
---|
52 | VERR_INVALID_PARAMETER);
|
---|
53 | AssertReturn(!(fOpen & ~RTFILE_O_VALID_MASK), VERR_INVALID_PARAMETER);
|
---|
54 | if (enmStdHandle == RTHANDLESTD_INPUT)
|
---|
55 | fOpen |= RTFILE_O_READ;
|
---|
56 | else
|
---|
57 | fOpen |= RTFILE_O_WRITE;
|
---|
58 |
|
---|
59 | /*
|
---|
60 | * Open the handle and see what we get back.
|
---|
61 | */
|
---|
62 | RTHANDLE h;
|
---|
63 | int rc = RTHandleGetStandard(enmStdHandle, &h);
|
---|
64 | if (RT_SUCCESS(rc))
|
---|
65 | {
|
---|
66 | switch (h.enmType)
|
---|
67 | {
|
---|
68 | case RTHANDLETYPE_FILE:
|
---|
69 | rc = RTVfsIoStrmFromRTFile(h.u.hFile, fOpen, fLeaveOpen, phVfsIos);
|
---|
70 | break;
|
---|
71 |
|
---|
72 | case RTHANDLETYPE_PIPE:
|
---|
73 | rc = RTVfsIoStrmFromRTPipe(h.u.hPipe, fLeaveOpen, phVfsIos);
|
---|
74 | break;
|
---|
75 |
|
---|
76 | case RTHANDLETYPE_SOCKET:
|
---|
77 | /** @todo */
|
---|
78 | rc = VERR_NOT_IMPLEMENTED;
|
---|
79 | break;
|
---|
80 |
|
---|
81 | default:
|
---|
82 | rc = VERR_NOT_IMPLEMENTED;
|
---|
83 | break;
|
---|
84 | }
|
---|
85 | }
|
---|
86 |
|
---|
87 | return rc;
|
---|
88 | }
|
---|
89 |
|
---|