diff options
author | vitalyisaev <vitalyisaev@yandex-team.com> | 2023-06-29 10:00:50 +0300 |
---|---|---|
committer | vitalyisaev <vitalyisaev@yandex-team.com> | 2023-06-29 10:00:50 +0300 |
commit | 6ffe9e53658409f212834330e13564e4952558f6 (patch) | |
tree | 85b1e00183517648b228aafa7c8fb07f5276f419 /contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h | |
parent | 726057070f9c5a91fc10fde0d5024913d10f1ab9 (diff) | |
download | ydb-6ffe9e53658409f212834330e13564e4952558f6.tar.gz |
YQ Connector: support managed ClickHouse
Со стороны dqrun можно обратиться к инстансу коннектора, который работает на streaming стенде, и извлечь данные из облачного CH.
Diffstat (limited to 'contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h')
-rw-r--r-- | contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h b/contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h new file mode 100644 index 0000000000..7217ca3b85 --- /dev/null +++ b/contrib/libs/llvm14/tools/llvm-ifs/ErrorCollector.h @@ -0,0 +1,74 @@ +//===- 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_LLVM_IFS_ERRORCOLLECTOR_H +#define LLVM_TOOLS_LLVM_IFS_ERRORCOLLECTOR_H + +#include "llvm/Support/Error.h" +#include <vector> + +namespace llvm { +namespace ifs { + +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. + [[noreturn]] void fatalUnhandledError(); + + bool ErrorsAreFatal; + std::vector<Error> Errors; + std::vector<std::string> Tags; +}; + +} // end namespace ifs +} // end namespace llvm + +#endif // LLVM_TOOLS_LLVM_IFS_ERRORCOLLECTOR_H |