Compare commits
10 Commits
004560ca3d
...
154980a10f
Author | SHA1 | Date | |
---|---|---|---|
154980a10f | |||
bf92f783e4 | |||
70408b0602 | |||
cfbd5185cb | |||
f924332491 | |||
c022f40bc6 | |||
7d2bd4f490 | |||
6e9aef221a | |||
91a745816a | |||
0f20012eae |
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# MagicDraw SQL Generator
|
||||
|
||||
https://rokaspuzonas.github.io/magic-sql-gen/
|
5
build.sh
5
build.sh
@ -1,3 +1,6 @@
|
||||
#!/bin/sh
|
||||
npm i
|
||||
npm run uno
|
||||
trunk build --release
|
||||
cargo install trunk
|
||||
rustup target add wasm32-unknown-unknown
|
||||
TRUNK_BUILD_PUBLIC_URL="/magic-sql-gen/" trunk build --release
|
||||
|
@ -1,9 +1,8 @@
|
||||
use gloo::console::{console, console_dbg};
|
||||
use gloo::file::callbacks::FileReader;
|
||||
use gloo::file::File;
|
||||
use gloo::storage::{LocalStorage, Storage};
|
||||
use std::cell::RefCell;
|
||||
use std::collections::{self, HashMap};
|
||||
use std::collections::HashMap;
|
||||
use std::io::Cursor;
|
||||
use std::rc::Rc;
|
||||
use web_sys::{DragEvent, Event, FileList, HtmlInputElement, MouseEvent};
|
||||
|
@ -1,4 +1,4 @@
|
||||
use std::{collections::HashMap, str::FromStr};
|
||||
use std::str::FromStr;
|
||||
|
||||
use web_sys::{Event, HtmlInputElement};
|
||||
use yew::{html, AttrValue, Callback, Html, TargetCast};
|
||||
@ -12,9 +12,9 @@ use crate::{
|
||||
|
||||
fn show_dropdown_picker(selected: &str, options: &[AttrValue], onchange: Callback<String>) -> Html {
|
||||
html! {
|
||||
<select onchange={Callback::from(move |e: Event| {
|
||||
<select onchange={onchange.reform(move |e: Event| {
|
||||
let value = e.target_unchecked_into::<HtmlInputElement>().value();
|
||||
onchange.emit(value);
|
||||
value
|
||||
})}>
|
||||
{
|
||||
options.iter().map(|value| {
|
||||
@ -27,10 +27,10 @@ fn show_dropdown_picker(selected: &str, options: &[AttrValue], onchange: Callbac
|
||||
|
||||
fn show_enum_dropdown< T: PartialEq + Clone + 'static>(
|
||||
selected: &T,
|
||||
options: HashMap<AttrValue, T>,
|
||||
options: &Vec<(AttrValue, T)>,
|
||||
onchange: Callback<T>,
|
||||
) -> Html {
|
||||
let keys = options.keys().map(AttrValue::clone).collect::<Vec<_>>();
|
||||
let keys = options.iter().map(|(opt, _)| opt.clone()).collect::<Vec<_>>();
|
||||
let guess_str = options
|
||||
.iter()
|
||||
.find(|(_, v)| v.eq(&selected))
|
||||
@ -38,10 +38,17 @@ fn show_enum_dropdown<T: PartialEq + Clone + 'static>(
|
||||
.0
|
||||
.clone();
|
||||
|
||||
let options = options.clone();
|
||||
show_dropdown_picker(
|
||||
&guess_str,
|
||||
&keys,
|
||||
onchange.reform(move |value_str: String| options.get(value_str.as_str()).unwrap().clone()),
|
||||
onchange.reform(move |value_str: String| {
|
||||
let enum_value = &options.iter()
|
||||
.find(|(v, _)| v.eq(&value_str))
|
||||
.unwrap()
|
||||
.1;
|
||||
enum_value.clone()
|
||||
})
|
||||
)
|
||||
}
|
||||
|
||||
@ -131,54 +138,54 @@ pub fn generator_picker(
|
||||
onchange.reform(|(min, max)| SQLValueGuess::Float(min, max)),
|
||||
),
|
||||
SQLValueGuess::Date(guess) => {
|
||||
let options = HashMap::from([
|
||||
let options = vec![
|
||||
("Now".into(), SQLTimeValueGuess::Now),
|
||||
("Future".into(), SQLTimeValueGuess::Future),
|
||||
("Past".into(), SQLTimeValueGuess::Past),
|
||||
]);
|
||||
];
|
||||
|
||||
show_enum_dropdown(
|
||||
guess,
|
||||
options,
|
||||
&options,
|
||||
onchange.reform(|enum_value| SQLValueGuess::Date(enum_value)),
|
||||
)
|
||||
}
|
||||
SQLValueGuess::Time(guess) => {
|
||||
let options = HashMap::from([
|
||||
let options = vec![
|
||||
("Now".into(), SQLTimeValueGuess::Now),
|
||||
("Future".into(), SQLTimeValueGuess::Future),
|
||||
("Past".into(), SQLTimeValueGuess::Past),
|
||||
]);
|
||||
];
|
||||
|
||||
show_enum_dropdown(
|
||||
guess,
|
||||
options,
|
||||
&options,
|
||||
onchange.reform(|enum_value| SQLValueGuess::Time(enum_value)),
|
||||
)
|
||||
}
|
||||
SQLValueGuess::Datetime(guess) => {
|
||||
let options = HashMap::from([
|
||||
let options = vec![
|
||||
("Now".into(), SQLTimeValueGuess::Now),
|
||||
("Future".into(), SQLTimeValueGuess::Future),
|
||||
("Past".into(), SQLTimeValueGuess::Past),
|
||||
]);
|
||||
];
|
||||
|
||||
show_enum_dropdown(
|
||||
guess,
|
||||
options,
|
||||
&options,
|
||||
onchange.reform(|enum_value| SQLValueGuess::Datetime(enum_value)),
|
||||
)
|
||||
}
|
||||
SQLValueGuess::Bool(guess) => {
|
||||
let options = HashMap::from([
|
||||
let options = vec![
|
||||
("Random".into(), SQLBoolValueGuess::Random),
|
||||
("True".into(), SQLBoolValueGuess::True),
|
||||
("False".into(), SQLBoolValueGuess::False),
|
||||
]);
|
||||
];
|
||||
|
||||
show_enum_dropdown(
|
||||
guess,
|
||||
options,
|
||||
&options,
|
||||
onchange.reform(|enum_value| SQLValueGuess::Bool(enum_value)),
|
||||
)
|
||||
}
|
||||
@ -189,23 +196,23 @@ pub fn generator_picker(
|
||||
}
|
||||
}
|
||||
|
||||
let options = HashMap::from([
|
||||
let options = vec![
|
||||
("Lorem Ipsum".into(), SQLStringValueGuess::LoremIpsum),
|
||||
("Empty".into(), SQLStringValueGuess::Empty),
|
||||
("First Name".into(), SQLStringValueGuess::FirstName),
|
||||
("Last Name".into(), SQLStringValueGuess::LastName),
|
||||
("Full Name".into(), SQLStringValueGuess::FullName),
|
||||
("Empty".into(), SQLStringValueGuess::Empty),
|
||||
("Phone number".into(), SQLStringValueGuess::PhoneNumber),
|
||||
("City name".into(), SQLStringValueGuess::CityName),
|
||||
("Address".into(), SQLStringValueGuess::Address),
|
||||
("Email".into(), SQLStringValueGuess::Email),
|
||||
("URL".into(), SQLStringValueGuess::URL),
|
||||
]);
|
||||
];
|
||||
|
||||
let max_size = *max_size;
|
||||
show_enum_dropdown(
|
||||
guess,
|
||||
options,
|
||||
&options,
|
||||
onchange.reform(move |enum_value| SQLValueGuess::String(max_size, enum_value)),
|
||||
)
|
||||
}
|
||||
|
@ -17,7 +17,6 @@ use fake::{
|
||||
},
|
||||
Fake,
|
||||
};
|
||||
use gloo::console::console_dbg;
|
||||
use rand::{rngs::ThreadRng, seq::SliceRandom, Rng};
|
||||
|
||||
use crate::magicdraw_parser::{SQLCheckConstraint, SQLColumn, SQLTable, SQLType};
|
||||
@ -125,11 +124,8 @@ pub fn generate_fake_entries(
|
||||
.get(column.name.as_str())
|
||||
.expect("Failed to get column guess");
|
||||
for entry_idx in 0..(rows_per_table as usize) {
|
||||
entries[entry_idx].push(generate_value(
|
||||
&mut rng,
|
||||
&value_guess,
|
||||
&mut auto_increment_counter,
|
||||
));
|
||||
let value = generate_value(&mut rng, &value_guess, &mut auto_increment_counter);
|
||||
entries[entry_idx].push(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -140,17 +136,17 @@ pub fn generate_fake_entries(
|
||||
let before_retain = entries_with_foreign_keys.len();
|
||||
|
||||
entries_with_foreign_keys.retain(|(table_idx, entry_idx)| {
|
||||
for (column_idx, foreign_table_idx, foreign_column_idx) in
|
||||
&all_foreign_columns[*table_idx]
|
||||
for (column_idx, foreign_table_idx, foreign_column_idx) in &all_foreign_columns[*table_idx]
|
||||
{
|
||||
let available_values: Vec<&str>;
|
||||
let mut available_values: Vec<&str>;
|
||||
|
||||
// If the foreign column, is also a foreign of the other table, ...
|
||||
// Then we need to filter out available options which have not been filled in
|
||||
if all_foreign_columns[*foreign_table_idx]
|
||||
let is_foreign_column_also_foreign = all_foreign_columns[*foreign_table_idx]
|
||||
.iter()
|
||||
.find(|(idx, _, _)| idx == foreign_column_idx)
|
||||
.is_some()
|
||||
.is_some();
|
||||
if is_foreign_column_also_foreign
|
||||
{
|
||||
available_values = all_entries[*foreign_table_idx]
|
||||
.iter()
|
||||
@ -167,6 +163,14 @@ pub fn generate_fake_entries(
|
||||
.collect();
|
||||
}
|
||||
|
||||
let used_values = all_entries[*table_idx].iter()
|
||||
.enumerate()
|
||||
.filter(|(entry_idx, _)| entries_with_foreign_keys_copy.contains(&(*table_idx, *entry_idx)))
|
||||
.map(|(_, entry)| entry[*column_idx].as_str())
|
||||
.collect::<HashSet<_>>();
|
||||
|
||||
available_values.retain(|value| !used_values.contains(value));
|
||||
|
||||
if let Some(chosen_value) = available_values.choose(&mut rng) {
|
||||
all_entries[*table_idx][*entry_idx][*column_idx] = chosen_value.to_string();
|
||||
} else {
|
||||
|
@ -61,7 +61,7 @@ fn parse_class<R: Read>(
|
||||
})?;
|
||||
|
||||
Ok(DDLClass {
|
||||
class_id: class_id.context("Missing class id")?,
|
||||
class_id: class_id.context("Missing dll class id")?,
|
||||
property_ids,
|
||||
})
|
||||
}
|
||||
|
@ -216,6 +216,8 @@ fn get_sql_type(
|
||||
Ok(match type_name {
|
||||
SQLTypeName::Int => SQLType::Int,
|
||||
SQLTypeName::Date => SQLType::Date,
|
||||
SQLTypeName::Datetime => SQLType::Datetime,
|
||||
SQLTypeName::Time => SQLType::Time,
|
||||
SQLTypeName::Float => SQLType::Float,
|
||||
SQLTypeName::Bool => SQLType::Bool,
|
||||
SQLTypeName::Decimal => SQLType::Decimal,
|
||||
@ -266,17 +268,6 @@ pub fn parse_project<R: Read + Seek>(project_file: R) -> Result<Vec<SQLTableColl
|
||||
for ddl_script in ddl_project.scripts {
|
||||
let mut tables = vec![];
|
||||
|
||||
let model_properties = ddl_script
|
||||
.classess
|
||||
.iter()
|
||||
.flat_map(|class| {
|
||||
class
|
||||
.property_ids
|
||||
.iter()
|
||||
.map(|prop| (&class.class_id, prop))
|
||||
})
|
||||
.collect::<Vec<_>>();
|
||||
|
||||
let mut model_classess = vec![];
|
||||
for ddl_class in &ddl_script.classess {
|
||||
let model_class = find_class_by_id(&models, &ddl_class.class_id)
|
||||
@ -302,7 +293,7 @@ pub fn parse_project<R: Read + Seek>(project_file: R) -> Result<Vec<SQLTableColl
|
||||
let type_href = unwrap_opt_continue!(&property.type_href);
|
||||
let type_name = sql_type_names
|
||||
.get(type_href)
|
||||
.context("Proerty type name conversion not found")?;
|
||||
.context("Property type name conversion not found")?;
|
||||
|
||||
let check_constraint = get_sql_check_constraint(&models, &prop_name);
|
||||
let foreign_key = get_foreign_key(&modifiers, &model_classess, property_id)?;
|
||||
|
@ -13,7 +13,7 @@ use super::utils::{check_attribute, check_name, get_attribute, parse_element, My
|
||||
|
||||
#[derive(Debug)]
|
||||
struct UsedPackage {
|
||||
share_point_id: String,
|
||||
share_point_ids: Vec<String>,
|
||||
name: String,
|
||||
needed_types: Vec<String>,
|
||||
}
|
||||
@ -23,6 +23,8 @@ pub enum SQLTypeName {
|
||||
Int,
|
||||
Decimal,
|
||||
Date,
|
||||
Datetime,
|
||||
Time,
|
||||
Float,
|
||||
Bool,
|
||||
Char,
|
||||
@ -39,22 +41,26 @@ fn parse_used_package<R: Read>(
|
||||
attrs: &[OwnedAttribute],
|
||||
needed_types: &[&str],
|
||||
) -> Result<UsedPackage> {
|
||||
let mut share_point_id = None;
|
||||
let mut share_point_ids = vec![];
|
||||
let project_uri = get_attribute(&attrs, None, "usedProjectURI")?;
|
||||
let name = project_uri.split("/").last().unwrap();
|
||||
|
||||
parse_element(parser, &mut |p, name, attrs| {
|
||||
if share_point_id.is_none() && check_name(&name, None, "mountPoints") {
|
||||
share_point_id = get_attribute(&attrs, None, "sharePointID")
|
||||
.ok()
|
||||
.map(str::to_string);
|
||||
if check_name(&name, None, "mountPoints") {
|
||||
if let Ok(mount_id) = get_attribute(&attrs, None, "sharePointID").map(str::to_string) {
|
||||
share_point_ids.push(mount_id);
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
})?;
|
||||
|
||||
if share_point_ids.is_empty() {
|
||||
bail!("Share point mount ids not found")
|
||||
}
|
||||
|
||||
Ok(UsedPackage {
|
||||
name: name.to_string(),
|
||||
share_point_id: share_point_id.context("Share point id not found")?,
|
||||
share_point_ids,
|
||||
needed_types: needed_types.iter().map(|s| s.to_string()).collect(),
|
||||
})
|
||||
}
|
||||
@ -109,14 +115,16 @@ fn is_umodel_snapshot_file(filename: &str) -> bool {
|
||||
|
||||
fn parse_type_name(str: &str) -> Result<SQLTypeName> {
|
||||
use SQLTypeName::*;
|
||||
Ok(match str {
|
||||
"decimal" => Decimal,
|
||||
Ok(match &str.to_lowercase()[..] {
|
||||
"decimal" | "dec" => Decimal,
|
||||
"char" => Char,
|
||||
"varchar" => Varchar,
|
||||
"float" => Float,
|
||||
"Integer" | "integer" | "int" => Int,
|
||||
"varchar" | "string" => Varchar,
|
||||
"float" | "double precision" => Float, // TODO: Cheecky double precision -> float
|
||||
"integer" | "int" => Int,
|
||||
"date" => Date,
|
||||
"Boolean" => Bool,
|
||||
"datetime" => Datetime,
|
||||
"time" => Time,
|
||||
"boolean" => Bool,
|
||||
_ => bail!("Unknown SQL type: '{}'", str),
|
||||
})
|
||||
}
|
||||
@ -161,8 +169,9 @@ fn parse_primitive_types<R: Read>(
|
||||
} => {
|
||||
if check_name(&name, Some("uml"), "Package") {
|
||||
if let Some(id) = get_attribute(&attributes, None, "ID").ok() {
|
||||
let id = id.to_string();
|
||||
if let Some(package) =
|
||||
used_packages.iter().find(|p| p.share_point_id.eq(id))
|
||||
used_packages.iter().find(|p| p.share_point_ids.contains(&id))
|
||||
{
|
||||
let package_types = parse_types_package(&mut parser)?
|
||||
.into_iter()
|
||||
|
@ -147,7 +147,7 @@ fn parse_constraint<R: Read>(
|
||||
if let Some((prop_name, check_body)) = body.unwrap().split_once(" in ") {
|
||||
return Ok(Some(UMLConstraint {
|
||||
id,
|
||||
class_id: Some(constrainted_element_id.context("Missing class id")?),
|
||||
class_id: Some(constrainted_element_id.context("Missing constraint class id")?),
|
||||
body: Some(format!("in {}", check_body)),
|
||||
property_id: None,
|
||||
property_name: Some(prop_name.into()),
|
||||
@ -155,9 +155,13 @@ fn parse_constraint<R: Read>(
|
||||
}
|
||||
}
|
||||
|
||||
if constrainted_element_id.is_none() {
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
return Ok(Some(UMLConstraint {
|
||||
id,
|
||||
property_id: Some(constrainted_element_id.context("Missing property id")?),
|
||||
property_id: Some(constrainted_element_id.unwrap()),
|
||||
body: None,
|
||||
class_id: None,
|
||||
property_name: None,
|
||||
|
@ -1,4 +1,8 @@
|
||||
|
||||
body {
|
||||
font-family: Arial, Helvetica, sans-serif
|
||||
}
|
||||
|
||||
.table-column-info td,
|
||||
.table-column-info th {
|
||||
padding: 0.5rem;
|
||||
|
Loading…
Reference in New Issue
Block a user