1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00
llvm-mirror/tools/llvm-elfabi/ErrorCollector.h
Chandler Carruth ae65e281f3 Update the file headers across all of the LLVM projects in the monorepo
to reflect the new license.

We understand that people may be surprised that we're moving the header
entirely to discuss the new license. We checked this carefully with the
Foundation's lawyer and we believe this is the correct approach.

Essentially, all code in the project is now made available by the LLVM
project under our new license, so you will see that the license headers
include that license only. Some of our contributors have contributed
code under our old license, and accordingly, we have retained a copy of
our old license notice in the top-level files in each project and
repository.

llvm-svn: 351636
2019-01-19 08:50:56 +00:00

75 lines
2.8 KiB
C++

//===- ErrorCollector.h -----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===-----------------------------------------------------------------------===/
///
/// This class collects errors that should be reported or ignored in aggregate.
///
/// Like llvm::Error, an ErrorCollector cannot be copied. Unlike llvm::Error,
/// an ErrorCollector may be destroyed if it was originally constructed to treat
/// errors as non-fatal. In this case, all Errors are consumed upon destruction.
/// An ErrorCollector may be initially constructed (or escalated) such that
/// errors are treated as fatal. This causes a crash if an attempt is made to
/// delete the ErrorCollector when some Errors have not been retrieved via
/// makeError().
///
//===-----------------------------------------------------------------------===/
#ifndef LLVM_TOOLS_ELFABI_ERRORCOLLECTOR_H
#define LLVM_TOOLS_ELFABI_ERRORCOLLECTOR_H
#include "llvm/Support/Error.h"
#include <vector>
namespace llvm {
namespace elfabi {
class ErrorCollector {
public:
/// Upon destruction, an ErrorCollector will crash if UseFatalErrors=true and
/// there are remaining errors that haven't been fetched by makeError().
ErrorCollector(bool UseFatalErrors = true) : ErrorsAreFatal(UseFatalErrors) {}
// Don't allow copying.
ErrorCollector(const ErrorCollector &Stub) = delete;
ErrorCollector &operator=(const ErrorCollector &Other) = delete;
~ErrorCollector();
// TODO: Add move constructor and operator= when a testable situation arises.
/// Returns a single error that contains messages for all stored Errors.
Error makeError();
/// Adds an error with a descriptive tag that helps with identification.
/// If the error is an Error::success(), it is checked and discarded.
void addError(Error &&E, StringRef Tag);
/// This ensures an ErrorCollector will treat unhandled errors as fatal.
/// This function should be called if errors that usually can be ignored
/// are suddenly of concern (i.e. attempt multiple things that return Error,
/// but only care about the Errors if no attempt succeeds).
void escalateToFatal();
private:
/// Logs all errors to a raw_ostream.
void log(raw_ostream &OS);
/// Returns true if all errors have been retrieved through makeError(), or
/// false if errors have been added since the last makeError() call.
bool allErrorsHandled() const;
/// Dump output and crash.
LLVM_ATTRIBUTE_NORETURN void fatalUnhandledError();
bool ErrorsAreFatal;
std::vector<Error> Errors;
std::vector<std::string> Tags;
};
} // end namespace elfabi
} // end namespace llvm
#endif // LLVM_TOOLS_ELFABI_ERRORCOLLECTOR_H