mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
#pragma once
|
|
|
|
#include <binlog/binlog.hpp>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
#include <optional>
|
|
#include <cassert>
|
|
#include <fstream>
|
|
#include <filesystem>
|
|
#include <sstream>
|
|
#include <mutex>
|
|
#include <fmt/format.h>
|
|
#include <fmt/chrono.h>
|
|
#include <nlohmann/json.hpp>
|
|
|
|
namespace codeql {
|
|
|
|
extern const std::string_view programName;
|
|
|
|
struct SwiftDiagnosticsLocation {
|
|
std::string_view file;
|
|
unsigned startLine;
|
|
unsigned startColumn;
|
|
unsigned endLine;
|
|
unsigned endColumn;
|
|
|
|
nlohmann::json json() const;
|
|
|
|
std::string str() const;
|
|
};
|
|
|
|
// Models a diagnostic source for Swift, holding static information that goes out into a diagnostic
|
|
// These are internally stored into a map on id's. A specific error log can use binlog's category
|
|
// as id, which will then be used to recover the diagnostic source while dumping.
|
|
struct SwiftDiagnostic {
|
|
std::string_view id;
|
|
std::string_view name;
|
|
static constexpr std::string_view extractorName = "swift";
|
|
std::string_view action;
|
|
// space separated if more than 1. Not a vector to allow constexpr
|
|
// TODO(C++20) with vector going constexpr this can be turned to `std::vector<std::string_view>`
|
|
std::string_view helpLinks;
|
|
|
|
std::optional<SwiftDiagnosticsLocation> location;
|
|
// for the moment, we only output errors, so no need to store the severity
|
|
|
|
// create a JSON diagnostics for this source with the given timestamp and message to out
|
|
// A plaintextMessage is used that includes both the message and the action to take. Dots are
|
|
// appended to both. The id is used to construct the source id in the form
|
|
// `swift/<prog name>/<id>`
|
|
nlohmann::json json(const std::chrono::system_clock::time_point& timestamp,
|
|
std::string_view message) const;
|
|
|
|
// returns <id> or <id>@<location> if a location is present
|
|
std::string abbreviation() const;
|
|
|
|
SwiftDiagnostic withLocation(std::string_view file,
|
|
unsigned startLine = 0,
|
|
unsigned startColumn = 0,
|
|
unsigned endLine = 0,
|
|
unsigned endColumn = 0) const {
|
|
auto ret = *this;
|
|
ret.location = SwiftDiagnosticsLocation{file, startLine, startColumn, endLine, endColumn};
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
constexpr SwiftDiagnostic internalError{
|
|
"internal-error",
|
|
"Internal error",
|
|
"Contact us about this issue",
|
|
};
|
|
} // namespace codeql
|