AWS SDK for Zig
Go to file
Emil Lerch a04d5ad38c
continuous-integration/drone/push Build is passing Details
update build badge url
2022-01-20 07:45:54 -08:00
codegen upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00
smithy upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00
src upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00
.drone.yml upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00
.gitignore extract smithy to separate package 2021-06-30 09:05:21 -07:00
Dockerfile upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00
LICENSE first thing that actually works 2021-04-27 11:24:01 -07:00
Makefile first thing that actually works 2021-04-27 11:24:01 -07:00
README.md update build badge url 2022-01-20 07:45:54 -08:00
build.zig upgrade to zig 0.9.0 2022-01-03 08:06:14 -08:00

README.md

AWS SDK for Zig

Build Status

This SDK currently supports all AWS services except EC2 and S3. These two services only support XML, and zig 0.8.0 and master both trigger compile errors while incorporating the XML parser. S3 also requires some plumbing tweaks in the signature calculation, which is planned for a zig version (probably self-hosted 0.9.0) that no longer has an error triggered. Examples of usage are in src/main.zig.

This is designed to be built statically using the aws_c_* libraries, so we inherit a lot of the goodness of the work going on there. Current executable size is 9.7M, about half of which is due to the SSL library. Running strip on the executable after compilation (it seems zig strip only goes so far), reduces this to 4.3M. This is for x86_linux, (which is all that's tested at the moment).

2022-01-10 SDK Update

To get smaller executable size and better portability with faster compilation, my intent is to rework the http communications using requestz. This relies on a couple other projects, and will require the creation of a zig implementation for Signature Version 4, along with support for some S3 quirks, etc. It will also reduce compatibility with some edge cases. Long term I think this is a better approach, however and will remove (or replace) a ton of the C dependencies as well as avoid a bunch of complexity such as the event loop C implementation found in the AWS libraries, which eventually could be replaced by zig async. I have created a new branch for this work as master is currently working fairly well. I'd also love to have an official package manager in zig, but I know this is high on the priority list for the foundation. In the meantime I will depend on git commands executed by build.zig to handle packages.

Building

I am assuming here that if you're playing with zig, you pretty much know what you're doing, so I will stay brief.

First, the dependencies are required. Use the Dockerfile to build these. a docker build will do, but be prepared for it to run a while. The Dockerfile has been tested on x86_64 linux, but I do hope to get arm64 supported as well.

Once that's done, you'll have an alpine image with all dependencies ready to go and zig master installed. There are some build-related things still broken in 0.8.0 and hopefully 0.8.1 will address those and we can be on a standard release.

  • zig build should work. It will build the code generation project, run the code generation, then build the main project with the generated code. There is also a Makefile included, but this hasn't been used in a while and I'm not sure that works at the moment.

Running

This library uses the aws c libraries for it's work, so it operates like most other 'AWS things'. Note that I tested by setting the appropriate environment variables, so config files haven't gotten a run through. main.zig gives you a handful of examples for working with services. For local testing or alternative endpoints, there's no real standard, so there is code to look for AWS_ENDPOINT_URL environment variable that will supercede all other configuration.

Dependencies

Full dependency tree: aws-c-auth

  • s2n
    • aws-lc
  • aws-c-common
  • aws-c-compression
    • aws-c-common
  • aws-c-http
    • s2n
    • aws-c-common
    • aws-c-io
      • aws-c-common
      • s2n
        • aws-lc
      • aws-c-cal
        • aws-c-common
        • aws-lc
    • aws-c-compression
      • aws-c-common
  • aws-c-cal
    • aws-c-common
    • aws-lc

Build order based on above:

  1. aws-c-common
  2. aws-lc
  3. s2n
  4. aws-c-cal
  5. aws-c-compression
  6. aws-c-io
  7. aws-c-http
  8. aws-c-auth

Dockerfile in this repo will manage this

TODO List:

  • Implement jitter/exponential backoff. This appears to be configuration of aws_c_io and should therefore be trivial
  • Implement timeouts and other TODO's in the code
  • Switch to aws-c-cal upstream once PR for full static musl build support is merged (see Dockerfile)
  • Implement AWS restXml protocol. Includes S3. Total service count 4. This may be blocked due to the same issue as EC2.
  • Implement AWS EC2 query protocol. Includes EC2. Total service count 1. This is currently blocked, probably on self-hosted compiler coming in zig 0.9.0 (January 2022) due to compiler bug discovered. More details and llvm ir log can be found in the XML branch.

Compiler wishlist/watchlist: