mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This change introduces a thread-safe version of the 'SerializedDiagnosticConsumer' and refactors scanning compilation instance creation code to ensure this consumer gets added when the scanner query configuration command-line includes '-serialized-diagnostics-path' option.
53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
//===--- SerializedDiagnosticConsumer.h - Serialize Diagnostics -*- C++ -*-===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines the SerializedDiagnosticConsumer class, which
|
|
// serializes diagnostics to Clang's serialized diagnostic bitcode format.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_SERIALIZEDDIAGNOSTICCONSUMER_H
|
|
#define SWIFT_SERIALIZEDDIAGNOSTICCONSUMER_H
|
|
|
|
#include <memory>
|
|
|
|
namespace llvm {
|
|
class StringRef;
|
|
}
|
|
|
|
namespace swift {
|
|
|
|
class DiagnosticConsumer;
|
|
|
|
namespace serialized_diagnostics {
|
|
/// Create a DiagnosticConsumer that serializes diagnostics to a file, using
|
|
/// Clang's serialized diagnostics format.
|
|
///
|
|
/// \param outputPath the file path to write the diagnostics to.
|
|
///
|
|
/// \returns A new diagnostic consumer that serializes diagnostics.
|
|
std::unique_ptr<DiagnosticConsumer>
|
|
createConsumer(llvm::StringRef outputPath, bool emitMacroExpansionFiles);
|
|
|
|
/// Create a thread-safe DiagnosticConsumer that serializes diagnostics to a file,
|
|
/// using Clang's serialized diagnostics format.
|
|
///
|
|
/// \param outputPath the file path to write the diagnostics to.
|
|
///
|
|
/// \returns A new diagnostic consumer that serializes diagnostics.
|
|
std::unique_ptr<DiagnosticConsumer>
|
|
createThreadSafeConsumer(llvm::StringRef outputPath, bool emitMacroExpansionFiles);
|
|
}
|
|
}
|
|
|
|
#endif
|