variable type
This commit is contained in:
parent
249fa1f2b2
commit
cd0dfbec42
108
src/main.rs
108
src/main.rs
|
@ -8,11 +8,18 @@ mod nombres;
|
||||||
enum ErreurSophie {
|
enum ErreurSophie {
|
||||||
CommandeInconnue(String),
|
CommandeInconnue(String),
|
||||||
PhraseVide,
|
PhraseVide,
|
||||||
ManqueArgument(String),
|
ManqueArgument,
|
||||||
OrthographeNombre(String),
|
OrthographeNombre(String),
|
||||||
MauvaisArgument(String),
|
MauvaisArgument(String),
|
||||||
DesequilibreParenthese,
|
DesequilibreParenthese,
|
||||||
VariableInconnue(String),
|
VariableInconnue(String),
|
||||||
|
MauvaisType(String),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(PartialEq, Debug)]
|
||||||
|
enum Variable {
|
||||||
|
Entier(usize),
|
||||||
|
Texte(String),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for ErreurSophie {
|
impl fmt::Display for ErreurSophie {
|
||||||
|
@ -20,17 +27,18 @@ impl fmt::Display for ErreurSophie {
|
||||||
match self {
|
match self {
|
||||||
Self::CommandeInconnue(commande) => write!(f, "La commande \"{}\" est inconnue.", commande),
|
Self::CommandeInconnue(commande) => write!(f, "La commande \"{}\" est inconnue.", commande),
|
||||||
Self::PhraseVide => write!(f, "La phrase est vide."),
|
Self::PhraseVide => write!(f, "La phrase est vide."),
|
||||||
Self::ManqueArgument(commande) => write!(f, "Il manque un argument pour \"{}\".", commande),
|
Self::ManqueArgument => write!(f, "Il manque un argument."),
|
||||||
Self::OrthographeNombre(nombre) => write!(f, "Le nombre \"{}\" est mal orthographié.", nombre),
|
Self::OrthographeNombre(nombre) => write!(f, "Le nombre \"{}\" est mal orthographié.", nombre),
|
||||||
Self::MauvaisArgument(message) => write!(f, "La commande a reçu un mauvais argument, {}.", message),
|
Self::MauvaisArgument(message) => write!(f, "La commande a reçu un mauvais argument, {}.", message),
|
||||||
Self::DesequilibreParenthese => write!(f, "Les parenthèses sont déséquilibrés."),
|
Self::DesequilibreParenthese => write!(f, "Les parenthèses sont déséquilibrés."),
|
||||||
Self::VariableInconnue(nom) => write!(f, "La variable \"{}\" est inconnue", nom),
|
Self::VariableInconnue(nom) => write!(f, "La variable \"{}\" est inconnue.", nom),
|
||||||
|
Self::MauvaisType(attendu) => write!(f, "La variable est du mauvais type, {}.", attendu),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Sophie {
|
struct Sophie {
|
||||||
variables: HashMap<String, usize>,
|
variables: HashMap<String, Variable>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Sophie {
|
impl Sophie {
|
||||||
|
@ -63,10 +71,13 @@ impl Sophie {
|
||||||
}
|
}
|
||||||
|
|
||||||
if parties.len() == 1 {
|
if parties.len() == 1 {
|
||||||
return Err(ErreurSophie::ManqueArgument(parties[0].to_string()))
|
return Err(ErreurSophie::ManqueArgument)
|
||||||
}
|
}
|
||||||
|
|
||||||
match parties[0] {
|
match parties[0] {
|
||||||
|
"Définie" => {
|
||||||
|
self.definie(parties[1])?;
|
||||||
|
}
|
||||||
"Modifie" => {
|
"Modifie" => {
|
||||||
self.modifie(parties[1])?;
|
self.modifie(parties[1])?;
|
||||||
},
|
},
|
||||||
|
@ -83,22 +94,27 @@ impl Sophie {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn modifie(&mut self, arguments: &str) -> Result<(), ErreurSophie> {
|
fn definie(&mut self, arguments: &str) -> Result<(), ErreurSophie> {
|
||||||
let parties: Vec<&str> = arguments.splitn(2, "avec").collect();
|
let (variable_nom, variable_type) = nom_de_variable(arguments, "comme")?;
|
||||||
if parties.len() == 1 {
|
|
||||||
return Err(ErreurSophie::ManqueArgument(format!("Modifie {}", parties[0])))
|
|
||||||
}
|
|
||||||
let variable: String = parties[0].trim().to_string();
|
|
||||||
|
|
||||||
let Some(first_char) = variable.chars().next() else {
|
let contenu = match variable_type.as_str() {
|
||||||
return Err(ErreurSophie::MauvaisArgument("il n'y a pas de variable pour la commande Modifie".to_string()))
|
"entier" => Variable::Entier(0),
|
||||||
|
"texte" => Variable::Texte("".to_string()),
|
||||||
|
_ => return Err(ErreurSophie::MauvaisArgument("type de variable inconnu".into())),
|
||||||
};
|
};
|
||||||
if !first_char.is_uppercase() {
|
|
||||||
return Err(ErreurSophie::MauvaisArgument("il manque une majuscule à la variable pour la commande Modifie".to_string()))
|
self.variables.insert(variable_nom, contenu);
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
let valeur = self.operation(parties[1].trim())?;
|
fn modifie(&mut self, arguments: &str) -> Result<(), ErreurSophie> {
|
||||||
self.variables.insert(variable, valeur);
|
let (variable_nom, contenu) = nom_de_variable(arguments, "avec")?;
|
||||||
|
if !self.variables.contains_key(&variable_nom) {
|
||||||
|
return Err(ErreurSophie::VariableInconnue(variable_nom))
|
||||||
|
}
|
||||||
|
|
||||||
|
let valeur = self.operation(&contenu)?;
|
||||||
|
self.variables.insert(variable_nom, Variable::Entier(valeur));
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -129,6 +145,21 @@ impl Sophie {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn nom_de_variable(arguments: &str, separateur: &str) -> Result<(String, String), ErreurSophie> {
|
||||||
|
let parties: Vec<&str> = arguments.splitn(2, separateur).collect();
|
||||||
|
let nom_variable: String = parties[0].trim().to_string();
|
||||||
|
if parties.len() == 1 {
|
||||||
|
return Err(ErreurSophie::ManqueArgument)
|
||||||
|
}
|
||||||
|
let Some(first_char) = nom_variable.chars().next() else {
|
||||||
|
return Err(ErreurSophie::MauvaisArgument("il n'y a pas de variable".to_string()))
|
||||||
|
};
|
||||||
|
if !first_char.is_uppercase() {
|
||||||
|
return Err(ErreurSophie::MauvaisArgument("il manque une majuscule à la variable".to_string()))
|
||||||
|
}
|
||||||
|
Ok((nom_variable, parties[1].trim().to_string()))
|
||||||
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let arguments: Vec<String> = env::args().collect();
|
let arguments: Vec<String> = env::args().collect();
|
||||||
|
|
||||||
|
@ -154,7 +185,7 @@ fn main() {
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
#[cfg(test)] // Compile and run only during testing
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
|
@ -192,16 +223,33 @@ mod tests {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn teste_initialisation_variable() {
|
fn teste_definition_variable() {
|
||||||
let mut sophie = Sophie::new();
|
let mut sophie = Sophie::new();
|
||||||
let phrase = "Modifie Variable avec trois plus cent-deux";
|
let resultat = sophie.execute_phrase("Définie Variable comme entier");
|
||||||
let resultat = sophie.execute_phrase(phrase);
|
|
||||||
match resultat {
|
match resultat {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
assert_eq!(sophie.variables["Variable"], 105, "Echec d'initialisation de variable");
|
assert_eq!(sophie.variables["Variable"], Variable::Entier(0), "Variable mal définie");
|
||||||
}
|
}
|
||||||
Err(raison) => {
|
Err(raison) => {
|
||||||
panic!("Execution échouée pour \"{}\", avec l'erreur : {}", phrase, raison);
|
panic!("Définition de variable échouée : {}", raison);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn teste_modification_variable() {
|
||||||
|
let mut sophie = Sophie::new();
|
||||||
|
if let Err(raison) = sophie.execute_phrase("Définie Variable comme entier") {
|
||||||
|
panic!("Définition de variable échouée : {}", raison);
|
||||||
|
}
|
||||||
|
let a = 2345678;
|
||||||
|
let resultat = sophie.execute_phrase(&format!("Modifie Variable avec {} ", nombres::nombre_comme_texte(a)));
|
||||||
|
match resultat {
|
||||||
|
Ok(_) => {
|
||||||
|
assert_eq!(sophie.variables["Variable"], Variable::Entier(a), "Variable mal modifiée");
|
||||||
|
}
|
||||||
|
Err(raison) => {
|
||||||
|
panic!("Modification de variable échouée : {}", raison);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -209,12 +257,14 @@ mod tests {
|
||||||
#[test]
|
#[test]
|
||||||
fn teste_operation_variable() {
|
fn teste_operation_variable() {
|
||||||
let mut sophie = Sophie::new();
|
let mut sophie = Sophie::new();
|
||||||
let a = 2345678;
|
if let Err(raison) = sophie.execute_phrase("Définie Variable comme entier") {
|
||||||
let b = 987654;
|
panic!("Définition de variable échouée : {}", raison);
|
||||||
let phrase = format!("Modifie Variable avec {} ", nombres::nombre_comme_texte(a));
|
|
||||||
if let Err(raison) = sophie.execute_phrase(&phrase) {
|
|
||||||
panic!("Execution échouée pour \"{}\", avec l'erreur : {}", phrase, raison);
|
|
||||||
}
|
}
|
||||||
|
let a = 2345678;
|
||||||
|
if let Err(raison) = sophie.execute_phrase(&format!("Modifie Variable avec {} ", nombres::nombre_comme_texte(a))) {
|
||||||
|
panic!("Modification de variable échouée : {}", raison);
|
||||||
|
}
|
||||||
|
let b = 987654;
|
||||||
let resultat = sophie.operation(&format!("Variable plus {}", nombres::nombre_comme_texte(b)));
|
let resultat = sophie.operation(&format!("Variable plus {}", nombres::nombre_comme_texte(b)));
|
||||||
|
|
||||||
match resultat {
|
match resultat {
|
||||||
|
@ -222,7 +272,7 @@ mod tests {
|
||||||
assert_eq!(nombre, a+b, "Echec de la somme d'un entier et d'une variable, attendais {}, a reçu {}", a+b, nombre);
|
assert_eq!(nombre, a+b, "Echec de la somme d'un entier et d'une variable, attendais {}, a reçu {}", a+b, nombre);
|
||||||
}
|
}
|
||||||
Err(raison) => {
|
Err(raison) => {
|
||||||
panic!("Execution échouée pour \"Variable plus {}\", avec l'erreur : {}", nombres::nombre_comme_texte(b), raison);
|
panic!("Opération de variable échouée : {}", raison);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
use super::ErreurSophie;
|
use super::ErreurSophie;
|
||||||
use super::Sophie;
|
use super::Sophie;
|
||||||
|
use super::Variable;
|
||||||
|
|
||||||
const NOMS_UNITES: [&str; 10] = ["", "un", "deux", "trois", "quatre", "cinq", "six", "sept", "huit", "neuf"];
|
const NOMS_UNITES: [&str; 10] = ["", "un", "deux", "trois", "quatre", "cinq", "six", "sept", "huit", "neuf"];
|
||||||
const NOMS_UNITES_DIX: [&str; 10] = ["dix", "onze", "douze", "treize", "quatorze", "quinze", "seize", "dix-sept", "dix-huit", "dix-neuf"];
|
const NOMS_UNITES_DIX: [&str; 10] = ["dix", "onze", "douze", "treize", "quatorze", "quinze", "seize", "dix-sept", "dix-huit", "dix-neuf"];
|
||||||
|
@ -59,7 +60,7 @@ impl Sophie {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if index == 0 || index == expression.len() - 1 {
|
if index == 0 || index == expression.len() - 1 {
|
||||||
return Err(ErreurSophie::ManqueArgument(expression[index].to_string()));
|
return Err(ErreurSophie::ManqueArgument);
|
||||||
}
|
}
|
||||||
let a = self.texte_comme_nombre(&expression[index - 1])?;
|
let a = self.texte_comme_nombre(&expression[index - 1])?;
|
||||||
let b = self.texte_comme_nombre(&expression[index + 1])?;
|
let b = self.texte_comme_nombre(&expression[index + 1])?;
|
||||||
|
@ -78,7 +79,7 @@ impl Sophie {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if index == 0 || index == expression.len() - 1 {
|
if index == 0 || index == expression.len() - 1 {
|
||||||
return Err(ErreurSophie::ManqueArgument(expression[index].to_string()));
|
return Err(ErreurSophie::ManqueArgument);
|
||||||
}
|
}
|
||||||
let a = self.texte_comme_nombre(&expression[index - 1])?;
|
let a = self.texte_comme_nombre(&expression[index - 1])?;
|
||||||
let b = self.texte_comme_nombre(&expression[index + 1])?;
|
let b = self.texte_comme_nombre(&expression[index + 1])?;
|
||||||
|
@ -99,7 +100,10 @@ impl Sophie {
|
||||||
fn texte_comme_nombre(&self, texte: &str) -> Result<usize, ErreurSophie> {
|
fn texte_comme_nombre(&self, texte: &str) -> Result<usize, ErreurSophie> {
|
||||||
if texte.chars().next().map_or(false, |c| c.is_uppercase()) {
|
if texte.chars().next().map_or(false, |c| c.is_uppercase()) {
|
||||||
if self.variables.contains_key(texte) {
|
if self.variables.contains_key(texte) {
|
||||||
return Ok(self.variables[texte]);
|
let Variable::Entier(nombre) = self.variables[texte] else {
|
||||||
|
return Err(ErreurSophie::MauvaisType("attendais entier".to_string()))
|
||||||
|
};
|
||||||
|
return Ok(nombre);
|
||||||
} else {
|
} else {
|
||||||
return Err(ErreurSophie::VariableInconnue(texte.to_string()))
|
return Err(ErreurSophie::VariableInconnue(texte.to_string()))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue