1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
//=============================================================================
/**
* @file Dirent_Test.cpp
*
* $Id: Dirent_Test.cpp 93638 2011-03-24 13:16:05Z johnnyw $
*
* This is a test of the opendir and readdir emulation provided by the
* class ACE_Dirent. It is used to ensure that the emulation code
* works properly on platforms that don't support this capability
* natively. As the emulation code is not compiled in other
* platforms, this test also ensures that there is no impact to
* platforms that natively support directory scanning operations.
*
*
* @author Phil Mesnier <mesnier_p@ociweb.com>
* @author Zvika Ashani <zvika@aspectusvi.com>
* @author Rich Newman <RNewman@directv.com>
* @author and Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
*/
//=============================================================================
#include "test_config.h"
#include "ace/Dirent.h"
#include "ace/Dirent_Selector.h"
#include "ace/OS_NS_sys_stat.h"
#include "ace/OS_NS_unistd.h"
#include "ace/SString.h"
#if defined (ACE_HAS_TCHAR_DIRENT)
# define TEST_ENTRY ACE_TEXT ("run_test.lst")
#else
# define TEST_ENTRY "run_test.lst"
#endif /* ACE_HAS_TCHAR_DIRENT */
// Directory to scan - we need to figure it out based on environment.
static ACE_TString TestDir;
static const int RECURSION_INDENT = 3;
// Number of entries in the directory.
static int entrycount = 0;
extern "C" {
static int
selector (const ACE_DIRENT *d)
{
return ACE_OS::strcmp (d->d_name, TEST_ENTRY) == 0;
}
static int
comparator (const ACE_DIRENT **d1, const ACE_DIRENT **d2)
{
return ACE_OS::alphasort (d1, d2);
}
} /* extern "C" */
static int
dirent_selector_test (void)
{
int n;
int error = 0;
const ACE_TCHAR *test_dir = TestDir.c_str ();
ACE_Dirent_Selector sds;
// Pass in functions that'll specify the selection criteria.
int status = sds.open (test_dir, selector, comparator);
if (status == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%s, %p\n"),
test_dir,
ACE_TEXT ("open")),
-1);
// We should only have located ourselves!
if (sds.length () != 1)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("selected %d entries in %s, should be 1\n"),
sds.length (),
test_dir));
error = 1;
}
for (n = 0; n < sds.length (); ++n)
{
#if defined (ACE_HAS_TCHAR_DIRENT)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Sorted: %d: %s\n"),
n,
sds[n]->d_name));
#else
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Sorted: %d: %C\n"),
n,
sds[n]->d_name));
#endif
}
status = sds.close ();
if (status == -1)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("after selecting, %p\n"),
ACE_TEXT ("close")));
error = 1;
}
ACE_Dirent_Selector ds;
// Don't specify any selection criteria.
status = ds.open (test_dir);
if (status == -1)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("%s w/o selection criteria; %p\n"),
test_dir,
ACE_TEXT ("open")));
error = 1;
}
// We counted the entries earlier by hand; should be the same here.
if (entrycount != ds.length ())
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("Counted %d entries in %s but selector says %d\n"),
entrycount,
test_dir,
ds.length ()));
error = 1;
}
for (n = 0; n < ds.length (); ++n)
{
#if defined (ACE_HAS_TCHAR_DIRENT)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Entry %d: %s\n"),
n,
ds[n]->d_name));
#else
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Entry %d: %C\n"),
n,
ds[n]->d_name));
#endif
}
if (ds.close () == -1)
{
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("w/o selection criteria; %p\n"),
ACE_TEXT ("close")));
error = 1;
}
return error ? -1 : 0;
}
static int
dirent_test (void)
{
ACE_Dirent dir;
if (dir.open (TestDir.c_str ()) == -1)
ACE_ERROR_RETURN
((LM_ERROR, ACE_TEXT ("open of dir %s failed\n"), TestDir.c_str()), -1);
for (ACE_DIRENT *directory = 0;
(directory = dir.read ()) != 0;
entrycount++)
{
#if defined (ACE_HAS_TCHAR_DIRENT)
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Entry %d: %s\n"),
entrycount,
directory->d_name));
#else
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Entry %d: %C\n"),
entrycount,
directory->d_name));
#endif
}
switch (entrycount)
{
case 0:
ACE_ERROR_RETURN
((LM_ERROR, ACE_TEXT ("readdir failed to read anything\n")), -1);
/* NOTREACHED */
case 1:
ACE_ERROR_RETURN
((LM_ERROR,
ACE_TEXT ("readdir failed, only matched directory name\n")),
-1);
/* NOTREACHED */
default:
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("readdir succeeded, read %d entries\n"),
entrycount));
}
return 0;
}
static int
dirent_count (const ACE_TCHAR *dir_path,
int &dir_count,
int &file_count,
int recursion_level)
{
#if !defined (ACE_LACKS_CHDIR)
if (ACE_OS::chdir (dir_path) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("chdir: %p\n"),
dir_path),
-1);
#else
ACE_UNUSED_ARG (dir_path);
#endif /* !ACE_LACKS_CHDIR */
ACE_Dirent dir;
if (dir.open (ACE_TEXT (".")) == -1)
ACE_ERROR_RETURN
((LM_ERROR, ACE_TEXT ("open of dir . failed\n")), -1);
// Since the dir struct d_name type changes depending on the setting
// of ACE_LACKS_STRUCT_DIR, copy each name into a neutral format
// array to work on it.
size_t const maxnamlen = MAXNAMLEN;
ACE_TCHAR tname[maxnamlen + 1];
int entry_count = 0;
for (ACE_DIRENT *directory; (directory = dir.read ()) != 0;)
{
// Skip the ".." and "." files.
if (ACE::isdotdir(directory->d_name) == true)
continue;
++entry_count;
#if defined (ACE_HAS_TCHAR_DIRENT)
ACE_OS::strncpy (tname, directory->d_name, maxnamlen);
#else
ACE_OS::strncpy (tname,
ACE_TEXT_CHAR_TO_TCHAR (directory->d_name),
maxnamlen);
#endif /* ACE_LACKS_STRUCT_DIR */
int local_file_count = 0;
int local_dir_count = 0;
ACE_stat stat_buf;
if (ACE_OS::lstat (directory->d_name, &stat_buf) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
tname),
-1);
switch (stat_buf.st_mode & S_IFMT)
{
case S_IFREG: // Either a regular file or an executable.
++file_count;
break;
case S_IFLNK: // Either a file or directory link, so let's find out.
if (ACE_OS::stat (directory->d_name, &stat_buf) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
tname),
-1);
if ((stat_buf.st_mode & S_IFMT) == S_IFDIR)
// Don't recurse through symbolic directory links!
++dir_count;
else
++file_count;
break;
case S_IFDIR:
ACE_DEBUG ((LM_DEBUG, "%*sentering subdirectory %s\n",
recursion_level * RECURSION_INDENT,
ACE_TEXT (""),
tname));
if (dirent_count (tname,
local_dir_count,
local_file_count,
recursion_level + 1) != -1)
{
ACE_DEBUG
((LM_DEBUG,
ACE_TEXT ("%*ssubdirectory %s has %d files and %d subdirectories.\n"),
recursion_level * RECURSION_INDENT,
ACE_TEXT (""),
tname,
local_file_count,
local_dir_count));
++dir_count;
#if !defined (ACE_LACKS_CHDIR)
// Move back up a level.
if (ACE_OS::chdir (ACE_TEXT ("..")) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("chdir: %p\n"),
dir_path),
-1);
#endif /* !ACE_LACKS_CHDIR */
}
break;
default: // Must be some other type of file (PIPE/FIFO/device)
++file_count;
break;
}
}
return entry_count;
}
static int
dirent_recurse_test (void)
{
int total_dirs = 0;
int total_files = 0;
const ACE_TCHAR *test_dir = TestDir.c_str ();
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Starting directory recursion test for %s\n"),
test_dir));
if (dirent_count (test_dir,
total_dirs,
total_files,
1) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("Directory recursion test failed for %s\n"),
test_dir),
-1);
ACE_DEBUG ((LM_DEBUG,
ACE_TEXT ("Directory recursion test succeeded for %s, read %d files %d dirs\n"),
test_dir,
total_files,
total_dirs));
return 0;
}
int
run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Dirent_Test"));
// First, find out where to run most of the scans. If a platform has a
// compiled-in setting in TEST_DIR, honor that. Else, look for:
// $top_srcdir/tests: The ACE_wrappers dir for autoconf builds
// $ACE_ROOT/tests: The ACE_wrappers dir for most other builds
// ../test: Last-chance try to hit the right place
#if defined (TEST_DIR)
TestDir = TEST_DIR;
#else
const char *root = ACE_OS::getenv ("top_srcdir");
if (root == 0)
root = ACE_OS::getenv ("ACE_ROOT");
if (root != 0)
{
TestDir = ACE_TEXT_CHAR_TO_TCHAR (root);
TestDir += ACE_DIRECTORY_SEPARATOR_STR;
TestDir += ACE_TEXT ("tests");
}
else
{
TestDir = ACE_TEXT ("../tests");
}
#endif /* TEST_DIR */
int status = 0;
if (-1 == dirent_test ())
status = -1;
if (-1 == dirent_selector_test ())
status = -1;
if (-1 == dirent_recurse_test ())
status = -1;
ACE_END_TEST;
return status;
}
|