/root/doris/be/src/util/once.h
Line | Count | Source (jump to first uncovered line) |
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 "olap/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 | 20.3M | 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 | 74.6M | ReturnType call(Fn fn) { |
76 | | // Avoid lock to improve performance |
77 | 74.6M | if (has_called()) { |
78 | 66.7M | if (_eptr) { |
79 | 0 | std::rethrow_exception(_eptr); |
80 | 0 | } |
81 | 66.7M | return _status; |
82 | 66.7M | } |
83 | 7.85M | std::lock_guard l(_flag_lock); |
84 | | // should check again because maybe another thread call successfully. |
85 | 7.85M | if (has_called()) { |
86 | 4.12k | if (_eptr) { |
87 | 0 | std::rethrow_exception(_eptr); |
88 | 0 | } |
89 | 4.12k | return _status; |
90 | 4.12k | } |
91 | 7.85M | try { |
92 | 7.85M | _status = fn(); |
93 | 7.85M | } 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 | 7.78M | _has_called.store(true, std::memory_order_release); |
102 | 7.78M | return _status; |
103 | 7.85M | } _ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v212ColumnReader22set_dict_encoding_typeENS5_16DictEncodingTypeEEUlvE_EES1_T_ Line | Count | Source | 75 | 3.40k | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 3.40k | if (has_called()) { | 78 | 91 | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 91 | return _status; | 82 | 91 | } | 83 | 3.30k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 3.30k | if (has_called()) { | 86 | 1 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 1 | return _status; | 90 | 1 | } | 91 | 3.30k | try { | 92 | 3.30k | _status = fn(); | 93 | 3.30k | } 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 | 3.31k | _has_called.store(true, std::memory_order_release); | 102 | 3.31k | return _status; | 103 | 3.30k | } |
beta_rowset.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10BetaRowset20get_segment_num_rowsEPSt6vectorIjSaIjEEE3$_0EES1_T_ Line | Count | Source | 75 | 2.43M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 2.43M | if (has_called()) { | 78 | 2.21M | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 2.21M | return _status; | 82 | 2.21M | } | 83 | 223k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 223k | if (has_called()) { | 86 | 114 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 114 | return _status; | 90 | 114 | } | 91 | 223k | try { | 92 | 223k | _status = fn(); | 93 | 223k | } 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 | 223k | _has_called.store(true, std::memory_order_release); | 102 | 223k | return _status; | 103 | 223k | } |
beta_rowset_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_16BetaRowsetReader19_init_iterator_onceEvE3$_0EES1_T_ Line | Count | Source | 75 | 6.77M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 6.77M | if (has_called()) { | 78 | 399k | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 399k | return _status; | 82 | 399k | } | 83 | 6.37M | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 6.37M | if (has_called()) { | 86 | 0 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 0 | return _status; | 90 | 0 | } | 91 | 6.37M | try { | 92 | 6.37M | _status = fn(); | 93 | 6.37M | } 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.37M | _has_called.store(true, std::memory_order_release); | 102 | 6.37M | return _status; | 103 | 6.37M | } |
bitmap_index_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v217BitmapIndexReader4loadEbbE3$_0EES1_T_ Line | Count | Source | 75 | 4 | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 4 | if (has_called()) { | 78 | 0 | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 0 | return _status; | 82 | 0 | } | 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 | } |
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment21_load_pk_bloom_filterEPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 4.12M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 4.12M | if (has_called()) { | 78 | 4.09M | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 4.09M | return _status; | 82 | 4.09M | } | 83 | 32.5k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 32.5k | if (has_called()) { | 86 | 12 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 12 | return _status; | 90 | 12 | } | 91 | 32.5k | try { | 92 | 32.5k | _status = fn(); | 93 | 32.5k | } 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 | 31.0k | _has_called.store(true, std::memory_order_release); | 102 | 31.0k | return _status; | 103 | 32.5k | } |
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment10load_indexEPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 5.58M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 5.58M | if (has_called()) { | 78 | 5.47M | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 5.47M | return _status; | 82 | 5.47M | } | 83 | 113k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 113k | if (has_called()) { | 86 | 1.01k | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 1.01k | return _status; | 90 | 1.01k | } | 91 | 112k | try { | 92 | 112k | _status = fn(); | 93 | 112k | } 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 | 110k | _has_called.store(true, std::memory_order_release); | 102 | 110k | return _status; | 103 | 112k | } |
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment27_create_column_readers_onceEPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 53.4M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 53.4M | if (has_called()) { | 78 | 53.2M | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 53.2M | return _status; | 82 | 53.2M | } | 83 | 158k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 158k | if (has_called()) { | 86 | 2.11k | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 2.11k | return _status; | 90 | 2.11k | } | 91 | 156k | try { | 92 | 156k | _status = fn(); | 93 | 156k | } 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 | 87.5k | _has_called.store(true, std::memory_order_release); | 102 | 87.5k | return _status; | 103 | 156k | } |
segment.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v27Segment27new_inverted_index_iteratorERKNS_12TabletColumnEPKNS_11TabletIndexERKNS_18StorageReadOptionsEPSt10unique_ptrINS4_21InvertedIndexIteratorESt14default_deleteISG_EEE3$_0EES1_T_ Line | Count | Source | 75 | 104k | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 104k | if (has_called()) { | 78 | 99.2k | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 99.2k | return _status; | 82 | 99.2k | } | 83 | 5.34k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 5.34k | if (has_called()) { | 86 | 0 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 0 | return _status; | 90 | 0 | } | 91 | 5.34k | try { | 92 | 5.34k | _status = fn(); | 93 | 5.34k | } 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.31k | _has_called.store(true, std::memory_order_release); | 102 | 5.31k | return _status; | 103 | 5.34k | } |
ordinal_page_index.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v218OrdinalIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 1.83M | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 1.83M | if (has_called()) { | 78 | 1.16M | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 1.16M | return _status; | 82 | 1.16M | } | 83 | 668k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 668k | if (has_called()) { | 86 | 166 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 166 | return _status; | 90 | 166 | } | 91 | 668k | try { | 92 | 668k | _status = fn(); | 93 | 668k | } 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 | 668k | _has_called.store(true, std::memory_order_release); | 102 | 668k | return _status; | 103 | 668k | } |
bloom_filter_index_reader.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v222BloomFilterIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 31.1k | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 31.1k | if (has_called()) { | 78 | 13 | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 13 | return _status; | 82 | 13 | } | 83 | 31.1k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 31.1k | if (has_called()) { | 86 | 0 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 0 | return _status; | 90 | 0 | } | 91 | 31.1k | try { | 92 | 31.1k | _status = fn(); | 93 | 31.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 | 31.1k | _has_called.store(true, std::memory_order_release); | 102 | 31.1k | return _status; | 103 | 31.1k | } |
zone_map_index.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_10segment_v218ZoneMapIndexReader4loadEbbPNS_20OlapReaderStatisticsEE3$_0EES1_T_ Line | Count | Source | 75 | 77.3k | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 77.3k | if (has_called()) { | 78 | 59.0k | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 59.0k | return _status; | 82 | 59.0k | } | 83 | 18.2k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 18.2k | if (has_called()) { | 86 | 703 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 703 | return _status; | 90 | 703 | } | 91 | 17.5k | try { | 92 | 17.5k | _status = fn(); | 93 | 17.5k | } 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 | 17.7k | _has_called.store(true, std::memory_order_release); | 102 | 17.7k | return _status; | 103 | 17.5k | } |
tablet.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_6Tablet4initEvE3$_0EES1_T_ Line | Count | Source | 75 | 230k | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 230k | if (has_called()) { | 78 | 227 | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 227 | return _status; | 82 | 227 | } | 83 | 230k | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 230k | if (has_called()) { | 86 | 0 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 0 | return _status; | 90 | 0 | } | 91 | 230k | try { | 92 | 230k | _status = fn(); | 93 | 230k | } 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 | 230k | _has_called.store(true, std::memory_order_release); | 102 | 230k | return _status; | 103 | 230k | } |
load_path_mgr.cpp:_ZN5doris13DorisCallOnceINS_6StatusEE4callIZNS_11LoadPathMgr12allocate_dirERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESC_PSA_E3$_0EES1_T_ Line | Count | Source | 75 | 13 | ReturnType call(Fn fn) { | 76 | | // Avoid lock to improve performance | 77 | 13 | if (has_called()) { | 78 | 12 | if (_eptr) { | 79 | 0 | std::rethrow_exception(_eptr); | 80 | 0 | } | 81 | 12 | return _status; | 82 | 12 | } | 83 | 1 | std::lock_guard l(_flag_lock); | 84 | | // should check again because maybe another thread call successfully. | 85 | 1 | if (has_called()) { | 86 | 0 | if (_eptr) { | 87 | 0 | std::rethrow_exception(_eptr); | 88 | 0 | } | 89 | 0 | return _status; | 90 | 0 | } | 91 | 1 | try { | 92 | 1 | _status = fn(); | 93 | 1 | } 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 | _has_called.store(true, std::memory_order_release); | 102 | 1 | return _status; | 103 | 1 | } |
|
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 | 265M | 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 | 265M | return _has_called.load(std::memory_order_acquire); |
113 | 265M | } |
114 | | |
115 | | // Return the stored result. The result is only meaningful when `has_called() == true`. |
116 | 90.5M | ReturnType stored_result() const { |
117 | 90.5M | 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 | 90.5M | if (_eptr) { |
123 | 1 | std::rethrow_exception(_eptr); |
124 | 1 | } |
125 | 90.5M | return _status; |
126 | 90.5M | } |
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 |