![]() |
cutelyst 4.8.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
|
The Cutelyst Engine. More...
#include <Cutelyst/Engine>

Signals | |
| void | processRequestAsync (Cutelyst::EngineRequest *request) |
Public Member Functions | |
| Engine (Application *app, int workerCore, const QVariantMap &opts) | |
| virtual | ~Engine () |
| Application * | app () const |
| QVariantMap | config (const QString &entity) const |
| bool | isZeroWorker () const |
| QVariantMap | opts () const |
| void | processRequest (EngineRequest *request) |
| void | setConfig (const QVariantMap &config) |
| int | workerCore () const |
| virtual int | workerId () const =0 |
Static Public Member Functions | |
| static const char * | httpStatusMessage (quint16 status, int *len=nullptr) |
| static QVariantMap | loadIniConfig (const QString &filename) |
| static QVariantMap | loadJsonConfig (const QString &filename) |
Protected Member Functions | |
| Headers & | defaultHeaders () |
| bool | initApplication () |
| bool | postForkApplication () |
Friends | |
| class | Application |
| class | Response |
This class is responsible receiving the request and sending the response. It must be reimplemented by real HTTP engines due some pure virtual methods.
The subclass must create an engine per thread (worker core), if the Application passed to the constructor has a worker core greater than 0 it will issue a new Application instance, failing to do so a fatal error is generated (usually indicating that the Application does not have a Q_INVOKABLE constructor).
|
explicit |
Constructs an Engine object, where app is the application that might be used to create new instances if workerCore is greater than 1, opts is the options loaded by the engine subclass.
| app | The application loaded |
| workerCore | The thread number |
| opts | The configuation options |
Definition at line 42 of file engine.cpp.
References app(), opts(), processRequest(), processRequestAsync(), and workerCore().
|
virtual |
Destroys the Engine object.
Definition at line 55 of file engine.cpp.
| Application * Engine::app | ( | ) | const |
Returns the application associated with this engine.
Definition at line 60 of file engine.cpp.
Referenced by Engine().
| QVariantMap Engine::config | ( | const QString & | entity | ) | const |
Returns a map of key value pairs for the configuration entitiy (section) from your application’s configuration file.
Definition at line 263 of file engine.cpp.
Referenced by Cutelyst::MemcachedSessionStore::MemcachedSessionStore(), setConfig(), Cutelyst::Session::setup(), Cutelyst::CSRFProtection::setup(), Cutelyst::Memcached::setup(), Cutelyst::StaticCompressed::setup(), Cutelyst::LangSelect::setup(), and Cutelyst::Application::setup().
|
protected |
This is the HTTP default response headers that each request gets.
Definition at line 245 of file engine.cpp.
|
static |
Returns the HTTP status message for the given status. If len is not a nullptr, the length of the returned string will be stored to *len.
Definition at line 104 of file engine.cpp.
|
protected |
This method inits the application and calls init on the engine. It must be called on the engine's thread. Returns true on success.
Definition at line 73 of file engine.cpp.
Referenced by Cutelyst::ServerEngine::init().
|
inline |
Returns true if this is the Zero worker, ie if workerId() == 0 and workerCore() == 0.
|
static |
Returns a QVariantMap with the INI parsed from filename.
Definition at line 275 of file engine.cpp.
|
static |
Returns a QVariantMap with the JSON parsed from filename.
Definition at line 299 of file engine.cpp.
| QVariantMap Engine::opts | ( | ) | const |
Returns the engine options set in the constructor.
Definition at line 257 of file engine.cpp.
Referenced by Engine().
|
protected |
Subclasses must be call after the engine forks by the worker thread, if no forking is involved it must be called once the worker thread has started.
For convenience QThread::currentThread() has it's object name set with the worker core number.
Definition at line 90 of file engine.cpp.
| void Engine::processRequest | ( | EngineRequest * | request | ) |
Process the request. The caller must delete the context when the request is finished.
This method allows for engines to keep the Context alive while processing websocket data.
Definition at line 251 of file engine.cpp.
Referenced by Engine().
|
signal |
| void Engine::setConfig | ( | const QVariantMap & | config | ) |
Sets the configuration to be used by Application.
Definition at line 269 of file engine.cpp.
References config().
| int Engine::workerCore | ( | ) | const |
Returns the worker core set when constructing the engine.
Each worker process migth have a number of worker cores (threads), a single process with two worker threads will return 0 and 1 for each of the thread respectively.
Definition at line 67 of file engine.cpp.
Referenced by Engine(), and Cutelyst::Application::setup().
|
pure virtual |
Reimplement this to get the workerId of the engine subclass, this is the same as processes id.
The id is the number of the spawned engine process, a single process workerId = 0, two process 0 for the first 1 for the second.
Implemented in Cutelyst::ServerEngine.
|
friend |