QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
The documentation for the qrestbuilder tool
The qrestbuilder
reads in a xml file, and generates a header and a source from it. Those will, depending on the input, contain either an "object", "gadget", "class" or "api". This allows an easy and fast creation of wrappers for any REST-API. In order to use the tool as custom compiler, ou can simply create the XML files and add the to the pro file using
The easiest way to get started is to check out the JsonPlaceholderApi example. It will teach you the general system behind the generator. You can then study this documentation to see, what you can do with it.
The following sections show a detailed documentation of what you can do with the tool, and explain the syntax of the xml files. You can check the following locations for some sample files:
example/JsonPlaceholderApi
tests/auto/restclient/RestBuilderTest
There are also W3C XML Schema definitions available, see tools/qrestbuilder/restclient.xsd
(TODO also attached to the end of this page). Please note that while in the XSD sequences are used, generally the order of elements in the xml files can be whatever you want it to be. The only elements where the order actually has any effect are the <Path>/<PathParam>
elements of the <Method>
element - but this is specified in more detail in their documentation.
Your document must start with one of the following 4 root elements:
<RestObject>
- will generate an api object based on QObject<RestGadget>
- will generate an api object based on Q_GADGET<RestClass>
- will generate an api subclass<RestApi>
- will generate the api root classAn object is simply a "data type" class. It will be generated with a bunch of properties (Q_PROPERTY), and methods to access them. They are generated in an optimized way, an can be used by the rest client as data classes. It allows a simple, fast and easy creation of those objects. You can generate them in two ways: As a Q_GADGET or a QObject. The gadget has the advantage of beeing a value type and using shared data, but on the other side does not really allow inheritance and does not support change signals or dynamic properties, which the QObject classes do.
A class is a wrapper around QtRestClient::RestClass, that encapsulates the rather generic methods into custom methods with adjusted parameters etc. This creates a c++ class, with simple methods to do HTTP-Request. In addition to that, you can build hieracical trees with classes, and those are represented by methods in the classes, allowing you to follow that tree in c++ as well. For the "root-class", you can use the api version, which allows you to specify the basic properties of a QtRestClient::RestClient.
The RestObject and RestGadget elements are of the same datatype and thus support the same attributes and children. The only difference is how the final c++ code is beeing generated.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
name | c++ class name | required | The class name of the generated class |
export | string | none | Sepcify an export macro. The value is put before the class definition, if you want to export the generated classes from a dynamic library |
base | name of a base class | "QObject" for objects, "" for gadgets | If you need a custom base class, use this property |
namespace | c++ namespace name | none | An optional namespace to place the generated objects into |
registerConverters | bool | true | If true, automatically registers the list converters for this type |
testEquality | bool | true | Setter methods check if the value did actually change before assigning it. This can fail if a used type does not have equality operators. |
generateEquals | bool | true for RestGadget , else false | If enabled, default-generated equality operators are added |
generateReset | bool | true | If enabled, reset methods are generated for all properties. Can still be set per property |
simpleHref | c++ property name | none | Optional name of the property that holds the href to extend a simple object. Can only be used if base is or extends QtRestClient::Simple |
qmlUri | qml import URI | none | A QML import URI (+version), e.g. "com.example.api 1.0" - If specified, QML bindings are generated for the object/gadget |
aggregateDefaults | bool | false | Specifies whether the generated aggregate constructor should have default values for all arguments after the second or not |
Name | XML-Type | Limits | Description |
---|---|---|---|
Include | Include | 0 - ∞ | Additional header files to be included in the generated header |
Enum | Enum | 0 - ∞ | Custom enums to be created as part of the generated class |
Property | Property | 1 - ∞ | The actual properties the class is composed of |
This class is an extension of RestAccess. This means all the attributes and allowed child elements of RestAccess can/must also be used for a RestClass, include the additional attributes and child elements defined here.
The rest class is a sub class that is a part of a greater api.
Name | XML-Type | Limits | Description |
---|---|---|---|
Path | Expression | 0 - 1 | The sub-path of this class, relative to it's parent class/api (QString) |
This class is an extension of RestAccess. This means all the attributes and allowed child elements of RestAccess can/must also be used for a RestClass, include the additional attributes and child elements defined here.
The rest api is basically a root class with additional properties to create the apis root RestClient.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
globalName | string | none | The APIs global name. If specified the api is made available globally by using QtRestClient::addGlobalApi with that name |
dataMode | QtRestClient::RestClient::DataMode | "Json" | Sets the QtRestClient::RestClient::dataMode to the given value |
threaded | bool | true if globalName is set, else false | Sets the QtRestClient::RestClient::threaded to the given value |
async | bool | true if globalName is set, else false | Sets the QtRestClient::RestClient::asyncPool to the default QThreadPool::globalInstance. Implies threaded |
autoCreate | bool | true if globalName is set, else false | Requires globalName to be set. If set to true, the API will be automatically registered on application start. If not, it happens on first use |
Name | XML-Type | Limits | Description |
---|---|---|---|
BaseUrl | BaseUrl | 1 | The primary base URL for the api to base all subpaths on (required) |
Parameter | FixedParam | 0 - ∞ | Additional URL query parameters to be added to the base URL |
Header | FixedParam | 0 - ∞ | Additional HTTP-Headers to be added to every HTTP request |
This type is a virtual type that you will never use directly. Instead is serves as a base class for RestApi and RestClass. All the attributes and children defined here can/must be used on those two element types.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
name | c++ class name | required | The class name of the generated class |
export | string | none | Sepcify an export macro. The value is put before the class/factory definition, if you want to export the generated classes from a dynamic library |
base | name of a base class | "QObject" | If you need a custom base class, use this property |
namespace | c++ namespace name | none | An optional namespace to place the generated objects into |
except | c++ class name | "Object*" | The default value for "except" of all Method Elementshappens on first use |
qmlUri | qml import URI | none | A QML import URI (+version), e.g. "com.example.api 1.0" - If specified, QML bindings are generated for the class/api |
Name | XML-Type | Limits | Description |
---|---|---|---|
Include | Include | 0 - ∞ | Additional header files to be included in the generated header |
Class | Class | 0 - ∞ | The child classes to generate methods for |
Method | Method | 0 - ∞ | The Actual REST-Methods to access the api within the current class |
Describes a file to be included via a c++ include directive. You can use them if you want to make use of special classes in your generated classes. Both global includes (#include <header>
) and local includes (#include "header"
) are supported
Name | Allowed values | Default/Required | Description |
---|---|---|---|
local | bool | false | Specifies whether the include is a global or a local include |
The content of this element must be a string. More specific the header to be included. It becomes the content of the include directive. Specifiy it without the braces or quores, as thoes are added automatically.
A base param is a method parameter or a Q_PROPERTY to be added to the generated class/method. For each such property, getters and setters are generated as well, and depending on the configuration even notify signals and reset methods. For method parameters, it determines the name and type of the parameter, as well as the parameters default value, if wanted.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
key | property/parameter name | required | The property or parameter name |
type | c++ type name | required | The properties/parameters type |
asStr | bool | false | Specify how the element content should be interpreted |
The content of a base param is optional, and it represents the default value of the property/parameter. If not specified, the base param will be initialize with it's default constructor. If specified, the content is used to initialize (and reset) the base param. How the content is interpreted depends on the asStr
attribute.
If it is set to false (the default), the content must be c++ code and is copied to the generated class as is. The code must be an expression that evalutes to a single value that is implicitly convertible to the given type
. If type was for example int
, valid expressions could be:
<BaseParam>-1</BaseParam>
<BaseParam>10 + 20</BaseParam>
<BaseParam>qRand()</BaseParam>
If set to true, the content is assumed to be a string. You don't need to specify quotation marks around the string. That string is used to initialize a QVariant that is then converted to type
- in other words, the type you use must be variant convertible from a string. This can be used to, for example, create a QDate
from a string with the default value of <BaseParam asStr="true">2018-05-09</BaseParam>
.
The Property element is an extension of the BaseParam type. This means it's the same as a base param, but with an addition property, that is specific to properties.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
generateReset | bool | RestObject.generateReset | Specify whether a reset accessor method should be generated. This value is inherited from the one specified in the parent rest object or gadget. If that one is not specified, the default is true |
metaType | c++ type name | BaseParam.type | Set an extra type to use for the declaration of properties and their accessors. Can become useful if a type was registered in the metasystem under a different typename then it's canonical name |
revision | int | none | Add the REVISION attribute to the properties declaration |
designable | bool | none | Add the DESIGNABLE attribute to the properties declaration |
scriptable | bool | none | Add the SCRIPTABLE attribute to the properties declaration |
stored | bool | none | Add the STORED attribute to the properties declaration |
user | bool | none | Add the USER attribute to the properties declaration |
final | bool | false | Add the FINALS attribute to the properties declaration if set to true |
The PropertyMethod element allows you to declare custom methods for UserProperties. The attributes of this element differ slightly, depending on whether it's a read, write, reset or notify method.
Name | Allowed values | Default/Required | Accessors | Description |
---|---|---|---|---|
name | c++ method name | required | all | The c++ name of the generated method |
virtual | bool | false | read, write, reset | Make the generated method virtual |
invokable | bool | false | read | Make the generated method Q_INVOKABLE |
parameter | c++ variable name | "value" | write | Specify a custom name for the setters parameter |
declare | bool | true | notify | If set to false, the signal will not be declared |
Only methods for the read, write and reset accessor are allowed a content. That content is the definition of the method to be generated. If specified, both the declaration and the definition are generated. If left empty, neither are. For signals, only declarations are needed, as MOC generates the definition. Use the declare
attribute there to control this behaviour.
A special form of a property where you must specify your own methods, instead of automatically generating them based of their type and name.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
key | property name | required | The property name |
type | c++ type name | required | The property type |
metaType | c++ type name | type | Set an extra type to use for the declaration of properties and their accessors. Can become useful if a type was registered in the metasystem under a different typename then it's canonical name |
member | c++ variable name | key | The name of the member variable to store the properties data. You can access it in the accessors via d-><member> |
revision | int | none | Add the REVISION attribute to the properties declaration |
designable | bool | none | Add the DESIGNABLE attribute to the properties declaration |
scriptable | bool | none | Add the SCRIPTABLE attribute to the properties declaration |
stored | bool | none | Add the STORED attribute to the properties declaration |
user | bool | none | Add the USER attribute to the properties declaration |
final | bool | false | Add the FINALS attribute to the properties declaration if set to true |
Name | XML-Type | Limits | Description |
---|---|---|---|
Read | PropertyMethod | 1 | The method for the READ-accessor |
Write | PropertyMethod | 0 - 1 | The method for the WRITE-accessor |
Reset | PropertyMethod | 0 - 1 | The method for the RESET-accessor |
Notify | PropertyMethod | 0 - 1 | The method for the NOTIFY-accessor |
Default | Expression | 0 - 1 | The default value of the property |
If you want to use custom enum types in you class, use this element. It allows you to generate enums and flags that are automatically registered with Qt.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
name | c++ class name | required | The c++ name of the generated enum |
base | name of a valid parent class | none | If you need a custom base class for your enum, use this property. But remember that Qt discourages this! |
isFlags | bool | false | If set to true, a QFlag type is generated and registered instead of a normal enum |
isClass | bool | false | If set to true, a enum class get created instead of a normal enum |
Name | XML-Type | Limits | Description |
---|---|---|---|
Key | EnumKey | 1 - ∞ | The actual elements of the enum/flags to be generated |
Describes a key/element within an enum.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
name | c++ enum key name | required | The name of the key, i.e. the actual enum key. |
The content is optional. You can specify a custom value for your enum element (is placed after the = sign). The content must be a valid c++ constexpr, i.e. code that can be evaluated at compile time and that results in a value of the base type your enum is of (Or int, if no base type is given).
An expression can be any arbitrary element. It is defined as s string, that can optionally be a c++ expression that evaluates to a string instead.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
expr | bool | false | Specify whether a string or an expression is given. |
The content is the actual string to be returned. If expr
is false (the default), the content is the final string (excluding the sourrounding quotation marks), for example <Expression>42</Expression>
. However, if it is set to true, then the content of this element is interpreted as a c++ expression. The expression must evaluate to a single result that is implicitly convertible to either QString or QByteArray, depending on the context it is beeing used in. A simple example for an expression would be: <Expression expr="true">QString::number(42)</Expression>
A FixedParam is basically an Expression with an additional attribute, key, to give the expression an identity. So besides that extra attribute, it behaves just like an expression.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
key | string | required | The name/key of the parameter you are specifying |
A class element is simply a reference to another RestClass to be made avilable as subclass of the current class/api. You will have to add the class type it as include. The type must be class generated by the tool as well. It is possible to use an api as child class as well, but it will ignore the API-aspect, and simply interpret it as class. However, it is not recommended to do so.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
key | c++ method name | required | The name of the method that returns the class |
type | c++ class name | required | The type of the class to return by the method |
Encapsulates a parameterized path. This item is a mixed element. If the content is string content, it behaves like a Element Type: Expression. Alternatively, you can use the elements listed below to create a partially paramterized path.
The following elements can be specified in any order. They are combined to a single path where each of the child elements represents one part of the path, all seperated by a slash.
Name | XML-Type | Limits | Description |
---|---|---|---|
FixedSegment | Expression | 0 - ∞ | A fixed path segment to be added to the requests url path |
ParamSegment | BaseParam | 0 - ∞ | A path segment as method parameter to be added to the requests url path |
The main aspect of your class are the methods. They define what can be done by your class. They define a HTTP-request, that will be wrapped into a c++ method by the builder.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
name | c++ method name | required | The name of the method to be generated |
verb | string (HTTP verb) | "GET" | The HTTP-Verb to be used for the request |
body | c++ class name | none | An optional body, to be sent with the request. Must be serializable and included |
returns | c++ class name | void | The type of the reply entity. Must be serializable and included, or void |
except | c++ class name | RestAccess.except | The type of a reply with an error. Must be serializable and included. Defaults to the classes except property |
postParams | bool | verb == "POST" | Specify if the <Param> elements should be send as URL query or POST parameter. |
Name | XML-Type | Limits | Description |
---|---|---|---|
Path | PathGroup | 0 - 1 | A path to be added relative to the class sub url |
Url | Expression | 0 - 1 | A fixed URL to be resolved relative to the classes sub URL |
Param | BaseParam | 0 - ∞ | Additional method parameters to be used as query or past params for the request (Depending on postParams ) |
Header | FixedParam | 0 - ∞ | Additional HTTP-Headers to be added to the HTTP-Request |
<Path>
with <Url>
. Either you use a of <Path>
element to build a combine path from them, or you use a single <Url>
to specify a whole, unparametrized, absolute URL. You can of cause specify neither as well.A BaseUrl is basically an Expression with an additional attribute, apiVersion, to give the URL an optional, C++-validated version number, which can be accessed via the RestClient. So besides that extra attribute, it behaves just like an expression.
Name | Allowed values | Default/Required | Description |
---|---|---|---|
apiVersion | QVersionNumber string | none | An optional API version to be appended to the base URL as extra path segment |
The following file is the XSD the builder operates on. You can use it to verify your rest api xml files.