VirtualBox

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

Last change on this file since 14515 was 8245, checked in by vboxsync, 16 years ago

rebranding: IPRT files again.

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