18 #include "context_p.h"
24 #include "dispatcher.h"
25 #include "controller.h"
26 #include "application.h"
34 #include <QCoreApplication>
44 d_ptr(new ContextPrivate(app, app->engine(), app->dispatcher(), app->plugins()))
46 auto req =
new DummyRequest(
this);
47 req->
body =
new QBuffer(
this);
48 req->
body->open(QBuffer::ReadWrite);
52 d_ptr->request =
new Request(req);
53 d_ptr->request->d_ptr->engine = d_ptr->engine;
58 delete d_ptr->request;
59 delete d_ptr->response;
66 return !d->error.isEmpty();
72 if (
error.isEmpty()) {
76 qCCritical(CUTELYST_CORE) <<
error;
86 bool Context::state()
const
122 Action *Context::action()
const
128 QString Context::actionName()
const
131 return d->action->name();
134 QString Context::ns()
const
137 return d->action->ns();
140 Request *Context::request()
const
155 return d->dispatcher;
158 QString Cutelyst::Context::controllerName()
const
161 return QString::fromLatin1(d->action->controller()->metaObject()->className());
167 return d->action->controller();
173 return d->dispatcher->controllers().value(name);
185 return d->app->view(name);
191 d->view = d->app->view(name);
204 return d->stash.value(key);
210 return d->stash.value(key, defaultValue);
216 return d->stash.take(key);
222 return d->stash.remove(key);
228 d->stash.insert(key, value);
234 d->stash.insert(key, QVariant::fromValue(map));
247 QUrl uri = d->request->uri();
250 if (path.isEmpty()) {
252 const QString controllerNS = d->action->controller()->ns();
253 if (!controllerNS.isEmpty()) {
254 _path.prepend(controllerNS);
260 if (!args.isEmpty()) {
271 uri.setPath(_path, QUrl::DecodedMode);
276 if (queryValues.
size()) {
280 query.addQueryItem(it.key(), it.value());
294 Action *localAction = action;
296 localAction = d->action;
302 Action *expandedAction = d->dispatcher->expandAction(
this, action);
305 && localArgs.size()) {
306 localCaptures.append(localArgs.takeFirst());
310 localCapturesAux.append(localArgs);
311 localArgs = localCapturesAux;
315 const QString path = d->dispatcher->uriForAction(localAction, localCaptures);
316 if (path.isEmpty()) {
317 qCWarning(CUTELYST_CORE) <<
"Can not find action for" << localAction << localCaptures;
321 uri =
uriFor(path, localArgs, queryValues);
330 Action *action = d->dispatcher->getActionByPath(path);
332 qCWarning(CUTELYST_CORE) <<
"Can not find action for" << path;
336 uri =
uriFor(action, captures, args, queryValues);
350 d->dispatcher->forward(
this, action);
360 d->engineRequest->status |= EngineRequest::Async;
366 if (--d->asyncDetached) {
370 if (Q_UNLIKELY(d->engineRequest->status & EngineRequest::Finalized)) {
371 qCWarning(CUTELYST_ASYNC) <<
"Trying to async attach to a finalized request! Skipping...";
375 while (d->asyncAction < d->pendingAsync.size()) {
376 Action *action = d->pendingAsync[d->asyncAction++];
379 }
else if (d->asyncDetached) {
384 if (d->engineRequest->status & EngineRequest::Async) {
385 Q_EMIT d->app->afterDispatch(
this);
394 return d->dispatcher->forward(
this, action);
400 return d->dispatcher->forward(
this, action);
406 return d->dispatcher->getAction(action, ns);
412 return d->dispatcher->getActions(action, ns);
424 Q_ASSERT_X(code,
"Context::execute",
"trying to execute a null Cutelyst::Component");
426 static int recursion = qEnvironmentVariableIsSet(
"RECURSION") ? qEnvironmentVariableIntValue(
"RECURSION") : 1000;
427 if (d->stack.size() >= recursion) {
428 QString msg = QStringLiteral(
"Deep recursion detected (stack size %1) calling %2, %3")
429 .arg(QString::number(d->stack.size()), code->
reverse(), code->
name());
439 const QString statsInfo = d->statsStartExecute(code);
445 if (d->stats && !statsInfo.isEmpty()) {
446 d->statsFinishExecute(statsInfo);
469 QVariant Context::config(
const QString &key,
const QVariant &defaultValue)
const
472 return d->app->config(key, defaultValue);
475 QVariantMap Context::config()
const
478 return d->app->config();
481 QString
Context::translate(
const char *context,
const char *sourceText,
const char *disambiguation,
int n)
const
484 return d->app->translate(d->locale, context, sourceText, disambiguation, n);
509 if (Q_UNLIKELY(d->engineRequest->status & EngineRequest::Finalized)) {
510 qCWarning(CUTELYST_CORE) <<
"Trying to finalize a finalized request! Skipping...";
515 qCDebug(CUTELYST_STATS,
"Response Code: %d; Content-Type: %s; Content-Length: %s",
516 d->response->status(),
517 qPrintable(d->response->headers().header(QStringLiteral(
"CONTENT_TYPE"), QStringLiteral(
"unknown"))),
518 qPrintable(d->response->headers().header(QStringLiteral(
"CONTENT_LENGTH"), QStringLiteral(
"unknown"))));
520 const double enlapsed = d->engineRequest->elapsed.nsecsElapsed() / 1000000000.0;
522 if (enlapsed == 0.0) {
523 average = QStringLiteral(
"??");
525 average = QString::number(1.0 / enlapsed,
'f');
526 average.truncate(average.size() - 3);
528 qCInfo(CUTELYST_STATS) << qPrintable(QStringLiteral(
"Request took: %1s (%2/s)\n%3")
529 .arg(QString::number(enlapsed,
'f'),
531 QString::fromLatin1(d->stats->report())));
536 d->engineRequest->finalize();
552 QString ContextPrivate::statsStartExecute(
Component *code)
562 if (qobject_cast<Action *>(code)) {
566 if (stack.size() > 2) {
568 actionName = actionName.rightJustified(actionName.size() + stack.size() - 2,
QLatin1Char(
' '));
571 stats->profileStart(actionName);
576 void ContextPrivate::statsFinishExecute(
const QString &statsInfo)
578 stats->profileEnd(statsInfo);
581 #include "moc_context.cpp"
582 #include "moc_context_p.cpp"