aws-sdk-for-zig/src/aws.zig

164 lines
6.0 KiB
Zig
Raw Normal View History

2021-04-27 18:24:01 +00:00
const std = @import("std");
const awshttp = @import("awshttp.zig");
const json = @import("json.zig");
const servicemodel = @import("servicemodel.zig");
2021-04-27 18:24:01 +00:00
const log = std.log.scoped(.aws);
pub const Options = struct {
region: []const u8 = "aws-global",
dualstack: bool = false,
};
2021-04-27 18:24:01 +00:00
/// Using this constant may blow up build times. Recommed using Services()
/// function directly, e.g. const services = Services(.{.sts, .ec2, .s3, .ddb}){};
pub const services = servicemodel.services;
2021-04-27 18:24:01 +00:00
/// Get a service model by importing specific services only. As an example:
/// const services = Services(.{.sts, .ec2, .s3, .ddb}){};
///
/// This will give you a constant with service data for sts, ec2, s3 and ddb only
pub const Services = servicemodel.Services;
2021-04-27 18:24:01 +00:00
pub const Aws = struct {
allocator: *std.mem.Allocator,
aws_http: awshttp.AwsHttp,
2021-04-27 18:24:01 +00:00
const Self = @This();
pub fn init(allocator: *std.mem.Allocator) Self {
return .{
.allocator = allocator,
.aws_http = awshttp.AwsHttp.init(allocator),
2021-04-27 18:24:01 +00:00
};
}
pub fn deinit(self: *Aws) void {
self.aws_http.deinit();
2021-04-27 18:24:01 +00:00
}
pub fn call(self: Self, comptime request: anytype, options: Options) !FullResponse(request) {
// every codegenned request object includes a metaInfo function to get
// pointers to service and action
const meta_info = request.metaInfo();
const service = meta_info.service;
const action = meta_info.action;
2021-04-27 18:24:01 +00:00
const R = Response(request);
const FullR = FullResponse(request);
2021-04-27 18:24:01 +00:00
log.debug("service endpoint {s}", .{service.endpoint_prefix});
log.debug("service sigv4 name {s}", .{service.sigv4_name});
2021-04-27 18:24:01 +00:00
log.debug("version {s}", .{service.version});
log.debug("action {s}", .{action.action_name});
const response = try self.aws_http.callApi(
service.endpoint_prefix,
service.version,
action.action_name,
.{
.region = options.region,
.dualstack = options.dualstack,
.sigv4_service_name = service.sigv4_name,
},
);
2021-04-27 18:24:01 +00:00
defer response.deinit();
// TODO: Check status code for badness
var stream = json.TokenStream.init(response.body);
const parser_options = json.ParseOptions{
2021-04-27 18:24:01 +00:00
.allocator = self.allocator,
.allow_camel_case_conversion = true, // new option
.allow_snake_case_conversion = true, // new option
.allow_unknown_fields = true, // new option. Cannot yet handle non-struct fields though
2021-04-27 18:24:01 +00:00
};
const SResponse = ServerResponse(request);
const parsed_response = try json.parse(SResponse, &stream, parser_options);
// Grab the first (and only) object from the server. Server shape expected to be:
// { ActionResponse: {ActionResult: {...}, ResponseMetadata: {...} } }
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// Next line of code pulls this portion
//
//
// And the response property below will pull whatever is the ActionResult object
// We can grab index [0] as structs are guaranteed by zig to be returned in the order
// declared, and we're declaring in that order in ServerResponse().
const real_response = @field(parsed_response, @typeInfo(SResponse).Struct.fields[0].name);
return FullR{
.response = @field(real_response, @typeInfo(@TypeOf(real_response)).Struct.fields[0].name),
.response_metadata = .{
.request_id = real_response.ResponseMetadata.RequestId,
},
.parser_options = parser_options,
.raw_parsed = parsed_response,
2021-04-27 18:24:01 +00:00
};
}
};
fn ServerResponse(comptime request: anytype) type {
const T = Response(request);
const action = request.metaInfo().action;
// NOTE: The non-standard capitalization here is used as a performance
// enhancement and to reduce allocations in json.zig. These fields are
// not (nor are they ever intended to be) exposed outside this codebase
const ResponseMetadata = struct {
RequestId: []u8,
};
const Result = @Type(.{
.Struct = .{
.layout = .Auto,
.fields = &[_]std.builtin.TypeInfo.StructField{
.{
.name = action.action_name ++ "Result",
.field_type = T,
.default_value = null,
.is_comptime = false,
.alignment = 0,
},
.{
.name = "ResponseMetadata",
.field_type = ResponseMetadata,
.default_value = null,
.is_comptime = false,
.alignment = 0,
},
},
.decls = &[_]std.builtin.TypeInfo.Declaration{},
.is_tuple = false,
},
});
return @Type(.{
.Struct = .{
.layout = .Auto,
.fields = &[_]std.builtin.TypeInfo.StructField{
.{
.name = action.action_name ++ "Response",
.field_type = Result,
.default_value = null,
.is_comptime = false,
.alignment = 0,
},
},
.decls = &[_]std.builtin.TypeInfo.Declaration{},
.is_tuple = false,
},
});
}
fn FullResponse(comptime request: anytype) type {
return struct {
response: Response(request),
response_metadata: struct {
request_id: []u8,
},
parser_options: json.ParseOptions,
raw_parsed: ServerResponse(request),
const Self = @This();
pub fn deinit(self: Self) void {
json.parseFree(ServerResponse(request), self.raw_parsed, self.parser_options);
}
};
}
fn Response(comptime request: anytype) type {
return request.metaInfo().action.Response;
}