Coverage Report

Created: 2026-03-12 17:06

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/error_util.cc
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
// This file is copied from
18
// https://github.com/apache/impala/blob/branch-2.9.0/be/src/util/error-util.cc
19
// and modified by Doris
20
21
#include "util/error_util.h"
22
23
// IWYU pragma: no_include <bthread/errno.h>
24
#include <errno.h> // IWYU pragma: keep
25
26
#include <cstring>
27
#include <sstream>
28
#include <vector>
29
30
using std::string;
31
using std::stringstream;
32
using std::vector;
33
using std::ostream;
34
35
namespace doris {
36
37
0
string get_str_err_msg() {
38
    // Save errno. "<<" could reset it.
39
0
    int e = errno;
40
0
    if (e == 0) {
41
0
        return "";
42
0
    }
43
0
    stringstream ss;
44
0
    char buf[1024];
45
0
    ss << "Error(" << e << "): " << strerror_r(e, buf, 1024);
46
0
    return ss.str();
47
0
}
48
49
} // namespace doris