risingwave_common_proc_macro/lib.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 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
// Copyright 2024 RisingWave Labs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![cfg_attr(coverage, feature(coverage_attribute))]
use estimate_size::{
add_trait_bounds, extract_ignored_generics_list, has_nested_flag_attribute_list,
};
use proc_macro::TokenStream;
use proc_macro_error::proc_macro_error;
use quote::quote;
use syn::parse_macro_input;
mod config;
mod config_doc;
mod estimate_size;
mod session_config;
/// Sections in the configuration file can use `#[derive(OverrideConfig)]` to generate the
/// implementation of overwriting configs from the file.
///
/// In the struct definition, use #[override_opts(path = ...)] on a field to indicate the field in
/// `RwConfig` to override.
///
/// An example:
///
/// ```ignore
/// #[derive(OverrideConfig)]
/// struct Opts {
/// #[override_opts(path = meta.listen_addr)]
/// listen_addr: Option<String>,
/// }
/// ```
///
/// will generate
///
/// ```ignore
/// impl OverrideConfig for Opts {
/// fn r#override(self, config: &mut RwConfig) {
/// if let Some(v) = self.required_str {
/// config.meta.listen_addr = v;
/// }
/// }
/// }
/// ```
#[cfg_attr(coverage, coverage(off))]
#[proc_macro_derive(OverrideConfig, attributes(override_opts))]
#[proc_macro_error]
pub fn override_config(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input);
let gen = config::produce_override_config(input);
gen.into()
}
/// `EstimateSize` can be derived if when all the fields in a
/// struct or enum can implemented `EstimateSize`.
#[proc_macro_derive(EstimateSize, attributes(estimate_size))]
pub fn derive_estimate_size(input: TokenStream) -> TokenStream {
// Construct a representation of Rust code as a syntax tree
// that we can manipulate
let ast: syn::DeriveInput = syn::parse(input).unwrap();
// The name of the struct.
let name = &ast.ident;
// Extract all generics we shall ignore.
let ignored = extract_ignored_generics_list(&ast.attrs);
// Add a bound `T: EstimateSize` to every type parameter T.
let generics = add_trait_bounds(ast.generics, &ignored);
// Extract the generics of the struct/enum.
let (impl_generics, ty_generics, where_clause) = generics.split_for_impl();
// Traverse the parsed data to generate the individual parts of the function.
match ast.data {
syn::Data::Enum(data_enum) => {
if data_enum.variants.is_empty() {
// Empty enums are easy to implement.
let gen = quote! {
impl EstimateSize for #name {
fn estimated_heap_size(&self) -> usize {
0
}
}
};
return gen.into();
}
let mut cmds = Vec::with_capacity(data_enum.variants.len());
for variant in &data_enum.variants {
let ident = &variant.ident;
match &variant.fields {
syn::Fields::Unnamed(unnamed_fields) => {
let num_fields = unnamed_fields.unnamed.len();
let mut field_idents = Vec::with_capacity(num_fields);
for i in 0..num_fields {
let field_ident = String::from("v") + &i.to_string();
let field_ident = syn::parse_str::<syn::Ident>(&field_ident).unwrap();
field_idents.push(field_ident);
}
let mut field_cmds = Vec::with_capacity(num_fields);
for (i, _field) in unnamed_fields.unnamed.iter().enumerate() {
let field_ident = String::from("v") + &i.to_string();
let field_ident = syn::parse_str::<syn::Ident>(&field_ident).unwrap();
field_cmds.push(quote! {
total += EstimateSize::estimated_heap_size(#field_ident);
})
}
cmds.push(quote! {
Self::#ident(#(#field_idents,)*) => {
let mut total = 0;
#(#field_cmds)*;
total
}
});
}
syn::Fields::Named(named_fields) => {
let num_fields = named_fields.named.len();
let mut field_idents = Vec::with_capacity(num_fields);
let mut field_cmds = Vec::with_capacity(num_fields);
for field in &named_fields.named {
let field_ident = field.ident.as_ref().unwrap();
field_idents.push(field_ident);
field_cmds.push(quote! {
total += #field_ident.estimated_heap_size();
})
}
cmds.push(quote! {
Self::#ident{#(#field_idents,)*} => {
let mut total = 0;
#(#field_cmds)*;
total
}
});
}
syn::Fields::Unit => {
cmds.push(quote! {
Self::#ident => 0,
});
}
}
}
// Build the trait implementation
let gen = quote! {
impl #impl_generics EstimateSize for #name #ty_generics #where_clause {
fn estimated_heap_size(&self) -> usize {
match self {
#(#cmds)*
}
}
}
};
gen.into()
}
syn::Data::Union(_data_union) => {
panic!("Deriving EstimateSize for unions is currently not supported.")
}
syn::Data::Struct(data_struct) => {
if data_struct.fields.is_empty() {
// Empty structs are easy to implement.
let gen = quote! {
impl EstimateSize for #name {
fn estimated_heap_size(&self) -> usize {
0
}
}
};
return gen.into();
}
let mut field_cmds = Vec::with_capacity(data_struct.fields.len());
match data_struct.fields {
syn::Fields::Unnamed(unnamed_fields) => {
for (i, field) in unnamed_fields.unnamed.iter().enumerate() {
// Check if the value should be ignored. If so skip it.
if has_nested_flag_attribute_list(&field.attrs, "estimate_size", "ignore") {
continue;
}
let idx = syn::Index::from(i);
field_cmds.push(quote! {
total += EstimateSize::estimated_heap_size(&self.#idx);
})
}
}
syn::Fields::Named(named_fields) => {
for field in &named_fields.named {
// Check if the value should be ignored. If so skip it.
if has_nested_flag_attribute_list(&field.attrs, "estimate_size", "ignore") {
continue;
}
let field_ident = field.ident.as_ref().unwrap();
field_cmds.push(quote! {
total += &self.#field_ident.estimated_heap_size();
})
}
}
syn::Fields::Unit => {}
}
// Build the trait implementation
let gen = quote! {
impl #impl_generics EstimateSize for #name #ty_generics #where_clause {
fn estimated_heap_size(&self) -> usize {
let mut total = 0;
#(#field_cmds)*;
total
}
}
};
gen.into()
}
}
}
/// To add a new parameter, you can add a field with `#[parameter]` in the struct
/// A default value is required by setting the `default` option.
/// The field name will be the parameter name. You can overwrite the parameter name by setting the `rename` option.
/// To check the input parameter, you can use `check_hook` option.
///
/// `flags` options include
/// - `SETTER`: to manually write a `set_your_parameter_name` function, in which you should call `set_your_parameter_name_inner`.
/// - `REPORT`: to report the parameter through `ConfigReporter`
/// - `NO_ALTER_SYS`: disallow the parameter to be set by `alter system set`
#[proc_macro_derive(SessionConfig, attributes(parameter))]
#[proc_macro_error]
pub fn session_config(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input);
session_config::derive_config(input).into()
}
/// This proc macro recursively extracts rustdoc comments from the fields in a struct and generates a method
/// that produces docs for each field.
///
/// Unlike rustdoc, this tool focuses solely on extracting rustdoc for struct fields, without methods.
///
/// Example:
///
/// ```ignore
/// #[derive(ConfigDoc)]
/// pub struct Foo {
/// /// Description for `a`.
/// a: i32,
///
/// #[config_doc(nested)]
/// b: Bar,
///
/// #[config_doc(omitted)]
/// dummy: (),
/// }
/// ```
///
/// The `#[config_doc(nested)]` attribute indicates that the field is a nested config that will be documented in a separate section.
/// Fields marked with `#[config_doc(omitted)]` will simply be omitted from the doc.
///
/// Here is the method generated by this macro:
///
/// ```ignore
/// impl Foo {
/// pub fn config_docs(name: String, docs: &mut std::collections::BTreeMap<String, Vec<(String, String)>>)
/// }
/// ```
///
/// In `test_example_up_to_date`, we further process the output of this method to generate a markdown in src/config/docs.md.
#[proc_macro_derive(ConfigDoc, attributes(config_doc))]
pub fn config_doc(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input);
let gen = config_doc::generate_config_doc_fn(input);
gen.into()
}