-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! src: make BuiltinLoader threadsafe and non-global
- Loading branch information
Showing
11 changed files
with
216 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#ifndef SRC_NODE_THREADSAFE_COW_INL_H_ | ||
#define SRC_NODE_THREADSAFE_COW_INL_H_ | ||
|
||
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
namespace node { | ||
|
||
template <typename T> | ||
T* CopyOnWrite<T>::write() { | ||
if (!data_.unique()) { | ||
data_ = std::make_shared<T>(*data_); | ||
} | ||
return data_.get(); | ||
} | ||
|
||
template <typename T> | ||
ThreadsafeCopyOnWrite<T>::Read::Read(const ThreadsafeCopyOnWrite<T>* cow) | ||
: cow_(cow), lock_(cow->impl_->mutex) {} | ||
|
||
template <typename T> | ||
const T& ThreadsafeCopyOnWrite<T>::Read::operator*() const { | ||
return cow_->impl_->data; | ||
} | ||
|
||
template <typename T> | ||
const T* ThreadsafeCopyOnWrite<T>::Read::operator->() const { | ||
return &cow_->impl_->data; | ||
} | ||
|
||
template <typename T> | ||
ThreadsafeCopyOnWrite<T>::Write::Write(ThreadsafeCopyOnWrite<T>* cow) | ||
: cow_(cow), impl_(cow->impl_.write()), lock_(impl_->mutex) {} | ||
|
||
template <typename T> | ||
T& ThreadsafeCopyOnWrite<T>::Write::operator*() { | ||
return impl_->data; | ||
} | ||
|
||
template <typename T> | ||
T* ThreadsafeCopyOnWrite<T>::Write::operator->() { | ||
return &impl_->data; | ||
} | ||
|
||
template <typename T> | ||
ThreadsafeCopyOnWrite<T>::Impl::Impl(const Impl& other) { | ||
RwLock::ScopedReadLock lock(other.mutex); | ||
data = other.data; | ||
} | ||
|
||
} // namespace node | ||
|
||
#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS | ||
|
||
#endif // SRC_NODE_THREADSAFE_COW_INL_H_ |
Oops, something went wrong.