[PATCH] support: add a utility function to canonicalise path separators

Saleem Abdulrasool abdulras at fb.com
Thu Mar 6 15:12:25 PST 2014


  Split Windows and Unix implementations.

Hi majnemer,

http://llvm-reviews.chandlerc.com/D2995

CHANGE SINCE LAST DIFF
  http://llvm-reviews.chandlerc.com/D2995?vs=7614&id=7615#toc

Files:
  include/llvm/Support/FileSystem.h
  lib/Support/Unix/Path.inc
  lib/Support/Windows/Path.inc
  unittests/Support/Path.cpp

Index: include/llvm/Support/FileSystem.h
===================================================================
--- include/llvm/Support/FileSystem.h
+++ include/llvm/Support/FileSystem.h
@@ -269,6 +269,13 @@
 ///          platform specific error_code.
 error_code make_absolute(SmallVectorImpl<char> &path);
 
+/// @brief Normalize path separators in \a Path
+///
+/// If the path contains any '\' seprators, they are transformed into '/'.  This
+/// is particularly useful when cross-compiling Windows on Linux, but is safe to
+/// do on Windows, which accepts both characters as a path separtor.
+error_code normalise_separators(SmallVectorImpl<char> &Path);
+
 /// @brief Create all the non-existent directories in path.
 ///
 /// @param path Directories to create.
Index: lib/Support/Unix/Path.inc
===================================================================
--- lib/Support/Unix/Path.inc
+++ lib/Support/Unix/Path.inc
@@ -272,6 +272,16 @@
   return error_code::success();
 }
 
+error_code normalise_separators(SmallVectorImpl<char> &Path) {
+  for (auto PI = Path.begin(), PE = Path.end(); PI < PE; ++PI) {
+    if (*PI == '\\' && *(PI + 1) == '\\')
+      ++PI; // increment once, the for loop will increment over the escaped slash
+    else if (*PI == '\\')
+      *PI = '/';
+  }
+  return error_code::success();
+}
+
 error_code create_hard_link(const Twine &to, const Twine &from) {
   // Get arguments.
   SmallString<128> from_storage;
Index: lib/Support/Windows/Path.inc
===================================================================
--- lib/Support/Windows/Path.inc
+++ lib/Support/Windows/Path.inc
@@ -158,6 +158,11 @@
   return error_code::success();
 }
 
+error_code normalise_separators(SmallVectorImpl<char> &Path) {
+  (void) Path;
+  return error_code::success();
+}
+
 error_code create_hard_link(const Twine &to, const Twine &from) {
   // Get arguments.
   SmallString<128> from_storage;
Index: unittests/Support/Path.cpp
===================================================================
--- unittests/Support/Path.cpp
+++ unittests/Support/Path.cpp
@@ -620,4 +620,35 @@
   fs::mapped_file_region mfrrv(std::move(m));
   EXPECT_EQ(mfrrv.const_data(), Data);
 }
+
+TEST(Support, NormalizePath) {
+#if defined(LLVM_ON_WIN32)
+#define EXPECT_PATH_IS(path__, windows__, not_windows__)                        \
+  EXPECT_EQ(path__, windows__);
+#else
+#define EXPECT_PATH_IS(path__, windows__, not_windows__)                        \
+  EXPECT_EQ(path__, not_windows__);
+#endif
+
+  SmallString<64> Path1("a");
+  SmallString<64> Path2("a/b");
+  SmallString<64> Path3("a\\b");
+  SmallString<64> Path4("a\\\\b");
+  SmallString<64> Path5("\\a");
+  SmallString<64> Path6("a\\");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path1));
+  EXPECT_PATH_IS(Path1, "a", "a");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path2));
+  EXPECT_PATH_IS(Path2, "a/b", "a/b");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path3));
+  EXPECT_PATH_IS(Path3, "a\b", "a/b");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path4));
+  EXPECT_PATH_IS(Path4, "a\\\\b", "a\\\\b");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path5));
+  EXPECT_PATH_IS(Path5, "\\a", "/a");
+  ASSERT_NO_ERROR(fs::normalise_separators(Path6));
+  EXPECT_PATH_IS(Path6, "a\\", "a/");
+
+#undef EXPECT_PATH_IS
+}
 } // anonymous namespace
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D2995.2.patch
Type: text/x-patch
Size: 3324 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140306/b5aff36b/attachment.bin>


More information about the llvm-commits mailing list