summaryrefslogtreecommitdiffstats
path: root/Directory.cxx
diff options
context:
space:
mode:
authorKWSys Upstream <kwrobot@kitware.com>2016-11-09 14:12:29 (GMT)
committerBrad King <brad.king@kitware.com>2016-11-09 14:22:56 (GMT)
commit773b36e5d4af3ac040625e0ea16bcfd30fcdeb6d (patch)
treebd409d3f09f6714981a444e896e1bc08e22ee184 /Directory.cxx
parent53862f04a0002894c0ef5aeb23d52495e5abe60d (diff)
downloadCMake-773b36e5d4af3ac040625e0ea16bcfd30fcdeb6d.zip
CMake-773b36e5d4af3ac040625e0ea16bcfd30fcdeb6d.tar.gz
CMake-773b36e5d4af3ac040625e0ea16bcfd30fcdeb6d.tar.bz2
KWSys 2016-11-09 (18c65411)
Code extracted from: http://public.kitware.com/KWSys.git at commit 18c654114de3aa65429542f95308720bc68f9231 (master). Upstream Shortlog ----------------- Brad King (14): 37306a1c FStream: Quiet unused argument warning 15e90a3c Sort includes to stabilize include order w.r.t. clang-format 26509227 Copyright.txt: Add notice of copyright by contributors fc42d3f2 Add temporary script to filter license notices c41c1bc4 Simplify KWSys per-source license notices 1d4c0b4a Remove temporary script that filtered license notices a4f5ef79 SystemInformation: Remove stray comment 8649a886 kwsysPrivate: Protect KWSYS_HEADER macro from clang-format 89b98af5 Configure clang-format for KWSys source tree 547dacad Add a script to run clang-format on the entire source tree aa94be0c CONTRIBUTING: Add a section on coding style 6604c4b6 Empty commit at end of history preceding clang-format style transition 2b3e2b1c Tell Git to not export 'clang-format' infrastructure 18c65411 FStream: Include Configure.hxx before other headers Kitware Robot (1): 6c973b46 Revise C++ coding style using clang-format
Diffstat (limited to 'Directory.cxx')
-rw-r--r--Directory.cxx140
1 files changed, 56 insertions, 84 deletions
diff --git a/Directory.cxx b/Directory.cxx
index 15480e1..3c31b49 100644
--- a/Directory.cxx
+++ b/Directory.cxx
@@ -1,14 +1,5 @@
-/*============================================================================
- KWSys - Kitware System Library
- Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
-
- Distributed under the OSI-approved BSD License (the "License");
- see accompanying file Copyright.txt for details.
-
- This software is distributed WITHOUT ANY WARRANTY; without even the
- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- See the License for more information.
-============================================================================*/
+/* 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)
@@ -19,16 +10,15 @@
// Work-around CMake dependency scanning limitation. This must
// duplicate the above list of headers.
#if 0
-# include "Directory.hxx.in"
-# include "Configure.hxx.in"
-# include "Encoding.hxx.in"
+#include "Configure.hxx.in"
+#include "Directory.hxx.in"
+#include "Encoding.hxx.in"
#endif
#include <string>
#include <vector>
-namespace KWSYS_NAMESPACE
-{
+namespace KWSYS_NAMESPACE {
//----------------------------------------------------------------------------
class DirectoryInternals
@@ -62,10 +52,9 @@ unsigned long Directory::GetNumberOfFiles() const
//----------------------------------------------------------------------------
const char* Directory::GetFile(unsigned long dindex) const
{
- if ( dindex >= this->Internal->Files.size() )
- {
+ if (dindex >= this->Internal->Files.size()) {
return 0;
- }
+ }
return this->Internal->Files[dindex].c_str();
}
@@ -88,9 +77,10 @@ void Directory::Clear()
#if defined(_WIN32) && !defined(__CYGWIN__)
#include <windows.h>
-#include <io.h>
+
#include <ctype.h>
#include <fcntl.h>
+#include <io.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -99,15 +89,14 @@ void Directory::Clear()
// Wide function names can vary depending on compiler:
#ifdef __BORLANDC__
-# define _wfindfirst_func __wfindfirst
-# define _wfindnext_func __wfindnext
+#define _wfindfirst_func __wfindfirst
+#define _wfindnext_func __wfindnext
#else
-# define _wfindfirst_func _wfindfirst
-# define _wfindnext_func _wfindnext
+#define _wfindfirst_func _wfindfirst
+#define _wfindnext_func _wfindnext
#endif
-namespace KWSYS_NAMESPACE
-{
+namespace KWSYS_NAMESPACE {
bool Directory::Load(const std::string& name)
{
@@ -120,42 +109,34 @@ bool Directory::Load(const std::string& name)
#endif
char* buf;
size_t n = name.size();
- if ( *name.rbegin() == '/' || *name.rbegin() == '\\' )
- {
+ if (*name.rbegin() == '/' || *name.rbegin() == '\\') {
buf = new char[n + 1 + 1];
sprintf(buf, "%s*", name.c_str());
- }
- else
- {
+ } else {
// Make sure the slashes in the wildcard suffix are consistent with the
// rest of the path
buf = new char[n + 2 + 1];
- if ( name.find('\\') != name.npos )
- {
+ if (name.find('\\') != name.npos) {
sprintf(buf, "%s\\*", name.c_str());
- }
- else
- {
+ } else {
sprintf(buf, "%s/*", name.c_str());
- }
}
- struct _wfinddata_t data; // data of current file
+ }
+ struct _wfinddata_t data; // data of current file
// Now put them into the file array
- srchHandle = _wfindfirst_func((wchar_t*)Encoding::ToWide(buf).c_str(), &data);
- delete [] buf;
+ srchHandle =
+ _wfindfirst_func((wchar_t*)Encoding::ToWide(buf).c_str(), &data);
+ delete[] buf;
- if ( srchHandle == -1 )
- {
+ if (srchHandle == -1) {
return 0;
- }
+ }
// Loop through names
- do
- {
+ do {
this->Internal->Files.push_back(Encoding::ToNarrow(data.name));
- }
- while ( _wfindnext_func(srchHandle, &data) != -1 );
+ } while (_wfindnext_func(srchHandle, &data) != -1);
this->Internal->Path = name;
return _findclose(srchHandle) != -1;
}
@@ -170,34 +151,29 @@ unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
#endif
char* buf;
size_t n = name.size();
- if ( *name.rbegin() == '/' )
- {
+ if (*name.rbegin() == '/') {
buf = new char[n + 1 + 1];
sprintf(buf, "%s*", name.c_str());
- }
- else
- {
+ } else {
buf = new char[n + 2 + 1];
sprintf(buf, "%s/*", name.c_str());
- }
- struct _wfinddata_t data; // data of current file
+ }
+ struct _wfinddata_t data; // data of current file
// Now put them into the file array
- srchHandle = _wfindfirst_func((wchar_t*)Encoding::ToWide(buf).c_str(), &data);
- delete [] buf;
+ srchHandle =
+ _wfindfirst_func((wchar_t*)Encoding::ToWide(buf).c_str(), &data);
+ delete[] buf;
- if ( srchHandle == -1 )
- {
+ if (srchHandle == -1) {
return 0;
- }
+ }
// Loop through names
unsigned long count = 0;
- do
- {
+ do {
count++;
- }
- while ( _wfindnext_func(srchHandle, &data) != -1 );
+ } while (_wfindnext_func(srchHandle, &data) != -1);
_findclose(srchHandle);
return count;
}
@@ -209,6 +185,7 @@ unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
// Now the POSIX style directory access
#include <sys/types.h>
+
#include <dirent.h>
// PGI with glibc has trouble with dirent and large file support:
@@ -216,33 +193,30 @@ unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
// p=1992&sid=f16167f51964f1a68fe5041b8eb213b6
// Work around the problem by mapping dirent the same way as readdir.
#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
+#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
+#define kwsys_dirent dirent
#endif
-namespace KWSYS_NAMESPACE
-{
+namespace KWSYS_NAMESPACE {
bool Directory::Load(const std::string& name)
{
this->Clear();
-
+
DIR* dir = opendir(name.c_str());
- if (!dir)
- {
+ if (!dir) {
return 0;
- }
+ }
- for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir) )
- {
+ for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir)) {
this->Internal->Files.push_back(d->d_name);
- }
+ }
this->Internal->Path = name;
closedir(dir);
return 1;
@@ -252,16 +226,14 @@ unsigned long Directory::GetNumberOfFilesInDirectory(const std::string& name)
{
DIR* dir = opendir(name.c_str());
- if (!dir)
- {
+ if (!dir) {
return 0;
- }
+ }
unsigned long count = 0;
- for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir) )
- {
+ for (kwsys_dirent* d = readdir(dir); d; d = readdir(dir)) {
count++;
- }
+ }
closedir(dir);
return count;
}