1 | /* $Id: tstRTFsQueries.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - RTFs Queries..
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/path.h>
|
---|
42 | #include <iprt/initterm.h>
|
---|
43 | #include <iprt/stream.h>
|
---|
44 | #include <iprt/errcore.h>
|
---|
45 |
|
---|
46 |
|
---|
47 | int main(int argc, char **argv)
|
---|
48 | {
|
---|
49 | RTR3InitExe(argc, &argv, 0);
|
---|
50 |
|
---|
51 | /*
|
---|
52 | * Process all arguments (including the executable).
|
---|
53 | */
|
---|
54 | int cErrors = 0;
|
---|
55 | for (int i = 0; i < argc; i++)
|
---|
56 | {
|
---|
57 | RTPrintf("tstRTFsQueries: '%s'...\n", argv[i]);
|
---|
58 |
|
---|
59 | uint32_t u32Serial;
|
---|
60 | int rc = RTFsQuerySerial(argv[i], &u32Serial);
|
---|
61 | if (RT_SUCCESS(rc))
|
---|
62 | RTPrintf("tstRTFsQueries: u32Serial=%#010RX32\n", u32Serial);
|
---|
63 | else
|
---|
64 | {
|
---|
65 | RTPrintf("tstRTFsQueries: RTFsQuerySerial failed, rc=%Rrc\n", rc);
|
---|
66 | cErrors++;
|
---|
67 | }
|
---|
68 |
|
---|
69 | RTFOFF cbTotal = 42;
|
---|
70 | RTFOFF cbFree = 42;
|
---|
71 | uint32_t cbBlock = 42;
|
---|
72 | uint32_t cbSector = 42;
|
---|
73 | rc = RTFsQuerySizes(argv[i], &cbTotal, &cbFree, &cbBlock, &cbSector);
|
---|
74 | if (RT_SUCCESS(rc))
|
---|
75 | RTPrintf("tstRTFsQueries: cbTotal=%RTfoff cbFree=%RTfoff cbBlock=%d cbSector=%d\n",
|
---|
76 | cbTotal, cbFree, cbBlock, cbSector);
|
---|
77 | else
|
---|
78 | {
|
---|
79 | RTPrintf("tstRTFsQueries: RTFsQuerySerial failed, rc=%Rrc\n", rc);
|
---|
80 | cErrors++;
|
---|
81 | }
|
---|
82 |
|
---|
83 | rc = RTFsQuerySizes(argv[i], NULL, NULL, NULL, NULL);
|
---|
84 | if (RT_FAILURE(rc))
|
---|
85 | {
|
---|
86 | RTPrintf("tstRTFsQueries: RTFsQuerySizes(nop) failed, rc=%Rrc\n", rc);
|
---|
87 | cErrors++;
|
---|
88 | }
|
---|
89 |
|
---|
90 | RTFSTYPE enmType;
|
---|
91 | rc = RTFsQueryType(argv[i], &enmType);
|
---|
92 | if (RT_SUCCESS(rc))
|
---|
93 | RTPrintf("tstRTFsQueries: file system type is '%s'\n", RTFsTypeName(enmType));
|
---|
94 | else
|
---|
95 | {
|
---|
96 | RTPrintf("tstRTFsQueries: RTFsQueryType failed, rc=%Rrc\n", rc);
|
---|
97 | cErrors++;
|
---|
98 | }
|
---|
99 |
|
---|
100 | RTFSPROPERTIES Props;
|
---|
101 | rc = RTFsQueryProperties(argv[i], &Props);
|
---|
102 | if (RT_SUCCESS(rc))
|
---|
103 | RTPrintf("tstRTFsQueries: cbMaxComponent=%u %s %s %s %s %s %s\n",
|
---|
104 | Props.cbMaxComponent,
|
---|
105 | Props.fCaseSensitive ? "case" : "not-case",
|
---|
106 | Props.fCompressed ? "compressed" : "not-compressed",
|
---|
107 | Props.fFileCompression ? "file-compression" : "no-file-compression",
|
---|
108 | Props.fReadOnly ? "readonly" : "readwrite",
|
---|
109 | Props.fRemote ? "remote" : "not-remote",
|
---|
110 | Props.fSupportsUnicode ? "supports-unicode" : "doesn't-support-unicode");
|
---|
111 | else
|
---|
112 | {
|
---|
113 | RTPrintf("tstRTFsQueries: RTFsQueryProperties failed, rc=%Rrc\n", rc);
|
---|
114 | cErrors++;
|
---|
115 | }
|
---|
116 | }
|
---|
117 |
|
---|
118 | if (!cErrors)
|
---|
119 | RTPrintf("tstRTFsQueries: SUCCESS\n");
|
---|
120 | else
|
---|
121 | RTPrintf("tstRTFsQueries: FAIlURE - %u errors\n", cErrors);
|
---|
122 | return !!cErrors;
|
---|
123 | }
|
---|