Skip to main content

Server middleware for implementing zserio services at warp 10.

Project description

Zswag

CI

Zswag is a collection of libraries for using/hosting zserio services through OpenAPI.

Components

Component Overview

The zswag repository provides two main libraries which deliver generic OpenAPI clients (Python, C++) for zserio services as well as a generic OpenApi server (Python):

  • zswagcl is a C++ Library which exposes zserio OpenApi service client ZsrClient as well as the more generic OpenApiClient and OpenApiConfig classes which are reused in Python.
  • zswag is a Python Library which provides both a zserio Python service client (OAClient) as well as a zserio-OpenApi server layer based on Flask/Connexion (OAServer).
  • pyzswagcl is a binding library which exposes the C++-based OpenApi pasrsing/request functionality to Python. Please consider it "internal".
  • httpcl is a wrapper around the cpp-httplib, and http request configuration and secret injection abilities.

Setup

For Python Users

Simply run pip install zswag. Note: This currently only works with 64-bit Python 3.8. Also, make sure that your pip --version is greater than 19.3.

For C++ Users

Using CMake, you can ...

  • ... run tests.
  • ... build the zswag wheels for Python != 3.8.
  • ... integrate the C++ client into a C++ project.

The basic setup follows the usual CMake configure/build steps:

mkdir build && cd build
cmake ..
cmake --build .

Note: The Python environment used for configuration will be used to build the resulting wheels. After building, you will find the Python wheels under build/bin/wheel.

To run tests, just execute CTest at the top of the build directory:

cd build && ctest --verbose

Using zswag.OAClient

If you have a service called my.package.Service, then zserio will automatically generate a client for the service under my.package.Service.Client. This client can be instantiated alas ...

from my.package.api import Service
from zswag import OAClient
client = Service.Client(OAClient(f"http://localhost:5000/openapi.json"))

zswag.OAClient provides the service client interface expected by zserio after version 2.3. It reads HTTP specifics for the service from an OpenAPI YAML or JSON spec that must be located under the given path or URL.

Using zswag.OAServer

The OAServer component gives you the power to marry a user-written app controller with a zserio-generated app server class (argument parser/response serialiser) and a fitting Swagger OpenAPI spec.

Example

import zswag
import zserio
import my.app.controller

zserio.generate("myapp/service.zs", "myapp")
from myapp.service import Service

# The OAServer argument `yaml_path` is optional
app = zswag.OAServer(my.app.controller, Service)

Here, the API endpoints are routed to my/app/controller.py, which might look as follows:

# Written by you
def my_api(request):
    return "response"

# Automatically injected by ZserioOpenApiApp
# _service = Service()
# _service.myApi = lambda request: _service._myApiMethod(request)
# _service._myApiImpl = my.app.controller.myApi

Using zswagcl::ZsrClient

🚧 This section is work-in-progress. 🚧

Authentication via Headers and Cookies

🚧 This section is work-in-progress. 🚧

Swagger UI

If you have installed pip install connexion[swagger-ui], you can view API docs of your service under [/prefix]/ui.

OpenAPI YAML spec

YAML file location/auto-generation

  • If you specify a non-empty path to a file which does not yet exist, the OpenAPI spec is auto-generated in that location.
  • If you specify an empty YAML path, the yaml file is placed next to the <service>.zs source-file.
  • If you specify an existing file, zswag will simply verify all the methods specified in your zserio service are also reflected in the OpenAPI-spec.

Working with OpenAPI Spec Options

Options Overview

Server and zswag_client.HttpClient currently offer several degrees of freedom regarding HTTP-specifics in the OpenAPI YAML file:

  • HTTP Method
  • Parameter Format
  • Server URL Base Path

Option 🌟1: HTTP method

To change the HTTP method, simply place the desired method as the key under the method path, such as in the following example:

paths:
  /methodName:
    {get|post|put|patch|delete}:
      ...

Option 🌟2: Zserio request blob in body

requestBody:
  content:
    application/x-zserio-object:
      schema:
        type: string

Option 🌟3: Zserio request blob in URL parameter

parameters:
- description: ''
  in: query|path
  name: parameterName
  required: true
  x-zserio-request-part: "*"
  schema:
    format: string|byte|base64|base64url|hex|binary

About the format specifier value:

  • Both string and binary result in a raw URL-encoded string.
  • Both byte and base64 result in a standard Base64-encoded value. The base64url option indicates URL-safe Base64 format.
  • The hex encoding produces a hexadecimal encoding of the request blob.

Option 🌟4: Zserio request part, single value

parameters:
- description: ''
  in: query|path
  name: parameterName
  required: true
  x-zserio-request-part: "field[.subfield]*"
  schema:
    format: string|byte|base64|base64url|hex|binary

In this case, x-zserio-request-part should point to an atomic built-in type, such as uint8, float32, extern etc. Note that uint8[] array fields receive special treatment: They are transferred as single-value blobs, not as arrays.

The format value effect remains as explained above. A small difference exists for integer types: Their hexadecimal representation will be the natural numeric one, not the binary.

Option 🌟5: Zserio request part, array

parameters:
- description: ''
  in: query|path
  style: form|simple|label|matrix
  explode: true|false
  name: parameterName
  required: true
  x-zserio-request-part: "field[.subfield]*"
  schema:
    format: string|byte|base64|base64url|hex|binary

In this case, x-zserio-request-part should point to an array of atomic built-in types. The array will be encoded according to the format, style and explode specifiers.

Option 🌟6: Zserio request part, dictionary

In this case, x-zserio-request-part should point to a zserio struct. The OpenAPI schema options are the same as for arrays. All fields of the designated struct which have an atomic built-in type are exposed as key-value pairs. The key-value-pairs will be encoded according to the format, style and explode specifiers.

Option 🌟7: Server URL Base Path

OpenAPI allows for a servers field in the spec that lists URL path prefixes under which the specified API may be reached. A zswag_client.HttpClient instance looks into this list and determines the URL base path it uses from the first entry in this list. A sample entry might look as follows:

servers:
- http://unused-host-information/path/to/my/api

The zswag_client.HttpClient will then call methods with your specified host and port, but prefix the /path/to/my/api string.

Documentation extraction

When the OpenAPI/Swagger YAML is auto-generated, Server tries to populate the service/method/argument/result descriptions with doc-strings which are extracted from the zserio sources.

For structs and services, the documentation is expected to be enclosed by /*! .... !*/ markers preceding the declaration:

/*!
### My Markdown Struct Doc
I choose to __highlight__ this word.
!*/

struct MyStruct {
    ...
}

For service methods, a single-line doc-string is parsed which immediately precedes the declaration:

/** This method is documented. */
ReturnType myMethod(ArgumentType);

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

zswag-0.7.0rc1-py3-none-any.whl (16.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page