2021-05-30 02:33:08 +00:00
|
|
|
const std = @import("std");
|
2021-06-30 16:21:08 +00:00
|
|
|
const service_list = @import("models/service_manifest.zig");
|
2021-06-09 23:22:44 +00:00
|
|
|
const expectEqualStrings = std.testing.expectEqualStrings;
|
2021-05-30 02:33:08 +00:00
|
|
|
|
2021-06-10 21:09:22 +00:00
|
|
|
pub fn Services(service_imports: anytype) type {
|
2021-06-30 16:21:08 +00:00
|
|
|
if (service_imports.len == 0)
|
|
|
|
return service_list;
|
2021-06-09 23:22:44 +00:00
|
|
|
|
|
|
|
// From here, the fields of our structure can be generated at comptime...
|
2021-06-30 16:21:08 +00:00
|
|
|
var fields: [serviceCount(service_imports)]std.builtin.TypeInfo.StructField = undefined;
|
2021-06-10 21:23:11 +00:00
|
|
|
|
|
|
|
// This is run at comptime with multiple nested loops and a large (267 at
|
|
|
|
// time of writing) number of services. 4 was chosen by trial and error,
|
|
|
|
// but otherwise the branch count will be the product of field length,
|
|
|
|
// service list length and the number of imports requested
|
2021-06-30 16:21:08 +00:00
|
|
|
// @setEvalBranchQuota(4 * fields.len * service_list.len * std.math.min(service_imports.len, 1));
|
2021-06-09 23:22:44 +00:00
|
|
|
for (fields) |*item, i| {
|
2021-06-30 16:21:08 +00:00
|
|
|
const import_service = @field(service_list, @tagName(service_imports[i]));
|
|
|
|
const import_field = @field(import_service, @tagName(service_imports[i]));
|
|
|
|
item.* = .{
|
|
|
|
.name = @tagName(service_imports[i]),
|
|
|
|
.field_type = @TypeOf(import_field),
|
|
|
|
.default_value = import_field,
|
|
|
|
.is_comptime = false,
|
|
|
|
.alignment = 0,
|
|
|
|
};
|
2021-06-09 23:22:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// finally, generate the type
|
2021-05-30 02:33:08 +00:00
|
|
|
return @Type(.{
|
|
|
|
.Struct = .{
|
|
|
|
.layout = .Auto,
|
2021-06-09 23:22:44 +00:00
|
|
|
.fields = &fields,
|
2021-05-30 02:33:08 +00:00
|
|
|
.decls = &[_]std.builtin.TypeInfo.Declaration{},
|
|
|
|
.is_tuple = false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2021-06-10 21:09:22 +00:00
|
|
|
|
2021-06-30 16:21:08 +00:00
|
|
|
fn serviceCount(desired_services: anytype) usize {
|
|
|
|
if (desired_services.len == 0) return @TypeOf(service_list).Struct.fields.len;
|
2021-06-10 21:09:22 +00:00
|
|
|
return desired_services.len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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 = Services(.{}){};
|
2021-05-30 02:33:08 +00:00
|
|
|
|
2021-06-09 23:22:44 +00:00
|
|
|
test "services includes sts" {
|
2021-06-10 21:09:22 +00:00
|
|
|
try expectEqualStrings("2011-06-15", services.sts.version);
|
2021-05-30 02:33:08 +00:00
|
|
|
}
|
2021-06-09 23:22:44 +00:00
|
|
|
test "sts includes get_caller_identity" {
|
2021-06-10 21:09:22 +00:00
|
|
|
try expectEqualStrings("GetCallerIdentity", services.sts.get_caller_identity.action_name);
|
2021-06-09 23:22:44 +00:00
|
|
|
}
|
|
|
|
test "can get service and action name from request" {
|
|
|
|
// get request object. This call doesn't have parameters
|
|
|
|
const req = services.sts.get_caller_identity.Request{};
|
|
|
|
// const metadata = @TypeOf(req).metaInfo();
|
|
|
|
const metadata = req.metaInfo();
|
2021-06-10 21:09:22 +00:00
|
|
|
try expectEqualStrings("2011-06-15", metadata.service.version);
|
2021-06-09 23:22:44 +00:00
|
|
|
// expectEqualStrings("GetCallerIdentity", metadata.action.action_name);
|
2021-05-30 02:33:08 +00:00
|
|
|
}
|
2021-06-10 21:09:22 +00:00
|
|
|
test "can filter services" {
|
|
|
|
const filtered_services = Services(.{ .sts, .waf_v2 }){};
|
|
|
|
// const filtered_services = Services(.{.sts}){};
|
|
|
|
try expectEqualStrings("2011-06-15", filtered_services.sts.version);
|
|
|
|
}
|