FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/callback_queue-inl.h at main · fetchapi/node · GitHub
fetchapi
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
callback_queue-inl.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (79 loc) · 2.59 KB
Breadcrumbs
node
/
src
/
callback_queue-inl.h
Copy path
File metadata and controls
97 lines (79 loc) · 2.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#
ifndef
SRC_CALLBACK_QUEUE_INL_H_
#
define
SRC_CALLBACK_QUEUE_INL_H_
#
if
defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#
include
"
callback_queue.h
"
namespace
node
{
template
<
typename
R,
typename
... Args>
template
<
typename
Fn>
std::unique_ptr<
typename
CallbackQueue<R, Args...>::Callback>
CallbackQueue<R, Args...>::CreateCallback(Fn&& fn, CallbackFlags::Flags flags) {
return
std::make_unique<CallbackImpl<Fn>>(
std::move
(fn), flags);
}
template
<
typename
R,
typename
... Args>
std::unique_ptr<
typename
CallbackQueue<R, Args...>::Callback>
CallbackQueue<R, Args...>::Shift() {
std::unique_ptr<Callback> ret =
std::move
(head_);
if
(ret) {
head_ = ret->
get_next
();
if
(!head_)
tail_ =
nullptr
;
//
The queue is now empty.
size_--;
}
return
ret;
}
template
<
typename
R,
typename
... Args>
void
CallbackQueue<R, Args...>::Push(std::unique_ptr<Callback> cb) {
Callback* prev_tail = tail_;
size_++;
tail_ = cb.
get
();
if
(prev_tail !=
nullptr
)
prev_tail->
set_next
(
std::move
(cb));
else
head_ =
std::move
(cb);
}
template
<
typename
R,
typename
... Args>
void
CallbackQueue<R, Args...>::ConcatMove(CallbackQueue<R, Args...>&& other) {
size_ += other.
size_
;
if
(tail_ !=
nullptr
)
tail_->
set_next
(
std::move
(other.
head_
));
else
head_ =
std::move
(other.
head_
);
tail_ = other.
tail_
;
other.
tail_
=
nullptr
;
other.
size_
=
0
;
}
template
<
typename
R,
typename
... Args>
size_t
CallbackQueue<R, Args...>::size()
const
{
return
size_.
load
();
}
template
<
typename
R,
typename
... Args>
CallbackQueue<R, Args...>::Callback::Callback(CallbackFlags::Flags flags)
: flags_(flags) {}
template
<
typename
R,
typename
... Args>
CallbackFlags::Flags CallbackQueue<R, Args...>::Callback::flags()
const
{
return
flags_;
}
template
<
typename
R,
typename
... Args>
std::unique_ptr<
typename
CallbackQueue<R, Args...>::Callback>
CallbackQueue<R, Args...>::Callback::get_next() {
return
std::move
(next_);
}
template
<
typename
R,
typename
... Args>
void
CallbackQueue<R, Args...>::Callback::set_next(
std::unique_ptr<Callback> next) {
next_ =
std::move
(next);
}
template
<
typename
R,
typename
... Args>
template
<
typename
Fn>
CallbackQueue<R, Args...>::CallbackImpl<Fn>::CallbackImpl(
Fn&& callback, CallbackFlags::Flags flags)
: Callback(flags),
callback_
(std::move(callback)) {}
template
<
typename
R,
typename
... Args>
template
<
typename
Fn>
R CallbackQueue<R, Args...>::CallbackImpl<Fn>::Call(Args... args) {
return
callback_
(std::forward<Args>(args)...);
}
}
//
namespace node
#
endif
//
defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#
endif
//
SRC_CALLBACK_QUEUE_INL_H_
Back
|
FazBrowse Home
|
New Git URL