#name #text #changer #parser

names-changer

Convert a names of sql schemes from camelcase to snake case

2 releases

0.2.1 Feb 2, 2021
0.2.0 Jan 31, 2021
0.1.1 Jan 28, 2021
0.1.0 Jan 28, 2021

#1500 in Text processing

Download history 6/week @ 2024-02-26 66/week @ 2024-04-01

66 downloads per month

MIT/Apache

12KB
125 lines

names-changer

Convert a names of sql schemes from camelcase to snake case.

Taking data as str. This crate #[names_changer] provides trait method .camel_to_snake() that convert a names from camel case to snake case. The trait searches for words matching the pattern and converts them to snake case.

Getting Started

First of all you have to add this dependency to your Cargo.toml:

[dev-dependencies]
names-changer = "0.2.1"

Additionally, you have to import the procedural macro with use statement:

use names_changer::NamesChanger;

Example usage:

#[cfg(test)]
mod tests {
   use names_changer::NamesChanger;

   // Not needed for this example, but useful in general
   use super::*;

   #[test]
   fn test_name_change() {
       let content = "TABLE ClientTokensRef IS 'text';";
       let change_content = content.camel_to_snake();

       assert_eq!("TABLE client_tokens_ref IS 'text';", change_content)
   }
}

Why is it?

This for update old sql schemes with names include of upper case e.g.

#[cfg(test)]
mod tests {
   use names_changer::NamesChanger;
   use heck::SnakeCase;

   #[test]
   fn test_names_changer_to_snake_case() {
       let content = "TABLE ClientTokensRef IS 'text';";
       
       assert_eq!("TABLE client_tokens_ref IS 'text';", content.camel_to_snake())
   }

   #[test]
   fn test_classic_to_snake_case() {
       let content = "TABLE ClientTokensRef IS 'text';";

       assert_eq!("table_client_tokens_ref_is_text", content.to_snake_case()())
   }
}

What's new

0.2.1

  • fixed bug with skipping small words, i.e. "idExt", "idEx", "dE".

0.2.0

  • fixed bug with method name
  • added recursive processing of segments without spaces: from "(ClientRefA (ClientRefB (ClientRefC ((ClientRefE (id)))))" we get "(client_ref_a (client_ref_b (client_ref_c ((client_ref_e (id)))))"
  • added tests
  • case crate (the have problems with abbreviations) replaced with heck

Cons: requires a lot of resources, not optimized.

Todos

  • fix warning
  • optimize code
  • add asynchronous processing?

License

This project is licensed under either of

Dependencies

~2.6–3.5MB
~61K SLoC