VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTPathQueryInfo.cpp@ 98103

Last change on this file since 98103 was 98103, checked in by vboxsync, 20 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: tstRTPathQueryInfo.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTPathQueryInfoEx testcase
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/errcore.h>
44#include <iprt/stream.h>
45#include <iprt/message.h>
46#include <iprt/time.h>
47
48
49int main(int argc, char **argv)
50{
51 int rc = RTR3InitExe(argc, &argv, 0);
52 if (RT_FAILURE(rc))
53 return RTMsgInitFailure(rc);
54
55 /*
56 * Iterate arguments.
57 */
58 RTEXITCODE rcExit = RTEXITCODE_SUCCESS;
59 uint32_t fFlags = RTPATH_F_ON_LINK;
60 RTFSOBJATTRADD enmAdditionalAttribs = RTFSOBJATTRADD_NOTHING;
61 for (int i = 1; i < argc; i++)
62 {
63 if (argv[i][0] == '-')
64 {
65 for (int j = 1; argv[i][j]; j++)
66 {
67 switch (argv[i][j])
68 {
69 case 'H':
70 fFlags = RTPATH_F_FOLLOW_LINK;
71 break;
72 case 'l':
73 enmAdditionalAttribs = RTFSOBJATTRADD_UNIX;
74 break;
75 default:
76 RTPrintf("Unknown option '%c' ignored!\n", argv[i][j]);
77 break;
78 }
79 }
80 }
81 else
82 {
83 RTFSOBJINFO ObjInfo;
84 rc = RTPathQueryInfoEx(argv[i], &ObjInfo, enmAdditionalAttribs, fFlags);
85 if (RT_SUCCESS(rc))
86 {
87 RTPrintf(" File: '%s'\n", argv[i]);
88 RTPrintf(" Size: %'RTfoff Allocated: %'RTfoff\n", ObjInfo.cbObject, ObjInfo.cbAllocated);
89
90 RTPrintf(" Mode: ");
91 RTFMODE fMode = ObjInfo.Attr.fMode;
92 switch (fMode & RTFS_TYPE_MASK)
93 {
94 case RTFS_TYPE_FIFO: RTPrintf("f"); break;
95 case RTFS_TYPE_DEV_CHAR: RTPrintf("c"); break;
96 case RTFS_TYPE_DIRECTORY: RTPrintf("d"); break;
97 case RTFS_TYPE_DEV_BLOCK: RTPrintf("b"); break;
98 case RTFS_TYPE_FILE: RTPrintf("-"); break;
99 case RTFS_TYPE_SYMLINK: RTPrintf("l"); break;
100 case RTFS_TYPE_SOCKET: RTPrintf("s"); break;
101 case RTFS_TYPE_WHITEOUT: RTPrintf("w"); break;
102 default:
103 rcExit = RTEXITCODE_FAILURE;
104 RTPrintf("?");
105 break;
106 }
107 /** @todo sticy bits++ */
108 RTPrintf("%c%c%c",
109 fMode & RTFS_UNIX_IRUSR ? 'r' : '-',
110 fMode & RTFS_UNIX_IWUSR ? 'w' : '-',
111 fMode & RTFS_UNIX_IXUSR ? 'x' : '-');
112 RTPrintf("%c%c%c",
113 fMode & RTFS_UNIX_IRGRP ? 'r' : '-',
114 fMode & RTFS_UNIX_IWGRP ? 'w' : '-',
115 fMode & RTFS_UNIX_IXGRP ? 'x' : '-');
116 RTPrintf("%c%c%c",
117 fMode & RTFS_UNIX_IROTH ? 'r' : '-',
118 fMode & RTFS_UNIX_IWOTH ? 'w' : '-',
119 fMode & RTFS_UNIX_IXOTH ? 'x' : '-');
120
121 RTPrintf(" Attributes: %c%c%c%c%c%c%c%c%c%c%c%c%c%c",
122 fMode & RTFS_DOS_READONLY ? 'R' : '-',
123 fMode & RTFS_DOS_HIDDEN ? 'H' : '-',
124 fMode & RTFS_DOS_SYSTEM ? 'S' : '-',
125 fMode & RTFS_DOS_DIRECTORY ? 'D' : '-',
126 fMode & RTFS_DOS_ARCHIVED ? 'A' : '-',
127 fMode & RTFS_DOS_NT_DEVICE ? 'd' : '-',
128 fMode & RTFS_DOS_NT_NORMAL ? 'N' : '-',
129 fMode & RTFS_DOS_NT_TEMPORARY ? 'T' : '-',
130 fMode & RTFS_DOS_NT_SPARSE_FILE ? 'P' : '-',
131 fMode & RTFS_DOS_NT_REPARSE_POINT ? 'J' : '-',
132 fMode & RTFS_DOS_NT_COMPRESSED ? 'C' : '-',
133 fMode & RTFS_DOS_NT_OFFLINE ? 'O' : '-',
134 fMode & RTFS_DOS_NT_NOT_CONTENT_INDEXED ? 'I' : '-',
135 fMode & RTFS_DOS_NT_ENCRYPTED ? 'E' : '-');
136 RTPrintf("\n");
137
138 if (enmAdditionalAttribs == RTFSOBJATTRADD_UNIX)
139 {
140 RTPrintf(" Inode: %#llx InodeDevice: %#x Links: %u\n",
141 ObjInfo.Attr.u.Unix.INodeId,
142 ObjInfo.Attr.u.Unix.INodeIdDevice,
143 ObjInfo.Attr.u.Unix.cHardlinks);
144 RTPrintf(" Uid: %d Gid: %d\n",
145 ObjInfo.Attr.u.Unix.uid,
146 ObjInfo.Attr.u.Unix.gid);
147 }
148
149 char szTmp[80];
150 RTPrintf(" Birth: %s\n", RTTimeSpecToString(&ObjInfo.BirthTime, szTmp, sizeof(szTmp)));
151 RTPrintf("Access: %s\n", RTTimeSpecToString(&ObjInfo.AccessTime, szTmp, sizeof(szTmp)));
152 RTPrintf("Modify: %s\n", RTTimeSpecToString(&ObjInfo.ModificationTime, szTmp, sizeof(szTmp)));
153 RTPrintf("Change: %s\n", RTTimeSpecToString(&ObjInfo.ChangeTime, szTmp, sizeof(szTmp)));
154
155 }
156 else
157 {
158 RTPrintf("RTPathQueryInfoEx(%s,,%d,%#x) -> %Rrc\n", argv[i], enmAdditionalAttribs, fFlags, rc);
159 rcExit = RTEXITCODE_FAILURE;
160 }
161 }
162 }
163
164 return rcExit;
165}
166
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette