blob: d8cdd2cc2dbaac36f7ad8d365b7ae6821a171fd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//===-- Generic implementation of error mapper ------------------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_STDIO_PRINTF_CORE_GENERIC_ERROR_MAPPER_H
#define LLVM_LIBC_SRC_STDIO_PRINTF_CORE_GENERIC_ERROR_MAPPER_H
#include "hdr/errno_macros.h"
#include "src/stdio/printf_core/core_structs.h"
#include "src/stdio/printf_core/error_mapper.h"
namespace LIBC_NAMESPACE_DECL {
namespace printf_core {
LIBC_INLINE static int internal_error_to_errno(int internal_error) {
// System error occured, return error as is.
if (internal_error < 1001 && internal_error > 0) {
return internal_error;
}
// Map internal error to the available C standard errnos.
switch (-internal_error) {
case WRITE_OK:
return 0;
case FILE_WRITE_ERROR:
case FILE_STATUS_ERROR:
case NULLPTR_WRITE_ERROR:
case ALLOCATION_ERROR:
return EDOM;
case INT_CONVERSION_ERROR:
case FIXED_POINT_CONVERSION_ERROR:
case OVERFLOW_ERROR:
return ERANGE;
default:
LIBC_ASSERT(
false &&
"Invalid internal printf error code passed to internal_error_to_errno");
return EDOM;
}
}
} // namespace printf_core
} // namespace LIBC_NAMESPACE_DECL
#endif // LLVM_LIBC_SRC_STDIO_PRINTF_CORE_GENERIC_ERROR_MAPPER_H
|