Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/llvm/lib/Support/BinaryStreamError.cpp
Line
Count
Source (jump to first uncovered line)
1
//===- BinaryStreamError.cpp - Error extensions for streams -----*- C++ -*-===//
2
//
3
// 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
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "llvm/Support/BinaryStreamError.h"
10
#include "llvm/Support/raw_ostream.h"
11
12
using namespace llvm;
13
14
char BinaryStreamError::ID = 0;
15
16
BinaryStreamError::BinaryStreamError(stream_error_code C)
17
0
    : BinaryStreamError(C, "") {}
18
19
BinaryStreamError::BinaryStreamError(StringRef Context)
20
0
    : BinaryStreamError(stream_error_code::unspecified, Context) {}
21
22
BinaryStreamError::BinaryStreamError(stream_error_code C, StringRef Context)
23
0
    : Code(C) {
24
0
  ErrMsg = "Stream Error: ";
25
0
  switch (C) {
26
0
  case stream_error_code::unspecified:
27
0
    ErrMsg += "An unspecified error has occurred.";
28
0
    break;
29
0
  case stream_error_code::stream_too_short:
30
0
    ErrMsg += "The stream is too short to perform the requested operation.";
31
0
    break;
32
0
  case stream_error_code::invalid_array_size:
33
0
    ErrMsg += "The buffer size is not a multiple of the array element size.";
34
0
    break;
35
0
  case stream_error_code::invalid_offset:
36
0
    ErrMsg += "The specified offset is invalid for the current stream.";
37
0
    break;
38
0
  case stream_error_code::filesystem_error:
39
0
    ErrMsg += "An I/O error occurred on the file system.";
40
0
    break;
41
0
  }
42
43
0
  if (!Context.empty()) {
44
0
    ErrMsg += "  ";
45
0
    ErrMsg += Context;
46
0
  }
47
0
}
48
49
0
void BinaryStreamError::log(raw_ostream &OS) const { OS << ErrMsg; }
50
51
0
StringRef BinaryStreamError::getErrorMessage() const { return ErrMsg; }
52
53
0
std::error_code BinaryStreamError::convertToErrorCode() const {
54
0
  return inconvertibleErrorCode();
55
0
}