Coverage Report

Created: 2026-07-06 15:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/util/once.h
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/once.h
19
// and modified by Doris
20
21
#pragma once
22
23
#include <atomic>
24
#include <mutex>
25
#include <stdexcept>
26
27
#include "common/exception.h"
28
#include "storage/olap_common.h"
29
30
namespace doris {
31
32
// Utility class for implementing thread-safe call-once semantics.
33
//
34
// call() will return stored result regardless of whether the first invocation
35
// returns a success status or not.
36
//
37
// Example:
38
//   class Resource {
39
//   public:
40
//     Status init() {
41
//       _init_once.call([this] { return _do_init(); });
42
//     }
43
//
44
//     bool is_inited() const {
45
//       return _init_once.has_called() && _init_once.stored_result().ok();
46
//     }
47
//   private:
48
//     Status _do_init() { /* init logic here */ }
49
//     DorisCallOnce<Status> _init_once;
50
//   };
51
template <typename ReturnType>
52
class DorisCallOnce {
53
public:
54
21.7M
    DorisCallOnce() : _has_called(false) {}
_ZN5doris13DorisCallOnceIN2tl8expectedINS_21EncryptionAlgorithmPBENS_6StatusEEEEC2Ev
Line
Count
Source
54
1.31M
    DorisCallOnce() : _has_called(false) {}
_ZN5doris13DorisCallOnceINS_6StatusEEC2Ev
Line
Count
Source
54
20.4M
    DorisCallOnce() : _has_called(false) {}
55
56
    // this method is not exception safe, it will core when exception occurs in
57
    // callback method. I have tested the code https://en.cppreference.com/w/cpp/thread/call_once.
58
    // If the underlying `once_flag` has yet to be invoked, invokes the provided
59
    // lambda and stores its return value. Otherwise, returns the stored Status.
60
    // template <typename Fn>
61
    // ReturnType call(Fn fn) {
62
    //     std::call_once(_once_flag, [this, fn] {
63
    //         _status = fn();
64
    //         _has_called.store(true, std::memory_order_release);
65
    //     });
66
    //     return _status;
67
    // }
68
69
    // If exception occurs in the function, the call flag is set, if user call
70
    // it again, the same exception will be thrown.
71
    // It is different from std::call_once. This is because if a method is called once
72
    // some internal state is changed, it maybe not called again although exception
73
    // occurred.
74
    template <typename Fn>
75
84.6M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
84.6M
        if (has_called()) {
78
78.1M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
78.1M
            return _status;
82
78.1M
        }
83
6.48M
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
6.48M
        if (has_called()) {
86
5.28k
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
5.28k
            return _status;
90
5.28k
        }
91
6.47M
        try {
92
6.47M
            _status = fn();
93
6.47M
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
6.45M
        _has_called.store(true, std::memory_order_release);
102
6.45M
        return _status;
103
6.47M
    }
_ZN5doris13DorisCallOnceIN2tl8expectedINS_21EncryptionAlgorithmPBENS_6StatusEEEE4callIZNS_10RowsetMeta24set_encryption_algorithmES3_EUlvE_EES5_T_
Line
Count
Source
75
179k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
179k
        if (has_called()) {
78
22.4k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
22.4k
            return _status;
82
22.4k
        }
83
157k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
157k
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
157k
        try {
92
157k
            _status = fn();
93
157k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
157k
        _has_called.store(true, std::memory_order_release);
102
157k
        return _status;
103
157k
    }
_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v212ColumnReader22set_dict_encoding_typeENS5_16DictEncodingTypeEEUlvE_EES1_T_
Line
Count
Source
75
6.44k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
6.44k
        if (has_called()) {
78
285
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
285
            return _status;
82
285
        }
83
6.15k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
6.15k
        if (has_called()) {
86
1
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
1
            return _status;
90
1
        }
91
6.15k
        try {
92
6.15k
            _status = fn();
93
6.15k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
6.16k
        _has_called.store(true, std::memory_order_release);
102
6.16k
        return _status;
103
6.15k
    }
beta_rowset.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEbPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
3.83M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
3.83M
        if (has_called()) {
78
3.60M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
3.60M
            return _status;
82
3.60M
        }
83
233k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
233k
        if (has_called()) {
86
1.49k
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
1.49k
            return _status;
90
1.49k
        }
91
231k
        try {
92
231k
            _status = fn();
93
231k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
222k
        _has_called.store(true, std::memory_order_release);
102
222k
        return _status;
103
231k
    }
beta_rowset_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_16BetaRowsetReader19_init_iterator_onceEvE3$_0EES1_T_
Line
Count
Source
75
4.49M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
4.49M
        if (has_called()) {
78
359k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
359k
            return _status;
82
359k
        }
83
4.13M
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
4.13M
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
4.13M
        try {
92
4.13M
            _status = fn();
93
4.13M
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
4.13M
        _has_called.store(true, std::memory_order_release);
102
4.13M
        return _status;
103
4.13M
    }
rowset_meta.cpp:_ZN5doris13DorisCallOnceIN2tl8expectedINS_21EncryptionAlgorithmPBENS_6StatusEEEE4callIZNS_10RowsetMeta2fsEvE3$_0EES5_T_
Line
Count
Source
75
333k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
333k
        if (has_called()) {
78
240k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
240k
            return _status;
82
240k
        }
83
93.1k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
93.1k
        if (has_called()) {
86
15
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
15
            return _status;
90
15
        }
91
93.1k
        try {
92
93.1k
            _status = fn();
93
93.1k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
92.8k
        _has_called.store(true, std::memory_order_release);
102
92.8k
        return _status;
103
93.1k
    }
ordinal_page_index.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v218OrdinalIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
3.04M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
3.04M
        if (has_called()) {
78
2.02M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
2.02M
            return _status;
82
2.02M
        }
83
1.02M
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
1.02M
        if (has_called()) {
86
897
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
897
            return _status;
90
897
        }
91
1.02M
        try {
92
1.02M
            _status = fn();
93
1.02M
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
1.02M
        _has_called.store(true, std::memory_order_release);
102
1.02M
        return _status;
103
1.02M
    }
zone_map_index.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v218ZoneMapIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
128k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
128k
        if (has_called()) {
78
89.9k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
89.9k
            return _status;
82
89.9k
        }
83
38.5k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
38.5k
        if (has_called()) {
86
1.46k
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
1.46k
            return _status;
90
1.46k
        }
91
37.0k
        try {
92
37.0k
            _status = fn();
93
37.0k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
37.7k
        _has_called.store(true, std::memory_order_release);
102
37.7k
        return _status;
103
37.0k
    }
bloom_filter_index_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v222BloomFilterIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
69.9k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
69.9k
        if (has_called()) {
78
43
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
43
            return _status;
82
43
        }
83
69.9k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
69.9k
        if (has_called()) {
86
1
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
1
            return _status;
90
1
        }
91
69.9k
        try {
92
69.9k
            _status = fn();
93
69.9k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
70.1k
        _has_called.store(true, std::memory_order_release);
102
70.1k
        return _status;
103
69.9k
    }
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment21_load_pk_bloom_filterEPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
4.06M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
4.06M
        if (has_called()) {
78
3.99M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
3.99M
            return _status;
82
3.99M
        }
83
68.1k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
68.1k
        if (has_called()) {
86
17
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
17
            return _status;
90
17
        }
91
68.0k
        try {
92
68.0k
            _status = fn();
93
68.0k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
69.3k
        _has_called.store(true, std::memory_order_release);
102
69.3k
        return _status;
103
68.0k
    }
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment10load_indexEPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
6.25M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
6.25M
        if (has_called()) {
78
6.11M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
6.11M
            return _status;
82
6.11M
        }
83
139k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
139k
        if (has_called()) {
86
779
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
779
            return _status;
90
779
        }
91
138k
        try {
92
138k
            _status = fn();
93
138k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
145k
        _has_called.store(true, std::memory_order_release);
102
145k
        return _status;
103
138k
    }
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment24_create_column_meta_onceEPNS_20OlapReaderStatisticsEE3$_0EES1_T_
Line
Count
Source
75
61.7M
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
61.7M
        if (has_called()) {
78
61.5M
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
61.5M
            return _status;
82
61.5M
        }
83
185k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
185k
        if (has_called()) {
86
618
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
618
            return _status;
90
618
        }
91
185k
        try {
92
185k
            _status = fn();
93
185k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
155k
        _has_called.store(true, std::memory_order_release);
102
155k
        return _status;
103
185k
    }
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment18new_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS4_13IndexIteratorESt14default_deleteISG_EEE3$_0EES1_T_
Line
Count
Source
75
76.7k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
76.7k
        if (has_called()) {
78
71.0k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
71.0k
            return _status;
82
71.0k
        }
83
5.69k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
5.69k
        if (has_called()) {
86
7
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
7
            return _status;
90
7
        }
91
5.68k
        try {
92
5.68k
            _status = fn();
93
5.68k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
5.66k
        _has_called.store(true, std::memory_order_release);
102
5.66k
        return _status;
103
5.68k
    }
variant_external_meta_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v225VariantExternalMetaReader13load_all_onceEPNS_14SubcolumnsTreeINS4_13SubcolumnMetaELb1EEEPNS4_17VariantStatisticsEE3$_0EES1_T_
Line
Count
Source
75
27.7k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
27.7k
        if (has_called()) {
78
24.9k
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
24.9k
            return _status;
82
24.9k
        }
83
2.77k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
2.77k
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
2.77k
        try {
92
2.77k
            _status = fn();
93
2.77k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
2.79k
        _has_called.store(true, std::memory_order_release);
102
2.79k
        return _status;
103
2.77k
    }
tablet.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_6Tablet4initEvE3$_0EES1_T_
Line
Count
Source
75
329k
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
329k
        if (has_called()) {
78
115
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
115
            return _status;
82
115
        }
83
329k
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
329k
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
329k
        try {
92
329k
            _status = fn();
93
329k
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
329k
        _has_called.store(true, std::memory_order_release);
102
329k
        return _status;
103
329k
    }
load_path_mgr.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_11LoadPathMgr12allocate_dirERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PSA_lE3$_0EES1_T_
Line
Count
Source
75
24
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
24
        if (has_called()) {
78
20
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
20
            return _status;
82
20
        }
83
4
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
4
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
4
        try {
92
4
            _status = fn();
93
4
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
4
        _has_called.store(true, std::memory_order_release);
102
4
        return _status;
103
4
    }
ann_index_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v214AnnIndexReader10load_indexEPNS_2io9IOContextEE3$_0EES1_T_
Line
Count
Source
75
82
    ReturnType call(Fn fn) {
76
        // Avoid lock to improve performance
77
82
        if (has_called()) {
78
38
            if (_eptr) {
79
0
                std::rethrow_exception(_eptr);
80
0
            }
81
38
            return _status;
82
38
        }
83
44
        std::lock_guard l(_flag_lock);
84
        // should check again because maybe another thread call successfully.
85
44
        if (has_called()) {
86
0
            if (_eptr) {
87
0
                std::rethrow_exception(_eptr);
88
0
            }
89
0
            return _status;
90
0
        }
91
44
        try {
92
44
            _status = fn();
93
44
        } catch (...) {
94
            // Save the exception for next call.
95
0
            _eptr = std::current_exception();
96
0
            _has_called.store(true, std::memory_order_release);
97
0
            std::rethrow_exception(_eptr);
98
0
        }
99
        // This memory order make sure both status and eptr is set
100
        // and will be seen in another thread.
101
44
        _has_called.store(true, std::memory_order_release);
102
44
        return _status;
103
44
    }
104
105
    // Has to pay attention to memory order
106
    // see https://en.cppreference.com/w/cpp/atomic/memory_order
107
    // Return whether `call` has been invoked or not.
108
158M
    bool has_called() const {
109
        // std::memory_order_acquire here and std::memory_order_release in
110
        // init(), taken together, mean that threads can safely synchronize on
111
        // _has_called.
112
158M
        return _has_called.load(std::memory_order_acquire);
113
158M
    }
_ZNK5doris13DorisCallOnceIN2tl8expectedINS_21EncryptionAlgorithmPBENS_6StatusEEEE10has_calledEv
Line
Count
Source
108
763k
    bool has_called() const {
109
        // std::memory_order_acquire here and std::memory_order_release in
110
        // init(), taken together, mean that threads can safely synchronize on
111
        // _has_called.
112
763k
        return _has_called.load(std::memory_order_acquire);
113
763k
    }
_ZNK5doris13DorisCallOnceINS_6StatusEE10has_calledEv
Line
Count
Source
108
157M
    bool has_called() const {
109
        // std::memory_order_acquire here and std::memory_order_release in
110
        // init(), taken together, mean that threads can safely synchronize on
111
        // _has_called.
112
157M
        return _has_called.load(std::memory_order_acquire);
113
157M
    }
114
115
    // Return the stored result. The result is only meaningful when `has_called() == true`.
116
32.1M
    ReturnType stored_result() const {
117
32.1M
        if (!has_called()) {
118
            // Could not return status if the method not called.
119
0
            throw doris::Exception(doris::ErrorCode::INTERNAL_ERROR,
120
0
                                   "calling stored_result while has not been called");
121
0
        }
122
32.1M
        if (_eptr) {
123
1
            std::rethrow_exception(_eptr);
124
1
        }
125
32.1M
        return _status;
126
32.1M
    }
127
128
private:
129
    std::atomic<bool> _has_called;
130
    // std::once_flag _once_flag;
131
    std::mutex _flag_lock;
132
    std::exception_ptr _eptr;
133
    ReturnType _status;
134
};
135
136
} // namespace doris