VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstDir.cpp@ 58269

Last change on this file since 58269 was 56290, checked in by vboxsync, 9 years ago

IPRT: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 9.3 KB
Line 
1/* $Id: tstDir.cpp 56290 2015-06-09 14:01:31Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Directory listing.
4 */
5
6/*
7 * Copyright (C) 2006-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#include <iprt/dir.h>
28#include <iprt/initterm.h>
29#include <iprt/stream.h>
30#include <iprt/err.h>
31#include <iprt/path.h>
32//#include <iprt/
33
34int main(int argc, char **argv)
35{
36 int rcRet = 0;
37 RTR3InitExe(argc, &argv, 0);
38
39 /*
40 * Iterate arguments.
41 */
42 bool fLong = false;
43 bool fShortName = false;
44 bool fFiltered = false;
45 bool fQuiet = false;
46 for (int i = 1; i < argc; i++)
47 {
48 if (argv[i][0] == '-')
49 {
50 for (int j = 1; argv[i][j]; j++)
51 {
52 switch (argv[i][j])
53 {
54 case 'l':
55 fLong = true;
56 break;
57 case 's':
58 fShortName = true;
59 break;
60 case 'f':
61 fFiltered = true;
62 break;
63 case 'q':
64 fQuiet = true;
65 break;
66 default:
67 RTPrintf("Unknown option '%c' ignored!\n", argv[i][j]);
68 break;
69 }
70 }
71 }
72 else
73 {
74 /* open */
75 PRTDIR pDir;
76 int rc;
77 if (!fFiltered)
78 rc = RTDirOpen(&pDir, argv[i]);
79 else
80 rc = RTDirOpenFiltered(&pDir, argv[i], RTDIRFILTER_WINNT, 0);
81 if (RT_SUCCESS(rc))
82 {
83 /* list */
84 if (!fLong)
85 {
86 for (;;)
87 {
88 RTDIRENTRY DirEntry;
89 rc = RTDirRead(pDir, &DirEntry, NULL);
90 if (RT_FAILURE(rc))
91 break;
92 if (!fQuiet)
93 {
94 switch (DirEntry.enmType)
95 {
96 case RTDIRENTRYTYPE_UNKNOWN: RTPrintf("u"); break;
97 case RTDIRENTRYTYPE_FIFO: RTPrintf("f"); break;
98 case RTDIRENTRYTYPE_DEV_CHAR: RTPrintf("c"); break;
99 case RTDIRENTRYTYPE_DIRECTORY: RTPrintf("d"); break;
100 case RTDIRENTRYTYPE_DEV_BLOCK: RTPrintf("b"); break;
101 case RTDIRENTRYTYPE_FILE: RTPrintf("-"); break;
102 case RTDIRENTRYTYPE_SYMLINK: RTPrintf("l"); break;
103 case RTDIRENTRYTYPE_SOCKET: RTPrintf("s"); break;
104 case RTDIRENTRYTYPE_WHITEOUT: RTPrintf("w"); break;
105 default:
106 rcRet = 1;
107 RTPrintf("?");
108 break;
109 }
110 RTPrintf(" %#18llx %3d %s\n", (uint64_t)DirEntry.INodeId,
111 DirEntry.cbName, DirEntry.szName);
112 }
113 }
114 }
115 else
116 {
117 for (;;)
118 {
119 RTDIRENTRYEX DirEntry;
120 rc = RTDirReadEx(pDir, &DirEntry, NULL, RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK);
121 if (RT_FAILURE(rc))
122 break;
123
124 if (!fQuiet)
125 {
126 RTFMODE fMode = DirEntry.Info.Attr.fMode;
127 switch (fMode & RTFS_TYPE_MASK)
128 {
129 case RTFS_TYPE_FIFO: RTPrintf("f"); break;
130 case RTFS_TYPE_DEV_CHAR: RTPrintf("c"); break;
131 case RTFS_TYPE_DIRECTORY: RTPrintf("d"); break;
132 case RTFS_TYPE_DEV_BLOCK: RTPrintf("b"); break;
133 case RTFS_TYPE_FILE: RTPrintf("-"); break;
134 case RTFS_TYPE_SYMLINK: RTPrintf("l"); break;
135 case RTFS_TYPE_SOCKET: RTPrintf("s"); break;
136 case RTFS_TYPE_WHITEOUT: RTPrintf("w"); break;
137 default:
138 rcRet = 1;
139 RTPrintf("?");
140 break;
141 }
142 /** @todo sticy bits++ */
143 RTPrintf("%c%c%c",
144 fMode & RTFS_UNIX_IRUSR ? 'r' : '-',
145 fMode & RTFS_UNIX_IWUSR ? 'w' : '-',
146 fMode & RTFS_UNIX_IXUSR ? 'x' : '-');
147 RTPrintf("%c%c%c",
148 fMode & RTFS_UNIX_IRGRP ? 'r' : '-',
149 fMode & RTFS_UNIX_IWGRP ? 'w' : '-',
150 fMode & RTFS_UNIX_IXGRP ? 'x' : '-');
151 RTPrintf("%c%c%c",
152 fMode & RTFS_UNIX_IROTH ? 'r' : '-',
153 fMode & RTFS_UNIX_IWOTH ? 'w' : '-',
154 fMode & RTFS_UNIX_IXOTH ? 'x' : '-');
155 RTPrintf(" %c%c%c%c%c%c%c%c%c%c%c%c%c%c",
156 fMode & RTFS_DOS_READONLY ? 'R' : '-',
157 fMode & RTFS_DOS_HIDDEN ? 'H' : '-',
158 fMode & RTFS_DOS_SYSTEM ? 'S' : '-',
159 fMode & RTFS_DOS_DIRECTORY ? 'D' : '-',
160 fMode & RTFS_DOS_ARCHIVED ? 'A' : '-',
161 fMode & RTFS_DOS_NT_DEVICE ? 'd' : '-',
162 fMode & RTFS_DOS_NT_NORMAL ? 'N' : '-',
163 fMode & RTFS_DOS_NT_TEMPORARY ? 'T' : '-',
164 fMode & RTFS_DOS_NT_SPARSE_FILE ? 'P' : '-',
165 fMode & RTFS_DOS_NT_REPARSE_POINT ? 'J' : '-',
166 fMode & RTFS_DOS_NT_COMPRESSED ? 'C' : '-',
167 fMode & RTFS_DOS_NT_OFFLINE ? 'O' : '-',
168 fMode & RTFS_DOS_NT_NOT_CONTENT_INDEXED ? 'I' : '-',
169 fMode & RTFS_DOS_NT_ENCRYPTED ? 'E' : '-');
170 RTPrintf(" %d %4d %4d %10lld %10lld %#llx %#llx %#llx %#llx",
171 DirEntry.Info.Attr.u.Unix.cHardlinks,
172 DirEntry.Info.Attr.u.Unix.uid,
173 DirEntry.Info.Attr.u.Unix.gid,
174 DirEntry.Info.cbObject,
175 DirEntry.Info.cbAllocated,
176 DirEntry.Info.BirthTime,
177 DirEntry.Info.ChangeTime,
178 DirEntry.Info.ModificationTime,
179 DirEntry.Info.AccessTime);
180 if (fShortName)
181 RTPrintf(" %2d %-12ls ", DirEntry.cwcShortName, DirEntry.wszShortName);
182 RTPrintf(" %2d %s\n", DirEntry.cbName, DirEntry.szName);
183 }
184 if (rc != VINF_SUCCESS)
185 RTPrintf("^^ %Rrc\n", rc);
186 }
187 }
188
189 if (rc != VERR_NO_MORE_FILES)
190 {
191 RTPrintf("tstDir: Enumeration failed! rc=%Rrc\n", rc);
192 rcRet = 1;
193 }
194
195 /* close up */
196 rc = RTDirClose(pDir);
197 if (RT_FAILURE(rc))
198 {
199 RTPrintf("tstDir: Failed to close dir! rc=%Rrc\n", rc);
200 rcRet = 1;
201 }
202 }
203 else
204 {
205 RTPrintf("tstDir: Failed to open '%s', rc=%Rrc\n", argv[i], rc);
206 rcRet = 1;
207 }
208 }
209 }
210
211 return rcRet;
212}
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