Home | History | Annotate | Download | only in Basic
      1 //===--- DiagnosticError.h - Diagnostic payload for llvm::Error -*- C++ -*-===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 #ifndef LLVM_CLANG_BASIC_DIAGNOSTIC_ERROR_H
     11 #define LLVM_CLANG_BASIC_DIAGNOSTIC_ERROR_H
     12 
     13 #include "clang/Basic/PartialDiagnostic.h"
     14 #include "llvm/Support/Error.h"
     15 
     16 namespace clang {
     17 
     18 /// \brief Carries a Clang diagnostic in an llvm::Error.
     19 ///
     20 /// Users should emit the stored diagnostic using the DiagnosticsEngine.
     21 class DiagnosticError : public llvm::ErrorInfo<DiagnosticError> {
     22 public:
     23   DiagnosticError(PartialDiagnosticAt Diag) : Diag(std::move(Diag)) {}
     24 
     25   void log(raw_ostream &OS) const override { OS << "clang diagnostic"; }
     26 
     27   PartialDiagnosticAt &getDiagnostic() { return Diag; }
     28   const PartialDiagnosticAt &getDiagnostic() const { return Diag; }
     29 
     30   /// Creates a new \c DiagnosticError that contains the given diagnostic at
     31   /// the given location.
     32   static llvm::Error create(SourceLocation Loc, PartialDiagnostic Diag) {
     33     return llvm::make_error<DiagnosticError>(
     34         PartialDiagnosticAt(Loc, std::move(Diag)));
     35   }
     36 
     37   /// Extracts and returns the diagnostic payload from the given \c Error if
     38   /// the error is a \c DiagnosticError. Returns none if the given error is not
     39   /// a \c DiagnosticError.
     40   static Optional<PartialDiagnosticAt> take(llvm::Error &Err) {
     41     Optional<PartialDiagnosticAt> Result;
     42     Err = llvm::handleErrors(std::move(Err), [&](DiagnosticError &E) {
     43       Result = std::move(E.getDiagnostic());
     44     });
     45     return Result;
     46   }
     47 
     48   static char ID;
     49 
     50 private:
     51   // Users are not expected to use error_code.
     52   std::error_code convertToErrorCode() const override {
     53     return llvm::inconvertibleErrorCode();
     54   }
     55 
     56   PartialDiagnosticAt Diag;
     57 };
     58 
     59 } // end namespace clang
     60 
     61 #endif // LLVM_CLANG_BASIC_DIAGNOSTIC_ERROR_H
     62