cmake/Source/kwsys/Directory.cxx

348 lines
8.2 KiB
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
#include "kwsysPrivate.h"
#include KWSYS_HEADER(Directory.hxx)
#include KWSYS_HEADER(Configure.hxx)
2014-08-03 19:52:23 +02:00
#include KWSYS_HEADER(Encoding.hxx)
2022-03-29 21:10:50 +02:00
#include KWSYS_HEADER(SystemTools.hxx)
// Work-around CMake dependency scanning limitation. This must
// duplicate the above list of headers.
#if 0
2018-08-09 18:06:22 +02:00
# include "Configure.hxx.in"
# include "Directory.hxx.in"
# include "Encoding.hxx.in"
#endif
2015-11-17 17:22:37 +01:00
#include <string>
2022-03-29 21:10:50 +02:00
#include <utility>
2015-11-17 17:22:37 +01:00
#include <vector>
2022-03-29 21:10:50 +02:00
#if defined(_WIN32) && !defined(__CYGWIN__)
# include <windows.h>
# include <ctype.h>
# include <fcntl.h>
# include <io.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <sys/stat.h>
# include <sys/types.h>
#endif
2017-04-14 19:02:05 +02:00
namespace KWSYS_NAMESPACE {
class DirectoryInternals
{
public:
2022-03-29 21:10:50 +02:00
struct FileData
{
std::string Name;
#if defined(_WIN32) && !defined(__CYGWIN__)
2022-11-16 20:14:03 +01:00
WIN32_FIND_DATAW FindData;
2022-03-29 21:10:50 +02:00
#endif
FileData(std::string name
#if defined(_WIN32) && !defined(__CYGWIN__)
,
2022-11-16 20:14:03 +01:00
WIN32_FIND_DATAW data
2022-03-29 21:10:50 +02:00
#endif
)
: Name(std::move(name))
#if defined(_WIN32) && !defined(__CYGWIN__)
, FindData(std::move(data))
#endif
{
}
};
// Array of Files
2022-03-29 21:10:50 +02:00
std::vector<FileData> Files;
// Path to Open'ed directory
2015-11-17 17:22:37 +01:00
std::string Path;
};
Directory::Directory()
{
this->Internal = new DirectoryInternals;
}
2020-08-30 11:54:41 +02:00
Directory::Directory(Directory&& other)
{
this->Internal = other.Internal;
other.Internal = nullptr;
}
Directory& Directory::operator=(Directory&& other)
{
std::swap(this->Internal, other.Internal);
return *this;
}
Directory::~Directory()
{
delete this->Internal;
}
unsigned long Directory::GetNumberOfFiles() const
{
return static_cast<unsigned long>(this->Internal->Files.size());
}
const char* Directory::GetFile(unsigned long dindex) const
{
2022-03-29 21:10:50 +02:00
return this->Internal->Files[dindex].Name.c_str();
}
std::string const& Directory::GetFileName(std::size_t i) const
{
return this->Internal->Files[i].Name;
}
std::string Directory::GetFilePath(std::size_t i) const
{
std::string abs = this->Internal->Path;
if (!abs.empty() && abs.back() != '/') {
abs += '/';
2017-04-14 19:02:05 +02:00
}
2022-03-29 21:10:50 +02:00
abs += this->Internal->Files[i].Name;
return abs;
}
bool Directory::FileIsDirectory(std::size_t i) const
{
#if defined(_WIN32) && !defined(__CYGWIN__)
2022-11-16 20:14:03 +01:00
auto const& data = this->Internal->Files[i].FindData;
return (data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
2022-03-29 21:10:50 +02:00
#else
std::string const& path = this->GetFilePath(i);
return kwsys::SystemTools::FileIsDirectory(path);
#endif
}
bool Directory::FileIsSymlink(std::size_t i) const
{
std::string const& path = this->GetFilePath(i);
#if defined(_WIN32) && !defined(__CYGWIN__)
2022-11-16 20:14:03 +01:00
auto const& data = this->Internal->Files[i].FindData;
2022-03-29 21:10:50 +02:00
return kwsys::SystemTools::FileIsSymlinkWithAttr(
2022-11-16 20:14:03 +01:00
Encoding::ToWindowsExtendedPath(path), data.dwFileAttributes);
2022-03-29 21:10:50 +02:00
#else
return kwsys::SystemTools::FileIsSymlink(path);
#endif
}
const char* Directory::GetPath() const
{
return this->Internal->Path.c_str();
}
void Directory::Clear()
{
this->Internal->Path.resize(0);
this->Internal->Files.clear();
}
} // namespace KWSYS_NAMESPACE
2016-10-30 18:24:19 +01:00
// First Windows platforms
2016-10-30 18:24:19 +01:00
#if defined(_WIN32) && !defined(__CYGWIN__)
2017-04-14 19:02:05 +02:00
namespace KWSYS_NAMESPACE {
2021-09-14 00:13:48 +02:00
Status Directory::Load(std::string const& name, std::string* errorMessage)
{
this->Clear();
2022-11-16 20:14:03 +01:00
HANDLE srchHandle;
char* buf;
2022-03-29 21:10:50 +02:00
size_t bufLength;
2015-04-27 22:25:09 +02:00
size_t n = name.size();
2019-11-11 23:01:05 +01:00
if (name.back() == '/' || name.back() == '\\') {
2022-03-29 21:10:50 +02:00
bufLength = n + 1 + 1;
buf = new char[bufLength];
snprintf(buf, bufLength, "%s*", name.c_str());
2017-04-14 19:02:05 +02:00
} else {
2015-04-27 22:25:09 +02:00
// Make sure the slashes in the wildcard suffix are consistent with the
// rest of the path
2022-03-29 21:10:50 +02:00
bufLength = n + 2 + 1;
buf = new char[bufLength];
2017-07-20 19:35:53 +02:00
if (name.find('\\') != std::string::npos) {
2022-03-29 21:10:50 +02:00
snprintf(buf, bufLength, "%s\\*", name.c_str());
2017-04-14 19:02:05 +02:00
} else {
2022-03-29 21:10:50 +02:00
snprintf(buf, bufLength, "%s/*", name.c_str());
}
2017-04-14 19:02:05 +02:00
}
2022-11-16 20:14:03 +01:00
WIN32_FIND_DATAW data; // data of current file
// Now put them into the file array
2020-08-30 11:54:41 +02:00
srchHandle =
2022-11-16 20:14:03 +01:00
FindFirstFileW(Encoding::ToWindowsExtendedPath(buf).c_str(), &data);
2017-04-14 19:02:05 +02:00
delete[] buf;
2022-11-16 20:14:03 +01:00
if (srchHandle == INVALID_HANDLE_VALUE) {
2021-09-14 00:13:48 +02:00
Status status = Status::POSIX_errno();
if (errorMessage) {
*errorMessage = status.GetString();
}
return status;
2017-04-14 19:02:05 +02:00
}
// Loop through names
2017-04-14 19:02:05 +02:00
do {
2022-11-16 20:14:03 +01:00
this->Internal->Files.emplace_back(Encoding::ToNarrow(data.cFileName),
data);
} while (FindNextFileW(srchHandle, &data));
this->Internal->Path = name;
2022-11-16 20:14:03 +01:00
if (!FindClose(srchHandle)) {
2021-09-14 00:13:48 +02:00
Status status = Status::POSIX_errno();
if (errorMessage) {
*errorMessage = status.GetString();
}
return status;
}
return Status::Success();
}
2020-08-30 11:54:41 +02:00
unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name,
std::string* errorMessage)
{
2022-11-16 20:14:03 +01:00
HANDLE srchHandle;
char* buf;
2022-03-29 21:10:50 +02:00
size_t bufLength;
2015-04-27 22:25:09 +02:00
size_t n = name.size();
2019-11-11 23:01:05 +01:00
if (name.back() == '/') {
2022-03-29 21:10:50 +02:00
bufLength = n + 1 + 1;
buf = new char[n + 1 + 1];
2022-03-29 21:10:50 +02:00
snprintf(buf, bufLength, "%s*", name.c_str());
2017-04-14 19:02:05 +02:00
} else {
2022-03-29 21:10:50 +02:00
bufLength = n + 2 + 1;
buf = new char[n + 2 + 1];
2022-03-29 21:10:50 +02:00
snprintf(buf, bufLength, "%s/*", name.c_str());
2017-04-14 19:02:05 +02:00
}
2022-11-16 20:14:03 +01:00
WIN32_FIND_DATAW data; // data of current file
// Now put them into the file array
2022-11-16 20:14:03 +01:00
srchHandle = FindFirstFileW(Encoding::ToWide(buf).c_str(), &data);
2017-04-14 19:02:05 +02:00
delete[] buf;
2022-11-16 20:14:03 +01:00
if (srchHandle == INVALID_HANDLE_VALUE) {
2021-09-14 00:13:48 +02:00
if (errorMessage) {
if (unsigned int errorId = GetLastError()) {
LPSTR message = nullptr;
DWORD size = FormatMessageA(
FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr, errorId, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPSTR)&message, 0, nullptr);
*errorMessage = std::string(message, size);
LocalFree(message);
} else {
*errorMessage = "Unknown error.";
}
}
return 0;
2017-04-14 19:02:05 +02:00
}
// Loop through names
unsigned long count = 0;
2017-04-14 19:02:05 +02:00
do {
count++;
2022-11-16 20:14:03 +01:00
} while (FindNextFileW(srchHandle, &data));
FindClose(srchHandle);
return count;
}
} // namespace KWSYS_NAMESPACE
#else
// Now the POSIX style directory access
2018-08-09 18:06:22 +02:00
# include <sys/types.h>
2017-04-14 19:02:05 +02:00
2018-08-09 18:06:22 +02:00
# include <dirent.h>
2020-08-30 11:54:41 +02:00
# include <errno.h>
# include <string.h>
2015-04-27 22:25:09 +02:00
// PGI with glibc has trouble with dirent and large file support:
2024-07-09 14:46:46 +02:00
// https://www.pgroup.com/userforum/viewtopic.php?
2015-04-27 22:25:09 +02:00
// p=1992&sid=f16167f51964f1a68fe5041b8eb213b6
// Work around the problem by mapping dirent the same way as readdir.
2018-08-09 18:06:22 +02:00
# if defined(__PGI) && defined(__GLIBC__)
# define kwsys_dirent_readdir dirent
# define kwsys_dirent_readdir64 dirent64
# define kwsys_dirent kwsys_dirent_lookup(readdir)
# define kwsys_dirent_lookup(x) kwsys_dirent_lookup_delay(x)
# define kwsys_dirent_lookup_delay(x) kwsys_dirent_##x
# else
# define kwsys_dirent dirent
# endif
2017-04-14 19:02:05 +02:00
namespace KWSYS_NAMESPACE {
2021-09-14 00:13:48 +02:00
Status Directory::Load(std::string const& name, std::string* errorMessage)
{
this->Clear();
2017-04-14 19:02:05 +02:00
2020-08-30 11:54:41 +02:00
errno = 0;
2015-04-27 22:25:09 +02:00
DIR* dir = opendir(name.c_str());
2017-04-14 19:02:05 +02:00
if (!dir) {
2020-08-30 11:54:41 +02:00
if (errorMessage != nullptr) {
*errorMessage = std::string(strerror(errno));
}
2021-09-14 00:13:48 +02:00
return Status::POSIX_errno();
2017-04-14 19:02:05 +02:00
}
2020-08-30 11:54:41 +02:00
errno = 0;
2017-04-14 19:02:05 +02:00
for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir)) {
2020-08-30 11:54:41 +02:00
this->Internal->Files.emplace_back(d->d_name);
}
if (errno != 0) {
if (errorMessage != nullptr) {
*errorMessage = std::string(strerror(errno));
}
2021-09-14 00:13:48 +02:00
return Status::POSIX_errno();
2017-04-14 19:02:05 +02:00
}
2020-08-30 11:54:41 +02:00
this->Internal->Path = name;
closedir(dir);
2021-09-14 00:13:48 +02:00
return Status::Success();
}
2020-08-30 11:54:41 +02:00
unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name,
std::string* errorMessage)
{
2020-08-30 11:54:41 +02:00
errno = 0;
2015-04-27 22:25:09 +02:00
DIR* dir = opendir(name.c_str());
2017-04-14 19:02:05 +02:00
if (!dir) {
2020-08-30 11:54:41 +02:00
if (errorMessage != nullptr) {
*errorMessage = std::string(strerror(errno));
}
return 0;
2017-04-14 19:02:05 +02:00
}
unsigned long count = 0;
2017-04-14 19:02:05 +02:00
for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir)) {
count++;
2017-04-14 19:02:05 +02:00
}
2020-08-30 11:54:41 +02:00
if (errno != 0) {
if (errorMessage != nullptr) {
*errorMessage = std::string(strerror(errno));
}
return false;
}
closedir(dir);
return count;
}
} // namespace KWSYS_NAMESPACE
#endif