2019-06-25 20:48:56 +08:00
|
|
|
// Copyright 2020 Google LLC
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
2022-01-28 17:38:27 +08:00
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2019-06-25 20:48:56 +08:00
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#include "sandboxed_api/tools/clang_generator/diagnostics.h"
|
|
|
|
|
2022-11-03 21:01:50 +08:00
|
|
|
#include "absl/status/status.h"
|
2019-06-25 20:48:56 +08:00
|
|
|
#include "absl/strings/cord.h"
|
2022-11-03 21:01:50 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
2019-06-25 20:48:56 +08:00
|
|
|
|
|
|
|
namespace sapi {
|
|
|
|
|
|
|
|
constexpr absl::string_view kSapiStatusPayload =
|
|
|
|
"https://github.com/google/sandboxed-api";
|
|
|
|
|
|
|
|
absl::Status MakeStatusWithDiagnostic(clang::SourceLocation loc,
|
2022-11-03 21:01:50 +08:00
|
|
|
absl::StatusCode code,
|
2019-06-25 20:48:56 +08:00
|
|
|
absl::string_view message) {
|
2022-11-03 21:01:50 +08:00
|
|
|
absl::Status status(code, message);
|
2019-06-25 20:48:56 +08:00
|
|
|
absl::Cord payload;
|
|
|
|
uint64_t raw_loc = loc.getRawEncoding();
|
|
|
|
payload.Append(
|
|
|
|
absl::string_view(reinterpret_cast<char*>(&raw_loc), sizeof(raw_loc)));
|
|
|
|
status.SetPayload(kSapiStatusPayload, std::move(payload));
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2022-11-03 21:01:50 +08:00
|
|
|
absl::Status MakeStatusWithDiagnostic(clang::SourceLocation loc,
|
|
|
|
absl::string_view message) {
|
|
|
|
return MakeStatusWithDiagnostic(loc, absl::StatusCode::kUnknown, message);
|
|
|
|
}
|
|
|
|
|
2019-06-25 20:48:56 +08:00
|
|
|
absl::optional<clang::SourceLocation> GetDiagnosticLocationFromStatus(
|
|
|
|
const absl::Status& status) {
|
|
|
|
if (auto payload =
|
|
|
|
status.GetPayload(kSapiStatusPayload).value_or(absl::Cord());
|
|
|
|
payload.size() == sizeof(uint64_t)) {
|
|
|
|
return clang::SourceLocation::getFromRawEncoding(
|
|
|
|
*reinterpret_cast<const uint64_t*>(payload.Flatten().data()));
|
|
|
|
}
|
|
|
|
return absl::nullopt;
|
|
|
|
}
|
|
|
|
|
2022-11-03 21:01:50 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
clang::DiagnosticBuilder GetDiagnosticBuilder(
|
|
|
|
clang::DiagnosticsEngine& de, clang::SourceLocation loc,
|
|
|
|
clang::DiagnosticsEngine::Level level, absl::string_view message) {
|
2019-06-25 20:48:56 +08:00
|
|
|
clang::DiagnosticBuilder builder =
|
2022-11-03 21:01:50 +08:00
|
|
|
de.Report(loc, de.getCustomDiagID(level, "header generation: %0"));
|
2019-06-25 20:48:56 +08:00
|
|
|
builder.AddString(llvm::StringRef(message.data(), message.size()));
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
2022-11-03 21:01:50 +08:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
clang::DiagnosticBuilder ReportFatalError(clang::DiagnosticsEngine& de,
|
|
|
|
clang::SourceLocation loc,
|
|
|
|
absl::string_view message) {
|
|
|
|
return GetDiagnosticBuilder(de, loc, clang::DiagnosticsEngine::Fatal,
|
|
|
|
message);
|
|
|
|
}
|
|
|
|
|
|
|
|
clang::DiagnosticBuilder ReportWarning(clang::DiagnosticsEngine& de,
|
|
|
|
clang::SourceLocation loc,
|
|
|
|
absl::string_view message) {
|
|
|
|
return GetDiagnosticBuilder(de, loc, clang::DiagnosticsEngine::Warning,
|
|
|
|
message);
|
|
|
|
}
|
|
|
|
|
2019-06-25 20:48:56 +08:00
|
|
|
} // namespace sapi
|