Error Handling of public Set functions (#88)
What are we trying to achieve ? ++ Currently all the major public set functions is panic prone and does not handle and return error. This PR tries to address to all those functions. What major errors that could happen in these functions ? ++ All the functions which are being made as error safe is being tested against invalid sheet, row and column values, which could given by user What are the list of functions whose return type has been altered ? **base/src/model.rs** 1. update_cell_with_text 2. update_cell_with_bool 3. update_cell_with_number 4. set_user_input 5. get_cell_style_index 6. get_style_for_cell 7. set_cell_with_string ++> New functions being added 1. set_cell_with_boolean 2. set_cell_with_number **base/src/styles.rs** 1. get_style_with_quote_prefix 3. get_style_with_format 4. get_style_without_quote_prefix 5. get_style **base/src/worksheet.rs** 1. update_cell 2. set_cell_style 3. set_cell_with_formula 4. set_cell_with_number 6. set_cell_with_string 8. set_cell_with_boolean 9. set_cell_with_error 10. cell_clear_contents 11. cell_clear_contents_with_style ++> Above is the comprehensive list of all functions being ( most are public, some are private ) altered for better error handling. As a side effect of changing function signature, there are many changes being done to other functions ( mostly adding "?" to enable to error propagation further )
This commit is contained in:
@@ -9,7 +9,9 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
for row in 1..100 {
|
||||
for column in 1..100 {
|
||||
let value = row * column;
|
||||
model.set_user_input(0, row, column, format!("{}", value));
|
||||
model
|
||||
.set_user_input(0, row, column, format!("{}", value))
|
||||
.unwrap();
|
||||
}
|
||||
}
|
||||
// Adds a new sheet
|
||||
@@ -17,7 +19,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
// column 100 is CV
|
||||
let last_column = number_to_column(100).unwrap();
|
||||
let formula = format!("=SUM(Sheet1!A1:{}100)", last_column);
|
||||
model.set_user_input(1, 1, 1, formula);
|
||||
model.set_user_input(1, 1, 1, formula).unwrap();
|
||||
|
||||
// evaluates
|
||||
model.evaluate();
|
||||
|
||||
@@ -5,7 +5,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||
|
||||
// We are going to change styles in cell A1
|
||||
let (sheet, row, column) = (0, 1, 1);
|
||||
let mut style = model.get_style_for_cell(sheet, row, column);
|
||||
let mut style = model.get_style_for_cell(sheet, row, column)?;
|
||||
style.fill.fg_color = Some("#FF9011".to_string());
|
||||
style.font.b = true;
|
||||
style.font.color = Some("#E91E63".to_string());
|
||||
|
||||
Reference in New Issue
Block a user