init
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
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
allhaileris
2026-02-16 15:50:16 +03:00
commit afb81b8278
13816 changed files with 3689732 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
// 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
//
#pragma once
#include <crl/common/crl_common_config.h>
#ifdef CRL_USE_QT
#include <crl/common/crl_common_utils.h>
#include <crl/common/crl_common_sync.h>
#include <type_traits>
#include <QtCore/QThreadPool>
namespace crl::details {
template <typename Callable>
class Runnable : public QRunnable {
public:
Runnable(Callable &&callable) : _callable(std::move(callable)) {
}
void run() override {
_callable();
}
private:
Callable _callable;
};
template <typename Callable>
inline auto create_runnable(Callable &&callable) {
if constexpr (std::is_reference_v<Callable>) {
auto copy = callable;
return create_runnable(std::move(copy));
} else {
return new Runnable<Callable>(std::move(callable));
}
}
template <typename Callable>
inline void async_any(Callable &&callable) {
if (const auto pool = QThreadPool::globalInstance()) {
pool->start(create_runnable(std::forward<Callable>(callable)));
}
}
inline void async_plain(void (*callable)(void*), void *argument) {
async_any([=] {
callable(argument);
});
}
} // namespace crl::details
namespace crl {
template <
typename Callable,
typename Return = decltype(std::declval<Callable>()())>
inline void async(Callable &&callable) {
details::async_any(std::forward<Callable>(callable));
}
} // namespace crl
#endif // CRL_USE_QT

View File

@@ -0,0 +1,116 @@
// 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
//
#pragma once
#include <crl/common/crl_common_config.h>
#if __has_include(<QtCore/QPointer>)
class QObject;
template <typename T>
class QPointer;
template <typename T>
class QWeakPointer;
template <typename T>
class QSharedPointer;
#if __has_include(<gsl/gsl>)
namespace gsl {
template <typename T>
class not_null;
} // namespace gsl
#endif // gsl
namespace crl {
template <typename T, typename Enable>
struct guard_traits;
template <typename T>
struct guard_traits<QPointer<T>, void> {
static QPointer<T> create(const QPointer<T> &value) {
return value;
}
static QPointer<T> create(QPointer<T> &&value) {
return std::move(value);
}
static bool check(const QPointer<T> &guard) {
return guard.data() != nullptr;
}
};
template <typename T>
struct guard_traits<
T*,
std::enable_if_t<
std::is_base_of_v<QObject, std::remove_cv_t<T>>>> {
static QPointer<T> create(T *value) {
return value;
}
static bool check(const QPointer<T> &guard) {
return guard.data() != nullptr;
}
};
#if __has_include(<gsl/gsl>)
template <typename T>
struct guard_traits<
gsl::not_null<T*>,
std::enable_if_t<
std::is_base_of_v<QObject, std::remove_cv_t<T>>>> {
static QPointer<T> create(gsl::not_null<T*> value) {
return value.get();
}
static bool check(const QPointer<T> &guard) {
return guard.data() != nullptr;
}
};
#endif // gsl
template <typename T>
struct guard_traits<QWeakPointer<T>, void> {
static QWeakPointer<T> create(const QWeakPointer<T> &value) {
return value;
}
static QWeakPointer<T> create(QWeakPointer<T> &&value) {
return std::move(value);
}
static bool check(const QWeakPointer<T> &guard) {
return guard.toStrongRef() != nullptr;
}
};
template <typename T>
struct guard_traits<QSharedPointer<T>, void> {
static QWeakPointer<T> create(const QSharedPointer<T> &value) {
return value;
}
static QWeakPointer<T> create(QSharedPointer<T> &&value) {
return value;
}
static bool check(const QWeakPointer<T> &guard) {
return guard.toStrongRef() != nullptr;
}
};
} // namespace crl
#endif // Qt