cmake: Inline the add_llvm_symbol_exports.py script
[llvm-project.git] / clang / lib / DirectoryWatcher / DirectoryScanner.cpp
blobfc4b493e7b4c7b0fc59dae4ce458bce31ff9d00f
1 //===- DirectoryScanner.cpp - Utility functions for DirectoryWatcher ------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "DirectoryScanner.h"
11 #include "llvm/Support/Path.h"
13 namespace clang {
15 using namespace llvm;
17 Optional<sys::fs::file_status> getFileStatus(StringRef Path) {
18 sys::fs::file_status Status;
19 std::error_code EC = status(Path, Status);
20 if (EC)
21 return None;
22 return Status;
25 std::vector<std::string> scanDirectory(StringRef Path) {
26 using namespace llvm::sys;
27 std::vector<std::string> Result;
29 std::error_code EC;
30 for (auto It = fs::directory_iterator(Path, EC),
31 End = fs::directory_iterator();
32 !EC && It != End; It.increment(EC)) {
33 auto status = getFileStatus(It->path());
34 if (!status)
35 continue;
36 Result.emplace_back(sys::path::filename(It->path()));
39 return Result;
42 std::vector<DirectoryWatcher::Event>
43 getAsFileEvents(const std::vector<std::string> &Scan) {
44 std::vector<DirectoryWatcher::Event> Events;
45 Events.reserve(Scan.size());
47 for (const auto &File : Scan) {
48 Events.emplace_back(DirectoryWatcher::Event{
49 DirectoryWatcher::Event::EventKind::Modified, File});
51 return Events;
54 } // namespace clang