-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmod.rs
291 lines (240 loc) · 10 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
use std::ops::Deref;
use itertools::Itertools;
use proc_macro2::TokenStream;
use quote::quote;
use syn::{parse_quote, DataStruct, Error, Ident};
use crate::{
attrs::common::ContainerAttributes,
codegen::{
common::{Container, ContainerInput, ContainerVersion, Item, VersionedContainer},
vstruct::field::VersionedField,
},
};
pub(crate) mod field;
/// Stores individual versions of a single struct. Each version tracks field
/// actions, which describe if the field was added, renamed or deprecated in
/// that version. Fields which are not versioned, are included in every
/// version of the struct.
#[derive(Debug)]
pub(crate) struct VersionedStruct(VersionedContainer<VersionedField>);
impl Deref for VersionedStruct {
type Target = VersionedContainer<VersionedField>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl Container<DataStruct, VersionedField> for VersionedStruct {
fn new(
input: ContainerInput,
data: DataStruct,
attributes: ContainerAttributes,
) -> syn::Result<Self> {
let ident = &input.ident;
// Convert the raw version attributes into a container version.
let versions: Vec<_> = (&attributes).into();
// Extract the field attributes for every field from the raw token
// stream and also validate that each field action version uses a
// version declared by the container attribute.
let mut items = Vec::new();
for field in data.fields {
let mut versioned_field = VersionedField::new(field, &attributes)?;
versioned_field.insert_container_versions(&versions);
items.push(versioned_field);
}
// Check for field ident collisions
for version in &versions {
// Collect the idents of all fields for a single version and then
// ensure that all idents are unique. If they are not, return an
// error.
// TODO (@Techassi): Report which field(s) use a duplicate ident and
// also hint what can be done to fix it based on the field action /
// status.
if !items.iter().map(|f| f.get_ident(version)).all_unique() {
return Err(Error::new(
ident.span(),
format!("struct contains renamed fields which collide with other fields in version {version}", version = version.inner),
));
}
}
// Validate K8s specific requirements
// Ensure that the struct name includes the 'Spec' suffix.
if attributes.kubernetes_attrs.is_some() && !ident.to_string().ends_with("Spec") {
return Err(Error::new(
ident.span(),
"struct name needs to include the `Spec` suffix if Kubernetes features are enabled via `#[versioned(k8s())]`"
));
}
Ok(Self(VersionedContainer::new(
input, attributes, versions, items,
)))
}
fn generate_tokens(&self) -> TokenStream {
let mut kubernetes_crd_fn_calls = TokenStream::new();
let mut container_definition = TokenStream::new();
let mut versions = self.versions.iter().peekable();
while let Some(version) = versions.next() {
container_definition.extend(self.generate_version(version, versions.peek().copied()));
kubernetes_crd_fn_calls.extend(self.generate_kubernetes_crd_fn_call(version));
}
// If tokens for the 'crd()' function calls were generated, also generate
// the 'merge_crds' call.
if !kubernetes_crd_fn_calls.is_empty() {
container_definition
.extend(self.generate_kubernetes_merge_crds(kubernetes_crd_fn_calls));
}
container_definition
}
}
impl VersionedStruct {
/// Generates all tokens for a single instance of a versioned struct.
fn generate_version(
&self,
version: &ContainerVersion,
next_version: Option<&ContainerVersion>,
) -> TokenStream {
let mut token_stream = TokenStream::new();
let original_attributes = &self.original_attributes;
let struct_name = &self.idents.original;
let visibility = &self.visibility;
// Generate fields of the struct for `version`.
let fields = self.generate_struct_fields(version);
// TODO (@Techassi): Make the generation of the module optional to
// enable the attribute macro to be applied to a module which
// generates versioned versions of all contained containers.
let version_specific_docs = &version.docs;
let version_ident = &version.ident;
let deprecated_note = format!("Version {version} is deprecated", version = version_ident);
let deprecated_attr = version
.deprecated
.then_some(quote! {#[deprecated = #deprecated_note]});
// Generate K8s specific code
let kubernetes_cr_derive = self.generate_kubernetes_cr_derive(version);
// Generate tokens for the module and the contained struct
token_stream.extend(quote! {
#[automatically_derived]
#deprecated_attr
#visibility mod #version_ident {
use super::*;
#(#original_attributes)*
#version_specific_docs
#kubernetes_cr_derive
pub struct #struct_name {
#fields
}
}
});
// Generate the From impl between this `version` and the next one.
if !self.options.skip_from && !version.skip_from {
token_stream.extend(self.generate_from_impl(version, next_version));
}
token_stream
}
/// Generates struct fields following the `name: type` format which includes
/// a trailing comma.
fn generate_struct_fields(&self, version: &ContainerVersion) -> TokenStream {
let mut tokens = TokenStream::new();
for item in &self.items {
tokens.extend(item.generate_for_container(version));
}
tokens
}
/// Generates the [`From`] impl which enables conversion between a version
/// and the next one.
fn generate_from_impl(
&self,
version: &ContainerVersion,
next_version: Option<&ContainerVersion>,
) -> Option<TokenStream> {
if let Some(next_version) = next_version {
let next_module_name = &next_version.ident;
let module_name = &version.ident;
let struct_ident = &self.idents.original;
let from_ident = &self.idents.from;
let fields = self.generate_from_fields(version, next_version, from_ident);
// TODO (@Techassi): Be a little bit more clever about when to include
// the #[allow(deprecated)] attribute.
return Some(quote! {
#[automatically_derived]
#[allow(deprecated)]
impl From<#module_name::#struct_ident> for #next_module_name::#struct_ident {
fn from(#from_ident: #module_name::#struct_ident) -> Self {
Self {
#fields
}
}
}
});
}
None
}
/// Generates fields used in the [`From`] impl following the
/// `new_name: struct_name.old_name` format which includes a trailing comma.
fn generate_from_fields(
&self,
version: &ContainerVersion,
next_version: &ContainerVersion,
from_ident: &Ident,
) -> TokenStream {
let mut token_stream = TokenStream::new();
for item in &self.items {
token_stream.extend(item.generate_for_from_impl(version, next_version, from_ident))
}
token_stream
}
}
// Kubernetes specific code generation
impl VersionedStruct {
/// Generates the `kube::CustomResource` derive with the appropriate macro
/// attributes.
fn generate_kubernetes_cr_derive(&self, version: &ContainerVersion) -> Option<TokenStream> {
if let Some(kubernetes_options) = &self.options.kubernetes_options {
let group = &kubernetes_options.group;
let version = version.inner.to_string();
let kind = kubernetes_options
.kind
.as_ref()
.map_or(self.idents.kubernetes.to_string(), |kind| kind.clone());
return Some(quote! {
#[derive(::kube::CustomResource)]
#[kube(group = #group, version = #version, kind = #kind)]
});
}
None
}
/// Generates the `merge_crds` function call.
fn generate_kubernetes_merge_crds(&self, fn_calls: TokenStream) -> TokenStream {
let ident = &self.idents.kubernetes;
quote! {
#[automatically_derived]
pub struct #ident;
#[automatically_derived]
impl #ident {
/// Generates a merged CRD which contains all versions defined using the
/// `#[versioned()]` macro.
pub fn merged_crd(
stored_apiversion: &str
) -> ::std::result::Result<::k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::CustomResourceDefinition, ::kube::core::crd::MergeError> {
::kube::core::crd::merge_crds(vec![#fn_calls], stored_apiversion)
}
}
}
}
/// Generates the inner `crd()` functions calls which get used in the
/// `merge_crds` function.
fn generate_kubernetes_crd_fn_call(&self, version: &ContainerVersion) -> Option<TokenStream> {
if self
.options
.kubernetes_options
.as_ref()
.is_some_and(|o| !o.skip_merged_crd)
{
let struct_ident = &self.idents.kubernetes;
let version_ident = &version.ident;
let path: syn::Path = parse_quote!(#version_ident::#struct_ident);
return Some(quote! {
<#path as ::kube::CustomResourceExt>::crd(),
});
}
None
}
}