10#include "llvm/ADT/SmallString.h"
11#include "llvm/Support/FileSystem.h"
12#include "llvm/Support/Path.h"
13#include "llvm/Support/raw_ostream.h"
15#include <system_error>
18#define DEBUG_TYPE "clang-tidy-profiling"
23 llvm::StringRef SourceFile)
25 llvm::SmallString<32> TimestampStr;
26 llvm::raw_svector_ostream OS(TimestampStr);
30 llvm::SmallString<256> FinalPrefix(ProfilePrefix);
31 llvm::sys::path::append(FinalPrefix, TimestampStr);
35 llvm::sys::path::filename(SourceFile) +
".json")
39void ClangTidyProfiling::printUserFriendlyTable(llvm::raw_ostream &OS,
40 llvm::TimerGroup &TG) {
45void ClangTidyProfiling::printAsJSON(llvm::raw_ostream &OS,
46 llvm::TimerGroup &TG) {
48 OS << R
"("file": ")" << Storage->SourceFilename << "\",\n";
49 OS << R
"("timestamp": ")" << Storage->Timestamp << "\",\n";
50 OS <<
"\"profile\": {\n";
51 TG.printJSONValues(OS,
"");
57void ClangTidyProfiling::storeProfileData(llvm::TimerGroup &TG) {
58 assert(Storage &&
"We should have a filename.");
60 llvm::SmallString<256> OutputDirectory(Storage->StoreFilename);
61 llvm::sys::path::remove_filename(OutputDirectory);
62 if (std::error_code EC = llvm::sys::fs::create_directories(OutputDirectory)) {
63 llvm::errs() <<
"Unable to create output directory '" << OutputDirectory
64 <<
"': " << EC.message() <<
"\n";
69 llvm::raw_fd_ostream OS(Storage->StoreFilename, EC, llvm::sys::fs::OF_None);
71 llvm::errs() <<
"Error opening output file '" << Storage->StoreFilename
72 <<
"': " << EC.message() <<
"\n";
80 : Storage(std::
move(Storage)) {}
83 llvm::TimerGroup TG{
"clang-tidy",
"clang-tidy checks profiling",
Records};
85 printUserFriendlyTable(llvm::errs(), TG);
llvm::StringMap< llvm::TimeRecord > Records
ClangTidyProfiling()=default
std::string StoreFilename
llvm::sys::TimePoint Timestamp
std::string SourceFilename