Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#include <crl/crl_on_main.h>
|
|
|
|
#ifdef CRL_USE_COMMON_QUEUE
|
|
|
|
#include <exception>
|
|
|
|
namespace {
|
|
|
|
crl::queue *Queue/* = nullptr*/;
|
|
std::atomic<int> Counter/* = 0*/;
|
|
crl::details::main_queue_pointer Lifetime;
|
|
|
|
} // namespace
|
|
|
|
namespace crl::details {
|
|
|
|
void main_queue_pointer::grab() {
|
|
auto counter = Counter.load(std::memory_order_acquire);
|
|
while (true) {
|
|
if (!counter) {
|
|
return;
|
|
} else if (Counter.compare_exchange_weak(counter, counter + 1)) {
|
|
_pointer = Queue;
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void main_queue_pointer::ungrab() {
|
|
if (_pointer) {
|
|
if (--Counter == 0) {
|
|
delete _pointer;
|
|
}
|
|
_pointer = nullptr;
|
|
}
|
|
}
|
|
|
|
void main_queue_pointer::create(main_queue_processor processor) {
|
|
if (Counter.load(std::memory_order_acquire) != 0) {
|
|
std::terminate();
|
|
}
|
|
Queue = new queue(processor);
|
|
Counter.store(1, std::memory_order_release);
|
|
_pointer = Queue;
|
|
}
|
|
|
|
} // namespace crl::details
|
|
|
|
namespace crl {
|
|
|
|
void init_main_queue(main_queue_processor processor) {
|
|
Lifetime.create(processor);
|
|
}
|
|
|
|
} // namespace crl
|
|
|
|
#endif // CRL_USE_COMMON_QUEUE
|