2020-01-16 00:47:03 +02:00
|
|
|
//! This module generates AST datatype used by rust-analyzer.
|
2019-10-23 18:13:40 +03:00
|
|
|
//!
|
|
|
|
//! Specifically, it generates the `SyntaxKind` enum and a number of newtype
|
|
|
|
//! wrappers around `SyntaxNode` which implement `ra_syntax::AstNode`.
|
|
|
|
|
|
|
|
use proc_macro2::{Punct, Spacing};
|
|
|
|
use quote::{format_ident, quote};
|
2020-04-03 21:12:08 +02:00
|
|
|
use std::borrow::Cow;
|
|
|
|
use std::collections::{BTreeSet, HashMap, HashSet};
|
2019-10-23 18:13:40 +03:00
|
|
|
|
|
|
|
use crate::{
|
2020-01-03 20:37:02 +01:00
|
|
|
ast_src::{AstSrc, FieldSrc, KindsSrc, AST_SRC, KINDS_SRC},
|
2019-10-23 18:13:40 +03:00
|
|
|
codegen::{self, update, Mode},
|
|
|
|
project_root, Result,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn generate_syntax(mode: Mode) -> Result<()> {
|
|
|
|
let syntax_kinds_file = project_root().join(codegen::SYNTAX_KINDS);
|
2020-01-03 20:37:02 +01:00
|
|
|
let syntax_kinds = generate_syntax_kinds(KINDS_SRC)?;
|
2019-10-23 18:13:40 +03:00
|
|
|
update(syntax_kinds_file.as_path(), &syntax_kinds, mode)?;
|
|
|
|
|
|
|
|
let ast_file = project_root().join(codegen::AST);
|
2020-04-03 21:12:08 +02:00
|
|
|
let ast = generate_ast(KINDS_SRC, AST_SRC)?;
|
2019-10-23 18:13:40 +03:00
|
|
|
update(ast_file.as_path(), &ast, mode)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-03 21:12:08 +02:00
|
|
|
#[derive(Debug, Default, Clone)]
|
|
|
|
struct ElementKinds {
|
|
|
|
kinds: BTreeSet<proc_macro2::Ident>,
|
|
|
|
has_nodes: bool,
|
|
|
|
has_tokens: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn generate_ast(kinds: KindsSrc<'_>, grammar: AstSrc<'_>) -> Result<String> {
|
|
|
|
let all_token_kinds: Vec<_> = kinds
|
|
|
|
.punct
|
|
|
|
.into_iter()
|
|
|
|
.map(|(_, kind)| kind)
|
|
|
|
.copied()
|
|
|
|
.map(|x| x.into())
|
|
|
|
.chain(
|
|
|
|
kinds
|
|
|
|
.keywords
|
|
|
|
.into_iter()
|
|
|
|
.chain(kinds.contextual_keywords.into_iter())
|
|
|
|
.map(|name| Cow::Owned(format!("{}_KW", to_upper_snake_case(&name)))),
|
|
|
|
)
|
|
|
|
.chain(kinds.literals.into_iter().copied().map(|x| x.into()))
|
|
|
|
.chain(kinds.tokens.into_iter().copied().map(|x| x.into()))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let mut element_kinds_map = HashMap::new();
|
|
|
|
for kind in &all_token_kinds {
|
|
|
|
let kind = &**kind;
|
|
|
|
let name = to_pascal_case(kind);
|
|
|
|
element_kinds_map.insert(
|
|
|
|
name,
|
|
|
|
ElementKinds {
|
|
|
|
kinds: Some(format_ident!("{}", kind)).into_iter().collect(),
|
|
|
|
has_nodes: false,
|
|
|
|
has_tokens: true,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
for kind in kinds.nodes {
|
|
|
|
let name = to_pascal_case(kind);
|
|
|
|
element_kinds_map.insert(
|
|
|
|
name,
|
|
|
|
ElementKinds {
|
|
|
|
kinds: Some(format_ident!("{}", *kind)).into_iter().collect(),
|
|
|
|
has_nodes: true,
|
|
|
|
has_tokens: false,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
for en in grammar.enums {
|
|
|
|
let mut element_kinds: ElementKinds = Default::default();
|
|
|
|
for variant in en.variants {
|
|
|
|
if let Some(variant_element_kinds) = element_kinds_map.get(*variant) {
|
|
|
|
element_kinds.kinds.extend(variant_element_kinds.kinds.iter().cloned());
|
|
|
|
element_kinds.has_tokens |= variant_element_kinds.has_tokens;
|
|
|
|
element_kinds.has_nodes |= variant_element_kinds.has_nodes;
|
|
|
|
} else {
|
|
|
|
panic!("Enum variant has type that does not exist or was not declared before the enum: {}", *variant);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
element_kinds_map.insert(en.name.to_string(), element_kinds);
|
|
|
|
}
|
|
|
|
|
|
|
|
let tokens = all_token_kinds.iter().map(|kind_str| {
|
|
|
|
let kind_str = &**kind_str;
|
|
|
|
let kind = format_ident!("{}", kind_str);
|
|
|
|
let name = format_ident!("{}", to_pascal_case(kind_str));
|
|
|
|
quote! {
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
2020-04-09 10:47:05 +02:00
|
|
|
pub struct #name {
|
|
|
|
pub(crate) syntax: SyntaxToken,
|
|
|
|
}
|
2020-04-03 21:12:08 +02:00
|
|
|
|
|
|
|
impl std::fmt::Display for #name {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
2020-04-09 10:47:05 +02:00
|
|
|
std::fmt::Display::fmt(&self.syntax, f)
|
2020-04-03 21:12:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AstToken for #name {
|
|
|
|
fn can_cast(kind: SyntaxKind) -> bool {
|
|
|
|
match kind {
|
|
|
|
#kind => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2020-04-09 10:47:05 +02:00
|
|
|
fn cast(syntax: SyntaxToken) -> Option<Self> {
|
|
|
|
if Self::can_cast(syntax.kind()) { Some(Self { syntax }) } else { None }
|
2020-04-03 21:12:08 +02:00
|
|
|
}
|
2020-04-09 10:47:05 +02:00
|
|
|
fn syntax(&self) -> &SyntaxToken { &self.syntax }
|
2020-04-03 21:12:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
let nodes = grammar.nodes.iter().map(|node| {
|
|
|
|
let name = format_ident!("{}", node.name);
|
|
|
|
let kind = format_ident!("{}", to_upper_snake_case(&name.to_string()));
|
|
|
|
let traits = node.traits.iter().map(|trait_name| {
|
|
|
|
let trait_name = format_ident!("{}", trait_name);
|
|
|
|
quote!(impl ast::#trait_name for #name {})
|
|
|
|
});
|
2019-10-23 18:13:40 +03:00
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
let methods = node.fields.iter().map(|(name, field)| {
|
|
|
|
let method_name = match field {
|
|
|
|
FieldSrc::Shorthand => format_ident!("{}", to_lower_snake_case(&name)),
|
|
|
|
_ => format_ident!("{}", name),
|
|
|
|
};
|
|
|
|
let ty = match field {
|
|
|
|
FieldSrc::Optional(ty) | FieldSrc::Many(ty) => ty,
|
|
|
|
FieldSrc::Shorthand => name,
|
|
|
|
};
|
2020-04-09 10:47:05 +02:00
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
let ty = format_ident!("{}", ty);
|
|
|
|
|
|
|
|
match field {
|
|
|
|
FieldSrc::Many(_) => {
|
|
|
|
quote! {
|
2020-04-09 10:47:05 +02:00
|
|
|
pub fn #method_name(&self) -> AstChildren<#ty> {
|
2020-04-09 13:00:09 +02:00
|
|
|
support::children(&self.syntax)
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 20:37:02 +01:00
|
|
|
}
|
|
|
|
FieldSrc::Optional(_) | FieldSrc::Shorthand => {
|
2020-04-09 13:00:09 +02:00
|
|
|
let is_token = element_kinds_map[&ty.to_string()].has_tokens;
|
|
|
|
if is_token {
|
|
|
|
quote! {
|
|
|
|
pub fn #method_name(&self) -> Option<#ty> {
|
|
|
|
support::token(&self.syntax)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
quote! {
|
|
|
|
pub fn #method_name(&self) -> Option<#ty> {
|
|
|
|
support::child(&self.syntax)
|
|
|
|
}
|
2020-01-03 20:37:02 +01:00
|
|
|
}
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-03 20:37:02 +01:00
|
|
|
});
|
2019-10-23 18:13:40 +03:00
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
quote! {
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub struct #name {
|
|
|
|
pub(crate) syntax: SyntaxNode,
|
|
|
|
}
|
2019-10-23 18:13:40 +03:00
|
|
|
|
2020-03-06 19:29:30 +02:00
|
|
|
impl std::fmt::Display for #name {
|
2020-03-11 22:54:24 +02:00
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
|
|
std::fmt::Display::fmt(self.syntax(), f)
|
2020-03-06 19:29:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
impl AstNode for #name {
|
|
|
|
fn can_cast(kind: SyntaxKind) -> bool {
|
|
|
|
match kind {
|
|
|
|
#kind => true,
|
|
|
|
_ => false,
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
}
|
2020-04-09 10:47:05 +02:00
|
|
|
fn cast(syntax: SyntaxNode) -> Option<Self> {
|
|
|
|
if Self::can_cast(syntax.kind()) { Some(Self { syntax }) } else { None }
|
2020-01-03 20:37:02 +01:00
|
|
|
}
|
|
|
|
fn syntax(&self) -> &SyntaxNode { &self.syntax }
|
2020-04-03 21:12:08 +02:00
|
|
|
}
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
#(#traits)*
|
|
|
|
|
|
|
|
impl #name {
|
|
|
|
#(#methods)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2019-10-23 18:13:40 +03:00
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
let enums = grammar.enums.iter().map(|en| {
|
|
|
|
let variants = en.variants.iter().map(|var| format_ident!("{}", var)).collect::<Vec<_>>();
|
|
|
|
let name = format_ident!("{}", en.name);
|
2020-04-09 10:47:05 +02:00
|
|
|
let kinds = variants
|
2020-01-03 20:37:02 +01:00
|
|
|
.iter()
|
2020-04-09 10:47:05 +02:00
|
|
|
.map(|name| format_ident!("{}", to_upper_snake_case(&name.to_string())))
|
2020-01-03 20:37:02 +01:00
|
|
|
.collect::<Vec<_>>();
|
|
|
|
let traits = en.traits.iter().map(|trait_name| {
|
2019-10-23 18:13:40 +03:00
|
|
|
let trait_name = format_ident!("{}", trait_name);
|
|
|
|
quote!(impl ast::#trait_name for #name {})
|
|
|
|
});
|
|
|
|
|
2020-04-09 13:00:09 +02:00
|
|
|
let element_kinds = &element_kinds_map[&en.name.to_string()];
|
|
|
|
assert!(
|
|
|
|
element_kinds.has_nodes ^ element_kinds.has_tokens,
|
|
|
|
"{}: {:#?}",
|
|
|
|
name,
|
|
|
|
element_kinds
|
|
|
|
);
|
|
|
|
let specific_ast_trait = {
|
|
|
|
let (ast_trait, syntax_type) = if element_kinds.has_tokens {
|
|
|
|
(quote!(AstToken), quote!(SyntaxToken))
|
|
|
|
} else {
|
|
|
|
(quote!(AstNode), quote!(SyntaxNode))
|
|
|
|
};
|
|
|
|
|
|
|
|
quote! {
|
|
|
|
impl #ast_trait for #name {
|
|
|
|
fn can_cast(kind: SyntaxKind) -> bool {
|
|
|
|
match kind {
|
|
|
|
#(#kinds)|* => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn cast(syntax: #syntax_type) -> Option<Self> {
|
|
|
|
let res = match syntax.kind() {
|
|
|
|
#(
|
|
|
|
#kinds => #name::#variants(#variants { syntax }),
|
|
|
|
)*
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
Some(res)
|
|
|
|
}
|
|
|
|
fn syntax(&self) -> &#syntax_type {
|
|
|
|
match self {
|
|
|
|
#(
|
|
|
|
#name::#variants(it) => &it.syntax,
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
quote! {
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum #name {
|
|
|
|
#(#variants(#variants),)*
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
#(
|
|
|
|
impl From<#variants> for #name {
|
|
|
|
fn from(node: #variants) -> #name {
|
|
|
|
#name::#variants(node)
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 20:37:02 +01:00
|
|
|
)*
|
2019-10-23 18:13:40 +03:00
|
|
|
|
2020-03-11 22:54:24 +02:00
|
|
|
impl std::fmt::Display for #name {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
2020-04-09 10:47:05 +02:00
|
|
|
std::fmt::Display::fmt(self.syntax(), f)
|
2020-03-11 22:54:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 13:00:09 +02:00
|
|
|
#specific_ast_trait
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
#(#traits)*
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-04-03 21:12:08 +02:00
|
|
|
let defined_nodes: HashSet<_> = grammar.nodes.iter().map(|node| node.name).collect();
|
|
|
|
|
|
|
|
for node in kinds
|
|
|
|
.nodes
|
|
|
|
.iter()
|
|
|
|
.map(|kind| to_pascal_case(*kind))
|
|
|
|
.filter(|name| !defined_nodes.contains(&**name))
|
|
|
|
{
|
|
|
|
eprintln!("Warning: node {} not defined in ast source", node);
|
|
|
|
}
|
|
|
|
|
2019-10-23 18:13:40 +03:00
|
|
|
let ast = quote! {
|
2020-04-03 21:12:08 +02:00
|
|
|
#[allow(unused_imports)]
|
2019-10-23 18:13:40 +03:00
|
|
|
use crate::{
|
2020-04-03 21:12:08 +02:00
|
|
|
SyntaxNode, SyntaxToken, SyntaxElement, NodeOrToken, SyntaxKind::{self, *},
|
2020-04-09 13:00:09 +02:00
|
|
|
ast::{self, AstNode, AstToken, AstChildren, support},
|
2019-10-23 18:13:40 +03:00
|
|
|
};
|
|
|
|
|
2020-04-03 21:12:08 +02:00
|
|
|
#(#tokens)*
|
2019-10-23 18:13:40 +03:00
|
|
|
#(#nodes)*
|
2020-01-03 20:37:02 +01:00
|
|
|
#(#enums)*
|
2019-10-23 18:13:40 +03:00
|
|
|
};
|
|
|
|
|
2020-01-10 11:23:11 +01:00
|
|
|
let pretty = crate::reformat(ast)?;
|
2019-10-23 18:13:40 +03:00
|
|
|
Ok(pretty)
|
|
|
|
}
|
|
|
|
|
2020-01-03 20:37:02 +01:00
|
|
|
fn generate_syntax_kinds(grammar: KindsSrc<'_>) -> Result<String> {
|
2019-10-23 18:13:40 +03:00
|
|
|
let (single_byte_tokens_values, single_byte_tokens): (Vec<_>, Vec<_>) = grammar
|
|
|
|
.punct
|
|
|
|
.iter()
|
|
|
|
.filter(|(token, _name)| token.len() == 1)
|
|
|
|
.map(|(token, name)| (token.chars().next().unwrap(), format_ident!("{}", name)))
|
|
|
|
.unzip();
|
|
|
|
|
|
|
|
let punctuation_values = grammar.punct.iter().map(|(token, _name)| {
|
|
|
|
if "{}[]()".contains(token) {
|
|
|
|
let c = token.chars().next().unwrap();
|
|
|
|
quote! { #c }
|
|
|
|
} else {
|
|
|
|
let cs = token.chars().map(|c| Punct::new(c, Spacing::Joint));
|
|
|
|
quote! { #(#cs)* }
|
|
|
|
}
|
|
|
|
});
|
|
|
|
let punctuation =
|
|
|
|
grammar.punct.iter().map(|(_token, name)| format_ident!("{}", name)).collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let full_keywords_values = &grammar.keywords;
|
|
|
|
let full_keywords =
|
|
|
|
full_keywords_values.iter().map(|kw| format_ident!("{}_KW", to_upper_snake_case(&kw)));
|
|
|
|
|
|
|
|
let all_keywords_values =
|
|
|
|
grammar.keywords.iter().chain(grammar.contextual_keywords.iter()).collect::<Vec<_>>();
|
|
|
|
let all_keywords_idents = all_keywords_values.iter().map(|kw| format_ident!("{}", kw));
|
|
|
|
let all_keywords = all_keywords_values
|
|
|
|
.iter()
|
|
|
|
.map(|name| format_ident!("{}_KW", to_upper_snake_case(&name)))
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let literals =
|
|
|
|
grammar.literals.iter().map(|name| format_ident!("{}", name)).collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let tokens = grammar.tokens.iter().map(|name| format_ident!("{}", name)).collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let nodes = grammar.nodes.iter().map(|name| format_ident!("{}", name)).collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let ast = quote! {
|
|
|
|
#![allow(bad_style, missing_docs, unreachable_pub)]
|
|
|
|
/// The kind of syntax node, e.g. `IDENT`, `USE_KW`, or `STRUCT_DEF`.
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
|
|
|
|
#[repr(u16)]
|
|
|
|
pub enum SyntaxKind {
|
|
|
|
// Technical SyntaxKinds: they appear temporally during parsing,
|
|
|
|
// but never end up in the final tree
|
|
|
|
#[doc(hidden)]
|
|
|
|
TOMBSTONE,
|
|
|
|
#[doc(hidden)]
|
|
|
|
EOF,
|
|
|
|
#(#punctuation,)*
|
|
|
|
#(#all_keywords,)*
|
|
|
|
#(#literals,)*
|
|
|
|
#(#tokens,)*
|
|
|
|
#(#nodes,)*
|
|
|
|
|
|
|
|
// Technical kind so that we can cast from u16 safely
|
|
|
|
#[doc(hidden)]
|
|
|
|
__LAST,
|
|
|
|
}
|
|
|
|
use self::SyntaxKind::*;
|
|
|
|
|
|
|
|
impl SyntaxKind {
|
|
|
|
pub fn is_keyword(self) -> bool {
|
|
|
|
match self {
|
|
|
|
#(#all_keywords)|* => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_punct(self) -> bool {
|
|
|
|
match self {
|
|
|
|
#(#punctuation)|* => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_literal(self) -> bool {
|
|
|
|
match self {
|
|
|
|
#(#literals)|* => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_keyword(ident: &str) -> Option<SyntaxKind> {
|
|
|
|
let kw = match ident {
|
|
|
|
#(#full_keywords_values => #full_keywords,)*
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
Some(kw)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_char(c: char) -> Option<SyntaxKind> {
|
|
|
|
let tok = match c {
|
|
|
|
#(#single_byte_tokens_values => #single_byte_tokens,)*
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
Some(tok)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! T {
|
|
|
|
#((#punctuation_values) => { $crate::SyntaxKind::#punctuation };)*
|
|
|
|
#((#all_keywords_idents) => { $crate::SyntaxKind::#all_keywords };)*
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-10 11:23:11 +01:00
|
|
|
crate::reformat(ast)
|
2019-10-23 18:13:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn to_upper_snake_case(s: &str) -> String {
|
|
|
|
let mut buf = String::with_capacity(s.len());
|
2020-04-03 21:12:08 +02:00
|
|
|
let mut prev = false;
|
2019-10-23 18:13:40 +03:00
|
|
|
for c in s.chars() {
|
2020-04-03 21:12:08 +02:00
|
|
|
if c.is_ascii_uppercase() && prev {
|
2019-10-23 18:13:40 +03:00
|
|
|
buf.push('_')
|
|
|
|
}
|
2020-04-03 21:12:08 +02:00
|
|
|
prev = true;
|
2019-10-23 18:13:40 +03:00
|
|
|
|
|
|
|
buf.push(c.to_ascii_uppercase());
|
|
|
|
}
|
|
|
|
buf
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_lower_snake_case(s: &str) -> String {
|
|
|
|
let mut buf = String::with_capacity(s.len());
|
2020-04-03 21:12:08 +02:00
|
|
|
let mut prev = false;
|
2019-10-23 18:13:40 +03:00
|
|
|
for c in s.chars() {
|
2020-04-03 21:12:08 +02:00
|
|
|
if c.is_ascii_uppercase() && prev {
|
2019-10-23 18:13:40 +03:00
|
|
|
buf.push('_')
|
|
|
|
}
|
2020-04-03 21:12:08 +02:00
|
|
|
prev = true;
|
2019-10-23 18:13:40 +03:00
|
|
|
|
|
|
|
buf.push(c.to_ascii_lowercase());
|
|
|
|
}
|
|
|
|
buf
|
|
|
|
}
|
2020-04-03 21:12:08 +02:00
|
|
|
|
|
|
|
fn to_pascal_case(s: &str) -> String {
|
|
|
|
let mut buf = String::with_capacity(s.len());
|
|
|
|
let mut prev_is_underscore = true;
|
|
|
|
for c in s.chars() {
|
|
|
|
if c == '_' {
|
|
|
|
prev_is_underscore = true;
|
|
|
|
} else if prev_is_underscore {
|
|
|
|
buf.push(c.to_ascii_uppercase());
|
|
|
|
prev_is_underscore = false;
|
|
|
|
} else {
|
|
|
|
buf.push(c.to_ascii_lowercase());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buf
|
|
|
|
}
|