2021-04-27 18:24:01 +00:00
|
|
|
const std = @import("std");
|
|
|
|
const aws = @import("aws.zig");
|
2021-05-13 22:53:53 +00:00
|
|
|
const json = @import("json.zig");
|
2021-04-27 18:24:01 +00:00
|
|
|
|
|
|
|
pub fn log(
|
|
|
|
comptime level: std.log.Level,
|
|
|
|
comptime scope: @TypeOf(.EnumLiteral),
|
|
|
|
comptime format: []const u8,
|
|
|
|
args: anytype,
|
|
|
|
) void {
|
|
|
|
// Ignore awshttp messages
|
|
|
|
if (scope == .awshttp and @enumToInt(level) >= @enumToInt(std.log.Level.debug))
|
|
|
|
return;
|
|
|
|
const scope_prefix = "(" ++ @tagName(scope) ++ "): ";
|
|
|
|
const prefix = "[" ++ @tagName(level) ++ "] " ++ scope_prefix;
|
|
|
|
|
|
|
|
// Print the message to stderr, silently ignoring any errors
|
|
|
|
const held = std.debug.getStderrMutex().acquire();
|
|
|
|
defer held.release();
|
|
|
|
const stderr = std.io.getStdErr().writer();
|
|
|
|
nosuspend stderr.print(prefix ++ format ++ "\n", args) catch return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() anyerror!void {
|
|
|
|
// Uncomment if you want to log allocations
|
|
|
|
// const file = try std.fs.cwd().createFile("/tmp/allocations.log", .{ .truncate = true });
|
|
|
|
// defer file.close();
|
|
|
|
// var child_allocator = std.heap.c_allocator;
|
|
|
|
// const allocator = &std.heap.loggingAllocator(child_allocator, file.writer()).allocator;
|
2021-05-13 22:53:53 +00:00
|
|
|
|
|
|
|
// Flip to true to run a second time. This will help debug
|
|
|
|
// allocation/deallocation issues
|
|
|
|
const test_twice = false;
|
|
|
|
|
|
|
|
// Flip to true to run through the json parsing changes made to stdlib
|
|
|
|
const test_json = false;
|
|
|
|
if (test_json) try jsonFun();
|
|
|
|
|
2021-04-27 18:24:01 +00:00
|
|
|
const allocator = std.heap.c_allocator;
|
|
|
|
|
|
|
|
const options = aws.Options{
|
|
|
|
.region = "us-west-2",
|
|
|
|
};
|
|
|
|
std.log.info("Start", .{});
|
|
|
|
|
|
|
|
var client = aws.Aws.init(allocator);
|
|
|
|
defer client.deinit();
|
2021-06-10 21:35:22 +00:00
|
|
|
const services = aws.Services(.{.sts}){};
|
|
|
|
const resp = try client.call(services.sts.get_caller_identity.Request{}, options);
|
2021-04-27 18:24:01 +00:00
|
|
|
// TODO: This is a bit wonky. Root cause is lack of declarations in
|
|
|
|
// comptime-generated types
|
2021-05-13 22:53:53 +00:00
|
|
|
defer resp.deinit();
|
2021-04-27 18:24:01 +00:00
|
|
|
|
|
|
|
if (test_twice) {
|
|
|
|
std.time.sleep(1000 * std.time.ns_per_ms);
|
|
|
|
std.log.info("second request", .{});
|
|
|
|
|
|
|
|
var client2 = aws.Aws.init(allocator);
|
|
|
|
defer client2.deinit();
|
2021-06-10 21:35:22 +00:00
|
|
|
const resp2 = try client2.call(services.sts.get_caller_identity.Request{}, options); // catch here and try alloc?
|
2021-05-13 22:53:53 +00:00
|
|
|
defer resp2.deinit();
|
2021-04-27 18:24:01 +00:00
|
|
|
}
|
|
|
|
|
2021-05-13 22:53:53 +00:00
|
|
|
std.log.info("arn: {s}", .{resp.response.arn});
|
|
|
|
std.log.info("id: {s}", .{resp.response.user_id});
|
|
|
|
std.log.info("account: {s}", .{resp.response.account});
|
2021-04-27 18:24:01 +00:00
|
|
|
std.log.info("requestId: {s}", .{resp.response_metadata.request_id});
|
|
|
|
|
|
|
|
std.log.info("Departing main", .{});
|
|
|
|
}
|
2021-05-13 22:53:53 +00:00
|
|
|
|
|
|
|
pub fn jsonFun() !void {
|
|
|
|
// Standard behavior
|
|
|
|
const payload =
|
|
|
|
\\{"GetCallerIdentityResponse":{"GetCallerIdentityResult":{"Account":"0123456789","Arn":"arn:aws:iam::0123456789:user/test","UserId":"MYUSERID"},"ResponseMetadata":{"RequestId":"3b80a99b-7df8-4bcb-96ee-b2759878a5f2"}}}
|
|
|
|
;
|
|
|
|
const Ret3 = struct {
|
|
|
|
getCallerIdentityResponse: struct { getCallerIdentityResult: struct { account: []u8, arn: []u8, user_id: []u8 }, responseMetadata: struct { requestId: []u8 } },
|
|
|
|
};
|
|
|
|
var stream3 = json.TokenStream.init(payload);
|
|
|
|
const res3 = json.parse(Ret3, &stream3, .{
|
|
|
|
.allocator = std.heap.c_allocator,
|
|
|
|
.allow_camel_case_conversion = true, // new option
|
|
|
|
.allow_snake_case_conversion = true, // new option
|
|
|
|
.allow_unknown_fields = true, // new option
|
|
|
|
}) catch unreachable;
|
|
|
|
std.log.info("{}", .{res3});
|
|
|
|
std.log.info("{s}", .{res3.getCallerIdentityResponse.getCallerIdentityResult.user_id});
|
|
|
|
}
|