blob: f22523f09ac80d1a36868c216198be337686c727 [file] [log] [blame]
Zachary Turnerd0b44fa2017-02-28 17:49:34 +00001//===- BinaryStreamError.cpp - Error extensions for streams -----*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Zachary Turnerd0b44fa2017-02-28 17:49:34 +00006//
7//===----------------------------------------------------------------------===//
8
Zachary Turnerd9dc2822017-03-02 20:52:51 +00009#include "llvm/Support/BinaryStreamError.h"
Zachary Turnerd0b44fa2017-02-28 17:49:34 +000010#include "llvm/Support/ErrorHandling.h"
11
12using namespace llvm;
13
14char BinaryStreamError::ID = 0;
15
16BinaryStreamError::BinaryStreamError(stream_error_code C)
17 : BinaryStreamError(C, "") {}
18
19BinaryStreamError::BinaryStreamError(StringRef Context)
20 : BinaryStreamError(stream_error_code::unspecified, Context) {}
21
22BinaryStreamError::BinaryStreamError(stream_error_code C, StringRef Context)
23 : Code(C) {
24 ErrMsg = "Stream Error: ";
25 switch (C) {
26 case stream_error_code::unspecified:
27 ErrMsg += "An unspecified error has occurred.";
28 break;
29 case stream_error_code::stream_too_short:
30 ErrMsg += "The stream is too short to perform the requested operation.";
31 break;
32 case stream_error_code::invalid_array_size:
33 ErrMsg += "The buffer size is not a multiple of the array element size.";
34 break;
35 case stream_error_code::invalid_offset:
36 ErrMsg += "The specified offset is invalid for the current stream.";
37 break;
38 case stream_error_code::filesystem_error:
39 ErrMsg += "An I/O error occurred on the file system.";
40 break;
Zachary Turnerd0b44fa2017-02-28 17:49:34 +000041 }
42
43 if (!Context.empty()) {
44 ErrMsg += " ";
45 ErrMsg += Context;
46 }
47}
48
Alexandre Ganea6a7efef2018-08-31 17:41:58 +000049void BinaryStreamError::log(raw_ostream &OS) const { OS << ErrMsg; }
Zachary Turnerd0b44fa2017-02-28 17:49:34 +000050
51StringRef BinaryStreamError::getErrorMessage() const { return ErrMsg; }
52
53std::error_code BinaryStreamError::convertToErrorCode() const {
54 return inconvertibleErrorCode();
55}