self(auto)- documenting encoders and decoders
Go to file
2023-01-01 20:31:01 +01:00
.github Nix flake 2022-11-30 14:33:11 +01:00
autodocodec Nix flake 2022-11-30 14:33:11 +01:00
autodocodec-api-usage Regenerated golden output 2023-01-01 20:31:01 +01:00
autodocodec-openapi3 Nix flake 2022-11-30 14:33:11 +01:00
autodocodec-schema Nix flake 2022-11-30 14:33:11 +01:00
autodocodec-servant-multipart Nix flake 2022-11-30 14:33:11 +01:00
autodocodec-swagger2 Nix flake 2022-11-30 14:33:11 +01:00
autodocodec-yaml Yaml encoding via Yaml.toByteString instead of Yaml.encode 2022-12-25 15:47:52 +01:00
nix Nix flake 2022-11-30 14:33:11 +01:00
.envrc Nix flake 2022-11-30 14:33:11 +01:00
.gitignore Nix flake 2022-11-30 14:33:11 +01:00
.hlint.yaml autodocodec-servant-multipart 2022-09-20 00:59:49 +02:00
cabal.project Nix flake 2022-11-30 14:33:11 +01:00
flake.lock Nix flake 2022-11-30 14:33:11 +01:00
flake.nix Nix flake 2022-11-30 14:33:11 +01:00
LICENSE license in root dir too 2021-11-19 23:05:14 +01:00
README.md remove benchmarks that can't run 2021-11-17 14:39:36 +01:00
stack.yaml Nix flake 2022-11-30 14:33:11 +01:00
TODO.smos autodocodec-nix todo 2022-09-20 00:42:10 +02:00

Autodocodec

Autodocodec is short for "self(auto)- documenting encoder and decoder".

In short: You write a single instance, of the 'Codec' type-class, for your type, and you get:

See the golden test directory directory for example outputs.

Features

  • ✓ Correct-by-construction encoding and decoding, without generating code.
  • ✓ Generate automatically-correct documentation from code.
  • ✓ Support for recursive types.

State of this project

This project is ready to try out!

data Example = Example
  { exampleTextField :: !Text,
    exampleIntField :: !Int
  }
  deriving stock (Show, Eq, Generic)
  deriving
    ( FromJSON, -- <- FromJSON instance for free.
      ToJSON, -- <- ToJSON instance for free.
      Swagger.ToSchema, -- <- Swagger schema for free.
      OpenAPI.ToSchema -- <- OpenAPI schema for free.
    )
    via (Autodocodec Example)

instance HasCodec Example where
  codec =
    object "Example" $
      Example
        <$> requiredField "text" "documentation for the text field" .= exampleTextField
        <*> requiredField "int" "documentation for the int field" .= exampleIntField

Tests

While we don't provide any actual guarantees, we do have tests for the following properties that we would like to maintain: