qcoro

C++ Coroutines for Qt

MIT License

Stars
334
Committers
26

Bot releases are hidden (Show)

qcoro - v0.10.0 Latest Release

Published by danvratil 11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/danvratil/qcoro/compare/v0.9.0...v0.10.0

qcoro - v0.9.0

Published by danvratil over 1 year ago

Release announcement

What's Changed

New Contributors

Full Changelog: https://github.com/danvratil/qcoro/compare/v0.8.0...v0.9.0

qcoro - v0.8.0

Published by danvratil over 1 year ago

What's Changed

Full Changelog: https://github.com/danvratil/qcoro/compare/v0.7.0...v0.8.0

qcoro - v0.7.0

Published by danvratil almost 2 years ago

Release Announcement

What's Changed

New Contributors

Full Changelog: https://github.com/danvratil/qcoro/compare/v0.6.0...v0.7.0

qcoro - v0.6.0

Published by danvratil over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/danvratil/qcoro/compare/v0.5.1...v0.6.0

qcoro - QCoro 0.5.1

Published by danvratil over 2 years ago

  • Fix build with GCC>=11.3 (#57, #58)
  • Fix ODR violation when building with GCC and LTO enabled (#59)
qcoro - QCoro 0.5.0

Published by danvratil over 2 years ago

  • .then() continuation for Task<T> (#39)
  • Fixed namespace scoping (#45)
  • Fixed QCoro::waitFor() getting stuck when coroutine returns synchronously (#46)
  • Fixed -pthread usage in CMake (#47)
  • Produce QMake config files (.pri) for each module (commit e215616)
  • Fix build on platforms where -latomic must be linked explicitly (#52)
  • Return Task<T> from all operations (#54)
  • Add QCoro wrapper for QThread (commit 832d931)
  • Many documentation updates
qcoro - QCoro 0.4.0

Published by danvratil almost 3 years ago

  • QCoro can now be built with Clang against libstdc++ (#38, #22)
  • Qt5 and Qt6 builds of QCoro are now co-installable (#36, #37)
  • Fixed early co_return not resuming the caller (#24, #35)
  • Fixed QProcess example (#34)
  • Test suite has been improved and extended (#29, #31)
  • Task move assignment operator checks for self-assignment (#27)
  • QCoro can now be built as a subdirectory inside another CMake project (#25)
  • Fixed QCoroCore/qcorocore.h header (#23)
  • DBus is disabled by default on Windows, Mac and Android (#21)
qcoro - QCoro 0.3.0

Published by danvratil about 3 years ago

  • Added SOVERSION to shared libraries (#17)
  • Fixed building tests when not building examples (#19)
  • Fixed CI
qcoro - QCoro 0.2.0

Published by danvratil about 3 years ago

QCoro 0.2.0 contains brings major reorganization of the code. While there are no API-incompatible changes, users updating
from 0.1.0 will have to adjust #include statements for QCoro headers in their projects.

Library modularity

The code has been reorganized into three modules (and thus three standalone libraries): QCoroCore, QCoroDBus and
QCoroNetwork. QCoroCore contains the elementary QCoro tools (QCoro::Task, qCoro() wrapper etc.) and coroutine
support for some QtCore types. The QCoroDBus module contains coroutine support for types from the QtDBus module
and equally the QCoroNetwork module contains coroutine support for types from the QtNetwork module. The latter two
modules are also optional, the library can be built without them. It also means that an application that only uses
let's say QtNetwork and has no DBus dependency will no longer get QtDBus pulled in through QCoro, as long as it
only links against libQCoroCore and libQCoroNetwork. The reorganization will also allow for future
support of additional Qt modules.

Headers clean up

The include headers in QCoro we a bit of a mess and in 0.2.0 they all got a unified form. All public header files
now start with qcoro (e.g. qcorotimer.h, qcoronetworkreply.h etc.), and QCoro also provides CamelCase headers
now. Thus users should simply do #include <QCoroTimer> if they want coroutine support for QTimer.

The reorganization of headers makes QCoro 0.2.0 incompatible with previous versions and any users of QCoro will
have to update their #include statements. I'm sorry about this extra hassle, but with this brings much needed
sanity into the header organization and naming scheme.

Docs update

The documentation has been updated to reflect the reorganization as well as some internal changes. It should be
easier to understand now and hopefully will make it easier for users to start with QCoro now.

Internal API cleanup and code de-duplication

Historically, certain types types which can be directly co_awaited with QCoro, for instance QTimer has their
coroutine support implemented differently than types that have multiple asynchronous operations and thus have
a coroutine-friendly wrapper classes (like QIODevice and it's QCoroIODevice wrapper). In 0.2.0 I have unified
the code so that even the coroutine support for simple types like QTimer are implemented through wrapper classes
(so there's QCoroTimer now)

qcoro - QCoro 0.1.0

Published by danvratil about 3 years ago

Initial release of QCoro.