Skip to content

Commit 890dfdd

Browse files
committedMar 8, 2019
[clangd] Remove ./ and ../ in the file paths
Reviewers: hokein Subscribers: ilya-biryukov, ioeric, MaskRay, jkorous, arphaman, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D59084 llvm-svn: 355681
1 parent f07a3fd commit 890dfdd

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
 

‎clang-tools-extra/clangd/index/Background.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ llvm::SmallString<128> getAbsolutePath(const tooling::CompileCommand &Cmd) {
121121
} else {
122122
AbsolutePath = Cmd.Directory;
123123
llvm::sys::path::append(AbsolutePath, Cmd.Filename);
124+
llvm::sys::path::remove_dots(AbsolutePath, true);
124125
}
125126
return AbsolutePath;
126127
}

‎clang-tools-extra/unittests/clangd/BackgroundIndexTests.cpp

+33
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,14 @@ class MemoryShardStorage : public BackgroundIndexStorage {
4444
llvm::Error storeShard(llvm::StringRef ShardIdentifier,
4545
IndexFileOut Shard) const override {
4646
std::lock_guard<std::mutex> Lock(StorageMu);
47+
AccessedPaths.insert(ShardIdentifier);
4748
Storage[ShardIdentifier] = llvm::to_string(Shard);
4849
return llvm::Error::success();
4950
}
5051
std::unique_ptr<IndexFileIn>
5152
loadShard(llvm::StringRef ShardIdentifier) const override {
5253
std::lock_guard<std::mutex> Lock(StorageMu);
54+
AccessedPaths.insert(ShardIdentifier);
5355
if (Storage.find(ShardIdentifier) == Storage.end()) {
5456
return nullptr;
5557
}
@@ -62,6 +64,8 @@ class MemoryShardStorage : public BackgroundIndexStorage {
6264
CacheHits++;
6365
return llvm::make_unique<IndexFileIn>(std::move(*IndexFile));
6466
}
67+
68+
mutable llvm::StringSet<> AccessedPaths;
6569
};
6670

6771
class BackgroundIndexTest : public ::testing::Test {
@@ -428,5 +432,34 @@ TEST_F(BackgroundIndexTest, ShardStorageEmptyFile) {
428432
Contains(AllOf(Named("new_func"), Declared(), Not(Defined()))));
429433
}
430434

435+
TEST_F(BackgroundIndexTest, NoDotsInAbsPath) {
436+
MockFSProvider FS;
437+
llvm::StringMap<std::string> Storage;
438+
size_t CacheHits = 0;
439+
MemoryShardStorage MSS(Storage, CacheHits);
440+
OverlayCDB CDB(/*Base=*/nullptr);
441+
BackgroundIndex Idx(Context::empty(), FS, CDB,
442+
[&](llvm::StringRef) { return &MSS; });
443+
444+
tooling::CompileCommand Cmd;
445+
FS.Files[testPath("root/A.cc")] = "";
446+
Cmd.Filename = "../A.cc";
447+
Cmd.Directory = testPath("root/build");
448+
Cmd.CommandLine = {"clang++", "../A.cc"};
449+
CDB.setCompileCommand(testPath("root/build/../A.cc"), Cmd);
450+
451+
FS.Files[testPath("root/B.cc")] = "";
452+
Cmd.Filename = "./B.cc";
453+
Cmd.Directory = testPath("root");
454+
Cmd.CommandLine = {"clang++", "./B.cc"};
455+
CDB.setCompileCommand(testPath("root/./B.cc"), Cmd);
456+
457+
ASSERT_TRUE(Idx.blockUntilIdleForTest());
458+
for (llvm::StringRef AbsPath : MSS.AccessedPaths.keys()) {
459+
EXPECT_FALSE(AbsPath.contains("./")) << AbsPath;
460+
EXPECT_FALSE(AbsPath.contains("../")) << AbsPath;
461+
}
462+
}
463+
431464
} // namespace clangd
432465
} // namespace clang

0 commit comments

Comments
 (0)
Please sign in to comment.