guile-aws


Working with the AWS API in Guile

I stumbled upon an interesting Gnu Guile experiment: guile-aws. It's more than just an implementation of the AWS API in Scheme; it's an exposition of the power of the Guile compiler tower. "Guile defines a tower of languages, starting at Scheme and progressively simplifying down to languages that resemble the VM instruction set." One can extend Guile by defining a new "language" that compiles-down to Scheme (and is then compiled-down further as usual). This is what the author (one Ricardo Wurmus) has done.

He's pulled-down JSON documents from the AWS Javascript SDK, each of which describes a particular AWS API (S3, ECS, Route53 and so forth). He's then defined Scheme code that produces Scheme functions for each endpoint described therein. In other words, a fragment of JSON like:

"ListObjectsV2": {
      "name": "ListObjectsV2",
      "http": {
        "method": "GET",
        "requestUri": "/{Bucket}?list-type=2"
      },
      "input": {
        "shape": "ListObjectsV2Request"
      },
      "output": {
        "shape": "ListObjectsV2Output"
      },
      "errors": [
        {
          "shape": "NoSuchBucket"
        }
      ],
      "documentation": "<p>Returns some or all (up to 1,000) of the objects in a bucket with each request..."
    }
...
"ListObjectsV2Request": {
      "type": "structure",
      "required": [
        "Bucket"
      ],
      "members": {
        "Bucket": {
          "shape": "BucketName",
          "documentation": "<p>Bucket name to list..."
          "contextParam": {
            "name": "Bucket"
          },
          "location": "uri",
          "locationName": "Bucket"
        },
        "Prefix": {
          "shape": "Prefix",
          "documentation": "<p>Limits the response to keys that begin with the specified prefix.</p>",
          "location": "querystring",
          "locationName": "prefix"
        },
        ...
      }
    }

results in a Scheme function that can be invoked as:

(ListObjectsV2 #:Bucket "my-bucket" #:Prefix "some-prefix")

Here's his e-mail to the guile-user list announcing the project. He hosts the project at elephly.net, where it appears dormant. I "forked" it to Github & made a few updates:

All that said, for my particular application (grabbing some files from S3), the implementation didn't work. There were a few problems:

If AWS were to provide a machine-readable, accurate description of their APIs, it would enable automated SDK generation in numerous languages (lol… I crack myself up).

On the other hand, the package does provide a Scheme implementation of the SigV4 request signing protocol. That, along with my reading of the code, has equipped me to hit the S3 API from Scheme on my own.

11/18/23 17:17


 


View on mastodon