aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/fastos/unix_file.cpp
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2023-09-05 12:49:39 +0200
committerGitHub <noreply@github.com>2023-09-05 12:49:39 +0200
commit6d783357cf83163a1298372e88020d3d73c25e3c (patch)
tree459daa166d10f7fe743031e707a32c78f839091e /vespalib/src/vespa/fastos/unix_file.cpp
parent2697fbc195ef428210925e4b05223e0ab64405a4 (diff)
parent05df635cab10d2e312a10e0620a0e6558a4de013 (diff)
Merge branch 'master' into renovate/junit5-monorepo
Diffstat (limited to 'vespalib/src/vespa/fastos/unix_file.cpp')
-rw-r--r--vespalib/src/vespa/fastos/unix_file.cpp111
1 files changed, 0 insertions, 111 deletions
diff --git a/vespalib/src/vespa/fastos/unix_file.cpp b/vespalib/src/vespa/fastos/unix_file.cpp
index 6d10338aec1..b9fe46e920d 100644
--- a/vespalib/src/vespa/fastos/unix_file.cpp
+++ b/vespalib/src/vespa/fastos/unix_file.cpp
@@ -368,114 +368,3 @@ FastOS_UNIX_File::count_open_files()
return 0;
#endif
}
-
-FastOS_UNIX_DirectoryScan::FastOS_UNIX_DirectoryScan(const char *searchPath)
- : FastOS_DirectoryScanInterface(searchPath),
- _statRun(false),
- _isDirectory(false),
- _isRegular(false),
- _statName(nullptr),
- _statFilenameP(nullptr),
- _dir(nullptr),
- _dp(nullptr)
-{
- _dir = opendir(searchPath);
-
- const int minimumLength = 512 + 1;
- const int defaultLength = 16384;
-
- int maxNameLength = FastOS_File::GetMaximumFilenameLength(searchPath);
- int maxPathLength = FastOS_File::GetMaximumPathLength(searchPath);
- int nameLength = maxNameLength + 1 + maxPathLength;
-
- if ((maxNameLength == -1) ||
- (maxPathLength == -1) ||
- (nameLength < minimumLength))
- {
- nameLength = defaultLength;
- }
-
- _statName = new char [nameLength + 1]; // Include null
-
- strcpy(_statName, searchPath);
- strcat(_statName, "/");
-
- _statFilenameP = &_statName[strlen(_statName)];
-}
-
-
-FastOS_UNIX_DirectoryScan::~FastOS_UNIX_DirectoryScan()
-{
- if (_dir != nullptr) {
- closedir(_dir);
- _dir = nullptr;
- }
- delete [] _statName;
-}
-
-
-bool
-FastOS_UNIX_DirectoryScan::ReadNext()
-{
- _statRun = false;
-
- if (_dir != nullptr) {
- _dp = readdir(_dir);
- return (_dp != nullptr);
- }
-
- return false;
-}
-
-
-void
-FastOS_UNIX_DirectoryScan::DoStat()
-{
- struct stat stbuf{};
-
- assert(_dp != nullptr);
-
- strcpy(_statFilenameP, _dp->d_name);
-
- if (lstat(_statName, &stbuf) == 0) {
- _isRegular = S_ISREG(stbuf.st_mode);
- _isDirectory = S_ISDIR(stbuf.st_mode);
- } else {
- printf("lstat failed for [%s]\n", _dp->d_name);
- _isRegular = false;
- _isDirectory = false;
- }
-
- _statRun = true;
-}
-
-
-bool
-FastOS_UNIX_DirectoryScan::IsDirectory()
-{
- if (!_statRun) {
- DoStat();
- }
-
- return _isDirectory;
-}
-
-
-bool
-FastOS_UNIX_DirectoryScan::IsRegular()
-{
- if (!_statRun) {
- DoStat();
- }
-
- return _isRegular;
-}
-
-
-const char *
-FastOS_UNIX_DirectoryScan::GetName()
-{
- assert(_dp != nullptr);
-
- return static_cast<const char *>(_dp->d_name);
-}