diff options
author | Kitware Robot <kwrobot@kitware.com> | 2018-06-01 13:53:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-06-01 13:53:42 (GMT) |
commit | d7204e649ed4ebb19bb341b4e49eb51514364922 (patch) | |
tree | d9ac3ded5ae6899be7188795011743fe3e6da0a6 /Source/cmSystemTools.cxx | |
parent | 12fed3edb107c949671043196fa94c542b45452a (diff) | |
download | CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.zip CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.tar.gz CMake-d7204e649ed4ebb19bb341b4e49eb51514364922.tar.bz2 |
Revise C++ coding style using clang-format-6.0
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`. Use `clang-format` version 6.0.
* If you reached this commit for a line in `git blame`, re-run the blame
operation starting at the parent of this commit to see older history
for the content.
* See the parent commit for instructions to rebase a change across this
style transition commit.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 134 |
1 files changed, 67 insertions, 67 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index cf1068f..d641a4e 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -8,24 +8,24 @@ #include "cm_sys_stat.h" #if defined(CMAKE_BUILD_WITH_CMAKE) -#include "cmArchiveWrite.h" -#include "cmLocale.h" -#include "cm_libarchive.h" -#ifndef __LA_INT64_T -#define __LA_INT64_T la_int64_t -#endif +# include "cmArchiveWrite.h" +# include "cmLocale.h" +# include "cm_libarchive.h" +# ifndef __LA_INT64_T +# define __LA_INT64_T la_int64_t +# endif #endif #if defined(CMAKE_BUILD_WITH_CMAKE) -#include "cmCryptoHash.h" +# include "cmCryptoHash.h" #endif #if defined(CMAKE_USE_ELF_PARSER) -#include "cmELF.h" +# include "cmELF.h" #endif #if defined(CMAKE_USE_MACH_PARSER) -#include "cmMachO.h" +# include "cmMachO.h" #endif #include "cmsys/Directory.hxx" @@ -48,30 +48,30 @@ #include <utility> #if defined(_WIN32) -#include <windows.h> +# include <windows.h> // include wincrypt.h after windows.h -#include <wincrypt.h> +# include <wincrypt.h> -#include <fcntl.h> /* _O_TEXT */ +# include <fcntl.h> /* _O_TEXT */ -#include "cm_uv.h" +# include "cm_uv.h" #else -#include <sys/time.h> -#include <unistd.h> -#include <utime.h> +# include <sys/time.h> +# include <unistd.h> +# include <utime.h> #endif #if defined(_WIN32) && \ (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__MINGW32__)) -#include <io.h> +# include <io.h> #endif #if defined(__APPLE__) -#include <mach-o/dyld.h> +# include <mach-o/dyld.h> #endif #ifdef __QNX__ -#include <malloc.h> /* for malloc/free on QNX */ +# include <malloc.h> /* for malloc/free on QNX */ #endif static bool cm_isspace(char c) @@ -93,32 +93,32 @@ public: #if !defined(HAVE_ENVIRON_NOT_REQUIRE_PROTOTYPE) // For GetEnvironmentVariables -#if defined(_WIN32) +# if defined(_WIN32) extern __declspec(dllimport) char** environ; -#else +# else extern char** environ; -#endif +# endif #endif #if defined(CMAKE_BUILD_WITH_CMAKE) static std::string cm_archive_entry_pathname(struct archive_entry* entry) { -#if cmsys_STL_HAS_WSTRING +# if cmsys_STL_HAS_WSTRING return cmsys::Encoding::ToNarrow(archive_entry_pathname_w(entry)); -#else +# else return archive_entry_pathname(entry); -#endif +# endif } static int cm_archive_read_open_file(struct archive* a, const char* file, int block_size) { -#if cmsys_STL_HAS_WSTRING +# if cmsys_STL_HAS_WSTRING std::wstring wfile = cmsys::Encoding::ToWide(file); return archive_read_open_filename_w(a, wfile.c_str(), block_size); -#else +# else return archive_read_open_filename(a, file, block_size); -#endif +# endif } #endif @@ -144,9 +144,9 @@ private: HANDLE handle_; }; #elif defined(__APPLE__) -#include <crt_externs.h> +# include <crt_externs.h> -#define environ (*_NSGetEnviron()) +# define environ (*_NSGetEnviron()) #endif bool cmSystemTools::s_RunCommandHideConsole = false; @@ -689,11 +689,11 @@ size_t cmSystemTools::CalculateCommandLineLengthLimit() // We estimate the size of the environment block to be 1000. // This isn't accurate at all, but leaves some headroom. szArgMax = szArgMax < 1000 ? 0 : szArgMax - 1000; -#if defined(_WIN32) || defined(__linux) +# if defined(_WIN32) || defined(__linux) sz = std::min(sz, static_cast<size_t>(szArgMax)); -#else +# else sz = static_cast<size_t>(szArgMax); -#endif +# endif } #endif return sz; @@ -995,20 +995,20 @@ void cmSystemTools::InitializeLibUV() // global _fmode setting so that using libuv does not change the // default file text/binary mode. See libuv issue 840. uv_loop_close(uv_default_loop()); -#ifdef _MSC_VER +# ifdef _MSC_VER _set_fmode(_O_TEXT); -#else +# else _fmode = _O_TEXT; -#endif +# endif #endif } bool cmSystemTools::RenameFile(const char* oldname, const char* newname) { #ifdef _WIN32 -#ifndef INVALID_FILE_ATTRIBUTES -#define INVALID_FILE_ATTRIBUTES ((DWORD)-1) -#endif +# ifndef INVALID_FILE_ATTRIBUTES +# define INVALID_FILE_ATTRIBUTES ((DWORD)-1) +# endif /* Windows MoveFileEx may not replace read-only or in-use files. If it fails then remove the read-only attribute from any existing destination. Try multiple times since we may be racing against another process @@ -1460,14 +1460,14 @@ std::string cmSystemTools::CollapseCombinedPath(std::string const& dir, #ifdef CMAKE_BUILD_WITH_CMAKE bool cmSystemTools::UnsetEnv(const char* value) { -#if !defined(HAVE_UNSETENV) +# if !defined(HAVE_UNSETENV) std::string var = value; var += "="; return cmSystemTools::PutEnv(var.c_str()); -#else +# else unsetenv(value); return true; -#endif +# endif } std::vector<std::string> cmSystemTools::GetEnvironmentVariables() @@ -1522,13 +1522,13 @@ void cmSystemTools::EnableVSConsoleOutput() // output and allow it to be captured on the fly. cmSystemTools::PutEnv("vsconsoleoutput=1"); -#ifdef CMAKE_BUILD_WITH_CMAKE +# ifdef CMAKE_BUILD_WITH_CMAKE // VS sets an environment variable to tell MS tools like "cl" to report // output through a backdoor pipe instead of stdout/stderr. Unset the // environment variable to close this backdoor for any path of process // invocations that passes through CMake so we can capture the output. cmSystemTools::UnsetEnv("VS_UNICODE_OUTPUT"); -#endif +# endif #endif } @@ -1599,8 +1599,8 @@ bool cmSystemTools::CreateTar(const char* outFileName, #if defined(CMAKE_BUILD_WITH_CMAKE) namespace { -#define BSDTAR_FILESIZE_PRINTF "%lu" -#define BSDTAR_FILESIZE_TYPE unsigned long +# define BSDTAR_FILESIZE_PRINTF "%lu" +# define BSDTAR_FILESIZE_TYPE unsigned long void list_item_verbose(FILE* out, struct archive_entry* entry) { char tmp[100]; @@ -1673,13 +1673,13 @@ void list_item_verbose(FILE* out, struct archive_entry* entry) /* Format the time using 'ls -l' conventions. */ tim = archive_entry_mtime(entry); -#define HALF_YEAR ((time_t)365 * 86400 / 2) -#if defined(_WIN32) && !defined(__CYGWIN__) +# define HALF_YEAR ((time_t)365 * 86400 / 2) +# if defined(_WIN32) && !defined(__CYGWIN__) /* Windows' strftime function does not support %e format. */ -#define DAY_FMT "%d" -#else -#define DAY_FMT "%e" /* Day number without leading zeros */ -#endif +# define DAY_FMT "%d" +# else +# define DAY_FMT "%e" /* Day number without leading zeros */ +# endif if (tim < now - HALF_YEAR || tim > now + HALF_YEAR) { fmt = DAY_FMT " %b %Y"; } else { @@ -1706,11 +1706,11 @@ bool copy_data(struct archive* ar, struct archive* aw) long r; const void* buff; size_t size; -#if defined(ARCHIVE_VERSION_NUMBER) && ARCHIVE_VERSION_NUMBER >= 3000000 +# if defined(ARCHIVE_VERSION_NUMBER) && ARCHIVE_VERSION_NUMBER >= 3000000 __LA_INT64_T offset; -#else +# else off_t offset; -#endif +# endif for (;;) { // Return value: @@ -1733,9 +1733,9 @@ bool copy_data(struct archive* ar, struct archive* aw) return false; } } -#if !defined(__clang__) && !defined(__HP_aCC) +# if !defined(__clang__) && !defined(__HP_aCC) return false; /* this should not happen but it quiets some compilers */ -#endif +# endif } bool extract_tar(const char* outFileName, bool verbose, bool extract) @@ -1798,13 +1798,13 @@ bool extract_tar(const char* outFileName, bool verbose, bool extract) break; } } -#ifdef _WIN32 +# ifdef _WIN32 else if (const char* linktext = archive_entry_symlink(entry)) { std::cerr << "cmake -E tar: warning: skipping symbolic link \"" << cm_archive_entry_pathname(entry) << "\" -> \"" << linktext << "\"." << std::endl; } -#endif +# endif else { cmSystemTools::Error("Problem with archive_write_header(): ", archive_error_string(ext)); @@ -2051,9 +2051,9 @@ bool cmSystemTools::FileTimeSet(const char* fname, cmSystemToolsFileTime* t) } #ifdef _WIN32 -#ifndef CRYPT_SILENT -#define CRYPT_SILENT 0x40 /* Not defined by VS 6 version of header. */ -#endif +# ifndef CRYPT_SILENT +# define CRYPT_SILENT 0x40 /* Not defined by VS 6 version of header. */ +# endif static int WinCryptRandom(void* data, size_t size) { int result = 0; @@ -2134,14 +2134,14 @@ void cmSystemTools::FindCMakeResources(const char* argv0) exe_dir = cmSystemTools::GetFilenamePath(realPath); #elif defined(__APPLE__) (void)argv0; // ignore this on OS X -#define CM_EXE_PATH_LOCAL_SIZE 16384 +# define CM_EXE_PATH_LOCAL_SIZE 16384 char exe_path_local[CM_EXE_PATH_LOCAL_SIZE]; -#if defined(MAC_OS_X_VERSION_10_3) && !defined(MAC_OS_X_VERSION_10_4) +# if defined(MAC_OS_X_VERSION_10_3) && !defined(MAC_OS_X_VERSION_10_4) unsigned long exe_path_size = CM_EXE_PATH_LOCAL_SIZE; -#else +# else uint32_t exe_path_size = CM_EXE_PATH_LOCAL_SIZE; -#endif -#undef CM_EXE_PATH_LOCAL_SIZE +# endif +# undef CM_EXE_PATH_LOCAL_SIZE char* exe_path = exe_path_local; if (_NSGetExecutablePath(exe_path, &exe_path_size) < 0) { exe_path = static_cast<char*>(malloc(exe_path_size)); |