aboutsummaryrefslogtreecommitdiff
path: root/lib/jobs/{{base}}.h.mustache
blob: ff9a7e7a710e9160639392658fa7750f41ea4a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{{#@filePartial}}preamble{{/@filePartial}}
#pragma once

{{#operations}}#include "../basejob.h"
{{/operations}}
{{#imports}}#include {{_}}
{{/imports}}
{{#allModels}}#include "converters.h"
{{/allModels}}
namespace QMatrixClient
{
{{#models}}    // Data structures
{{#    model}}
    struct {{name}}{{#parents?}} : {{#parents}}{{name}}{{#@join}}, {{/@join}}{{/parents}}{{/parents?}}
    {
{{#vars}}        {{dataType.name}} {{nameCamelCase}};
{{/vars}}    };
{{#in?}}
    QJsonObject toJson(const {{name}}& pod);
{{/in?}}{{#out?}}
    template <> struct FromJson<{{name}}>
    {
        {{name}} operator()(const QJsonValue& jv);
    };
{{/    out?}}{{/model}}
{{/models}}{{#operations}}    // Operations
{{#    operation}}
    class {{camelCaseOperationId}}Job : public BaseJob
    {
        public:{{#models}}
            // Inner data structures
{{#            model}}
            struct {{name}}{{#parents?}} : {{#parents}}{{name}}{{#@join}}, {{/@join}}{{/parents}}{{/parents?}}
            {
{{#vars}}                {{dataType.name}} {{nameCamelCase}};
{{/vars}}            };
{{/            model}}
            // End of inner data structures
{{/        models}}{{^bodyParams}}
            /** Construct a URL out of baseUrl and usual parameters passed to
             * {{camelCaseOperationId}}Job. This function can be used when
             * a URL for {{camelCaseOperationId}}Job is necessary but the job
             * itself isn't.
             */
            static QUrl makeRequestUrl(QUrl baseUrl{{#allParams?}}, {{#allParams}}{{>joinedParamDecl}}{{/allParams}}{{/allParams?}});
{{/bodyParams}}
            explicit {{camelCaseOperationId}}Job({{#allParams}}{{>joinedParamDecl}}{{/allParams}});{{!skip EOL
}}{{#        responses}}{{#normalResponse?}}{{#allProperties?}}
            ~{{camelCaseOperationId}}Job() override;
{{#allProperties}}
            {{>maybeCrefType}} {{paramName}}(){{^noCopy?}} const{{/noCopy?}};{{/allProperties}}

        protected:
            Status {{#producesNonJson?}}parseReply(QNetworkReply* reply){{/producesNonJson?}}{{^producesNonJson?}}parseJson(const QJsonDocument& data){{/producesNonJson?}} override;

        private:
            class Private;
            QScopedPointer<Private> d;{{/allProperties?}}{{/normalResponse?}}{{/responses}}
    };
{{/operation}}{{/operations}}{{!skip EOL
}}} // namespace QMatrixClient