cmake/Source/kwsys/Directory.cxx

237 lines
5.3 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)
// 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>
#include <vector>
2017-04-14 19:02:05 +02:00
namespace KWSYS_NAMESPACE {
class DirectoryInternals
{
public:
// Array of Files
2015-11-17 17:22:37 +01:00
std::vector<std::string> Files;
// Path to Open'ed directory
2015-11-17 17:22:37 +01:00
std::string Path;
};
Directory::Directory()
{
this->Internal = new DirectoryInternals;
}
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
{
2017-04-14 19:02:05 +02:00
if (dindex >= this->Internal->Files.size()) {
2018-04-23 21:13:27 +02:00
return KWSYS_NULLPTR;
2017-04-14 19:02:05 +02:00
}
return this->Internal->Files[dindex].c_str();
}
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__)
2018-08-09 18:06:22 +02:00
# include <windows.h>
2017-04-14 19:02:05 +02:00
2018-08-09 18:06:22 +02:00
# 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>
2016-10-30 18:24:19 +01:00
// Wide function names can vary depending on compiler:
2018-08-09 18:06:22 +02:00
# ifdef __BORLANDC__
# define _wfindfirst_func __wfindfirst
# define _wfindnext_func __wfindnext
# else
# define _wfindfirst_func _wfindfirst
# define _wfindnext_func _wfindnext
# endif
2016-10-30 18:24:19 +01:00
2017-04-14 19:02:05 +02:00
namespace KWSYS_NAMESPACE {
2015-11-17 17:22:37 +01:00
bool Directory::Load(const std::string& name)
{
this->Clear();
2018-08-09 18:06:22 +02:00
# if (defined(_MSC_VER) && _MSC_VER < 1300) || defined(__BORLANDC__)
2016-10-30 18:24:19 +01:00
// Older Visual C++ and Embarcadero compilers.
long srchHandle;
2018-08-09 18:06:22 +02:00
# else // Newer Visual C++
intptr_t srchHandle;
2018-08-09 18:06:22 +02:00
# endif
char* buf;
2015-04-27 22:25:09 +02:00
size_t n = name.size();
2017-04-14 19:02:05 +02:00
if (*name.rbegin() == '/' || *name.rbegin() == '\\') {
buf = new char[n + 1 + 1];
2015-04-27 22:25:09 +02:00
sprintf(buf, "%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
buf = new char[n + 2 + 1];
2017-07-20 19:35:53 +02:00
if (name.find('\\') != std::string::npos) {
2015-04-27 22:25:09 +02:00
sprintf(buf, "%s\\*", name.c_str());
2017-04-14 19:02:05 +02:00
} else {
2015-04-27 22:25:09 +02:00
sprintf(buf, "%s/*", name.c_str());
}
2017-04-14 19:02:05 +02:00
}
struct _wfinddata_t data; // data of current file
// Now put them into the file array
2018-01-26 17:06:56 +01:00
srchHandle = _wfindfirst_func(
(wchar_t*)Encoding::ToWindowsExtendedPath(buf).c_str(), &data);
2017-04-14 19:02:05 +02:00
delete[] buf;
2017-04-14 19:02:05 +02:00
if (srchHandle == -1) {
return 0;
2017-04-14 19:02:05 +02:00
}
// Loop through names
2017-04-14 19:02:05 +02:00
do {
2014-08-03 19:52:23 +02:00
this->Internal->Files.push_back(Encoding::ToNarrow(data.name));
2017-04-14 19:02:05 +02:00
} while (_wfindnext_func(srchHandle, &data) != -1);
this->Internal->Path = name;
return _findclose(srchHandle) != -1;
}
2015-11-17 17:22:37 +01:00
unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
{
2018-08-09 18:06:22 +02:00
# if (defined(_MSC_VER) && _MSC_VER < 1300) || defined(__BORLANDC__)
2016-10-30 18:24:19 +01:00
// Older Visual C++ and Embarcadero compilers.
long srchHandle;
2018-08-09 18:06:22 +02:00
# else // Newer Visual C++
intptr_t srchHandle;
2018-08-09 18:06:22 +02:00
# endif
char* buf;
2015-04-27 22:25:09 +02:00
size_t n = name.size();
2017-04-14 19:02:05 +02:00
if (*name.rbegin() == '/') {
buf = new char[n + 1 + 1];
2015-04-27 22:25:09 +02:00
sprintf(buf, "%s*", name.c_str());
2017-04-14 19:02:05 +02:00
} else {
buf = new char[n + 2 + 1];
2015-04-27 22:25:09 +02:00
sprintf(buf, "%s/*", name.c_str());
2017-04-14 19:02:05 +02:00
}
struct _wfinddata_t data; // data of current file
// Now put them into the file array
2017-04-14 19:02:05 +02:00
srchHandle =
_wfindfirst_func((wchar_t*)Encoding::ToWide(buf).c_str(), &data);
delete[] buf;
2017-04-14 19:02:05 +02:00
if (srchHandle == -1) {
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++;
2017-04-14 19:02:05 +02:00
} while (_wfindnext_func(srchHandle, &data) != -1);
_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>
2015-04-27 22:25:09 +02:00
// PGI with glibc has trouble with dirent and large file support:
// http://www.pgroup.com/userforum/viewtopic.php?
// 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 {
2015-11-17 17:22:37 +01:00
bool Directory::Load(const std::string& name)
{
this->Clear();
2017-04-14 19:02:05 +02:00
2015-04-27 22:25:09 +02:00
DIR* dir = opendir(name.c_str());
2017-04-14 19:02:05 +02:00
if (!dir) {
return 0;
2017-04-14 19:02:05 +02:00
}
2017-04-14 19:02:05 +02:00
for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir)) {
this->Internal->Files.push_back(d->d_name);
2017-04-14 19:02:05 +02:00
}
this->Internal->Path = name;
closedir(dir);
return 1;
}
2015-11-17 17:22:37 +01:00
unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
{
2015-04-27 22:25:09 +02:00
DIR* dir = opendir(name.c_str());
2017-04-14 19:02:05 +02:00
if (!dir) {
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
}
closedir(dir);
return count;
}
} // namespace KWSYS_NAMESPACE
#endif