a mirror because nheko.im bans tor

Nicolas Werner f49993e6ad Upgrade spdlog wrap пре 3 месеци
cmake ed4c355cbe Try to fix cmake fetch content пре 3 година
docs cd2667230f Add documentation пре 2 година
examples e741ced9b2 Add clang-format and timeout requests if keepalive fails пре 3 година
include cb217077ba Actually link to response headers пре 1 година
lib 831e2ee8e9 Fix build with fmt10 пре 1 година
scripts f269f7feef Add tls tests, license, readme пре 3 година
subprojects f49993e6ad Upgrade spdlog wrap пре 3 месеци
tests 3b64edc558 Make tests use FetchContent пре 1 година
.clang-format e741ced9b2 Add clang-format and timeout requests if keepalive fails пре 3 година
.clang-format-include e741ced9b2 Add clang-format and timeout requests if keepalive fails пре 3 година
.gitignore cd2667230f Add documentation пре 2 година
.gitlab-ci.yml f1d6c4d52c Get rid of reuse in CI, which was never used пре 3 месеци
.markdownlint.yaml 5393e25db2 Limit connections by default пре 2 година
CHANGELOG.md 4bde892b72 Bump version пре 3 месеци
CMakeLists.txt 612029517e Update hunter dependencies пре 3 месеци
Doxyfile cd2667230f Add documentation пре 2 година
Doxyfile-mcss cd2667230f Add documentation пре 2 година
LICENSE f269f7feef Add tls tests, license, readme пре 3 година
README.md dce3972226 Add badges пре 2 година
clang-format edc73f2c2f Very basic lib based on curl libevent example пре 3 година
meson.build 4bde892b72 Bump version пре 3 месеци
meson_options.txt f269f7feef Add tls tests, license, readme пре 3 година
toolchain.cmake 556b6b7b44 Add basic cmake support пре 3 година

README.md

coeurl

Pipeline Status Coverage Documentation

Simple library to do http requests asynchronously via CURL in C++. (Eventually as coroutines, once all the compilers I need to support support them.)

This is based on the CURL-libevent example.

You can do a get request with 3 simple steps:

  1. Initialize the library: cpp coeurl::Client g{};
  2. Do a request cpp g.get("http://localhost:5000/", [](const coeurl::Request &res) { std::cout << res.response() << std::endl; });

If you need more flexibility, you can initialize a coeurl::Request manually and set all the fields required. Currently only a few methods are exposed, but we may decide to add more in the future or expose the easy handle for direct manipulation.

Dependencies

  • CURL (duh!)
  • libevent
  • spdlog
  • for tests: doctest

Building

Usually meson should do all you need. For example you can build it like this in a subdirectory called buildir/:

meson setup builddir
meson compile -C builddir

There is also a cmake file, but this does not properly support installation. It is only useful for using this project via ExternalProject.

Limitations

The event loop can only run on one thread at a time! If you need to parallelize your request, use multiple clients or dispatch the responses into a threadpool manually. In most cases the one thread should be enough for the simpler workloads though and this way you can benefit from connection pooling and the HTTP/2 multiplexing. The tread is created internally and you currently have no control over it. You can wait for it to exit using close() or the ~Client destructor. If you block this thread, no other requests will get processed.

This library also only exposes the simple way to do things currently. This is all I need at the moment.

Interesting bits

  • You can enable logging or customize the logging by setting a logger with coeurl::Client::set_logger. Do this before you initialize any client!
  • The Request can be constructed builder style, then submitted and then you can query the Request once it has completed for the headers, status code, etc.
  • Don't modify the Request while it is in flight or call any members on it until it is completed, after you submitted it.