visi_core/core/engine/sheet/
edit.rs1use super::super::column::{ColumnPosition, DataColumn};
8use super::{CellRef, Direction, ResultData, Sheet, TextCellRef};
9
10pub fn get_word_boundaries_from_str(text: &str, char_offset: usize) -> (usize, usize) {
19 if text.is_empty() {
20 return (0, 0);
21 }
22
23 let chars: Vec<char> = text.chars().collect();
24 let len = chars.len();
25 let offset = char_offset.min(len);
26
27 let is_word_char = |c: char| c.is_alphanumeric() || c == '_';
28
29 let (on_idx, on_c) = if offset < len {
30 if chars[offset].is_whitespace() && offset > 0 && is_word_char(chars[offset - 1]) {
31 (offset - 1, chars[offset - 1])
32 } else {
33 (offset, chars[offset])
34 }
35 } else if offset > 0 {
36 (offset - 1, chars[offset - 1])
37 } else {
38 return (0, 0);
39 };
40
41 if on_c.is_whitespace() {
42 let mut start = on_idx;
43 while start > 0 && chars[start - 1].is_whitespace() {
44 start -= 1;
45 }
46 let mut end = on_idx + 1;
47 while end < len && chars[end].is_whitespace() {
48 end += 1;
49 }
50 return (start, end);
51 }
52
53 if is_word_char(on_c) {
54 let mut start = on_idx;
55 while start > 0 && is_word_char(chars[start - 1]) {
56 start -= 1;
57 }
58 let mut end = on_idx + 1;
59 while end < len && is_word_char(chars[end]) {
60 end += 1;
61 }
62 return (start, end);
63 }
64
65 let mut start = on_idx;
66 while start > 0 && !is_word_char(chars[start - 1]) && !chars[start - 1].is_whitespace() {
67 start -= 1;
68 }
69 let mut end = on_idx + 1;
70 while end < len && !is_word_char(chars[end]) && !chars[end].is_whitespace() {
71 end += 1;
72 }
73 (start, end)
74}
75impl Sheet {
76 pub fn get_result_data(&self, cell: &CellRef) -> ResultData {
86 let col = self.columns.get(cell.col);
87 if let Some(col) = col {
88 col.data.get(cell.row).unwrap_or(ResultData::None)
89 } else {
90 ResultData::None
91 }
92 }
93
94 pub(super) fn inherited_date_format(&self, ast: &crate::core::parser::Expr) -> Option<String> {
108 use crate::core::parser::{Expr, Op};
109 match ast {
110 Expr::CellRef {
111 sheet, row, col, ..
112 } if sheet.is_none() => self
113 .get_cell_style(*row, *col)
114 .and_then(|s| s.num_format.clone())
115 .filter(|code| crate::core::date::is_date_code(code)),
116 Expr::BinaryOp {
117 op: Op::Add | Op::Sub,
118 left,
119 right,
120 } => {
121 let left_fmt = self.inherited_date_format(left);
122 let right_fmt = self.inherited_date_format(right);
123 match (left_fmt, right_fmt) {
124 (Some(fmt), None) | (None, Some(fmt)) => Some(fmt),
127 _ => None,
129 }
130 }
131 _ => None,
132 }
133 }
134
135 pub fn get_display_string(&self, cell: &CellRef) -> String {
144 let value = self.get_result_data(cell);
145 let Some(code) = self
146 .get_cell_style(cell.row, cell.col)
147 .and_then(|s| s.num_format.as_deref())
148 else {
149 return value.to_string();
150 };
151 if !crate::core::date::is_date_code(code) {
152 return value.to_string();
153 }
154 let serial = match value {
156 ResultData::Float(f) => f,
157 ResultData::Integer(i) => i as f64,
158 _ => return value.to_string(),
159 };
160 if serial < 0.0 {
161 return value.to_string();
162 }
163 crate::core::date::render_date_code(
164 crate::core::date::excel_serial_to_date(serial),
165 code,
166 crate::core::date::StringCase::Title,
167 )
168 }
169
170 pub fn set_cell_src(&mut self, row: usize, col: usize, src: String) {
175 let table_clone = self.clone();
176 if let Some(column) = self.columns.get_mut(col)
177 && row < column.src.len()
178 {
179 column.src[row] = src.clone();
180 let compiled = crate::core::parser::compile_formula(&src, &[table_clone]);
181 column.compiled_src[row] = compiled;
182 column.mark_dirty(row);
183
184 self.uncommitted_actions
185 .push(crate::core::SheetAction::SetCellSrc {
186 sheet_name: self.name.clone(),
187 col,
188 row,
189 src,
190 });
191 }
192 }
193
194 pub fn insert(&mut self, pos: TextCellRef, input: &str) {
201 let TextCellRef {
202 row,
203 col,
204 char_offset,
205 } = pos;
206 let table_clone = self.clone();
207 let existing_col = self.columns.get_mut(col);
208 match existing_col {
209 Some(existing_column) => {
210 existing_column.insert(ColumnPosition { row, char_offset }, input);
211 let src = existing_column.src[row].clone();
212 let compiled = crate::core::parser::compile_formula(&src, &[table_clone]);
213 existing_column.compiled_src[row] = compiled;
214 existing_column.mark_dirty(row);
215 self.uncommitted_actions
216 .push(crate::core::SheetAction::SetCellSrc {
217 sheet_name: self.name.clone(),
218 col,
219 row,
220 src,
221 });
222 }
223 None => {
224 println!("Warning: column {} does not exist", col)
225 }
226 }
227 }
228
229 pub fn delete_one_before(&mut self, pos: TextCellRef) {
231 let char_offset = pos.char_offset;
232 let start = if char_offset > 0 {
233 TextCellRef {
234 row: pos.row,
235 col: pos.col,
236 char_offset: char_offset - 1,
237 }
238 } else {
239 pos.clone()
240 };
241 let end = pos;
242 self.delete(start, end);
243 }
244
245 pub fn delete(&mut self, start: TextCellRef, end: TextCellRef) {
252 if start.col > end.col || (start.col == end.col && start.row > end.row) {
254 return;
255 }
256 let table_clone = self.clone();
257 if start.col == end.col {
259 let start_index = start.row;
260 let end_index = end.row;
261
262 if let Some(column) = self.columns.get_mut(start.col) {
263 if start.row == end.row && start_index < column.src.len() {
265 let src = &mut column.src[start_index];
266 let end_offset = std::cmp::min(end.char_offset, src.len());
267 if start.char_offset < end_offset {
268 src.replace_range(start.char_offset..end_offset, "");
269 column.dirty_indices.push(start_index);
270 let updated_src = src.clone();
271 let compiled =
272 crate::core::parser::compile_formula(&updated_src, &[table_clone]);
273 column.compiled_src[start_index] = compiled;
274 }
275 }
276 else if start_index < column.len() {
278 if end_index >= start_index {
280 column.drain_rows(start_index..=end_index);
281 }
282 }
283 }
284 } else {
285 for col in start.col..=end.col {
287 if let Some(column) = self.columns.get_mut(col) {
288 let start_index = if col == start.col { col } else { 0 };
289
290 let end_index = if col == end.col {
291 col
292 } else {
293 column.src.len() - 1
294 };
295
296 if start_index < column.len() {
297 if end_index >= start_index {
299 column.drain_rows(start_index..=end_index);
300 }
301 }
302 }
303 }
304 }
305 }
306
307 pub fn extend(&mut self, direction: Direction) {
312 if self.columns.is_empty() {
313 return;
314 }
315 let row_count = self.columns[0].src.len();
316 const MAX_COLS: usize = 26;
317 match direction {
318 Direction::Up => {
319 for column in &mut self.columns {
320 column.insert_row(0);
321 }
322 self.uncommitted_actions
323 .push(crate::core::SheetAction::InsertRow {
324 sheet_name: self.name.clone(),
325 index: 0,
326 });
327 }
328 Direction::Down => {
329 for column in &mut self.columns {
330 column.push_row();
331 }
332 self.uncommitted_actions
333 .push(crate::core::SheetAction::InsertRow {
334 sheet_name: self.name.clone(),
335 index: row_count,
336 });
337 }
338 Direction::Left => {
339 if self.columns.len() < MAX_COLS {
340 self.columns.insert(0, DataColumn::new(row_count));
341 self.uncommitted_actions
342 .push(crate::core::SheetAction::InsertCol {
343 sheet_name: self.name.clone(),
344 index: 0,
345 });
346 }
347 }
348 Direction::Right => {
349 if self.columns.len() < MAX_COLS {
350 self.columns.push(DataColumn::new(row_count));
351 self.uncommitted_actions
352 .push(crate::core::SheetAction::InsertCol {
353 sheet_name: self.name.clone(),
354 index: self.columns.len() - 1,
355 });
356 }
357 }
358 Direction::None => {}
359 }
360 }
361
362 pub fn ensure_capacity(&mut self, target_row: usize, target_col: usize) {
364 let current_rows = self.row_count();
365 let needed_rows = target_row + 1;
366 let final_rows = current_rows.max(needed_rows);
367
368 while self.columns.len() <= target_col {
369 let col_idx = self.columns.len();
370 let mut col = DataColumn::new(final_rows);
371 col.name = crate::core::parser::col_idx_to_letters(col_idx);
372 self.columns.push(col);
373 }
374
375 if final_rows > current_rows {
376 for col in &mut self.columns {
377 col.resize_rows(final_rows);
378 }
379 }
380 }
381
382 pub fn get_cell_style(&self, row: usize, col: usize) -> Option<&crate::core::CellStyle> {
387 self.columns
388 .get(col)
389 .and_then(|column| column.styles.get(row))
390 .and_then(|opt| opt.as_ref())
391 }
392
393 pub fn set_cell_style(&mut self, row: usize, col: usize, style: crate::core::CellStyle) {
396 self.ensure_capacity(row, col);
397 if let Some(column) = self.columns.get_mut(col)
398 && row < column.styles.len()
399 {
400 if style.is_empty() {
401 column.styles[row] = None;
402 } else {
403 column.styles[row] = Some(style);
404 }
405 }
406 }
407
408 pub fn update_cell_style<F>(&mut self, row: usize, col: usize, f: F)
413 where
414 F: FnOnce(&mut crate::core::CellStyle),
415 {
416 self.ensure_capacity(row, col);
417 if let Some(column) = self.columns.get_mut(col)
418 && row < column.styles.len()
419 {
420 let mut current = column.styles[row].clone().unwrap_or_default();
421 f(&mut current);
422 if current.is_empty() {
423 column.styles[row] = None;
424 } else {
425 column.styles[row] = Some(current);
426 }
427 }
428 }
429
430 pub fn clear_cell_style(&mut self, row: usize, col: usize) {
432 if let Some(column) = self.columns.get_mut(col)
433 && row < column.styles.len()
434 {
435 column.styles[row] = None;
436 }
437 }
438
439 pub fn insert_row(&mut self, index: usize) {
442 let row_count = self.row_count();
443 if index >= row_count {
444 for column in &mut self.columns {
446 column.push_row();
447 }
448 self.uncommitted_actions
449 .push(crate::core::SheetAction::InsertRow {
450 sheet_name: self.name.clone(),
451 index: row_count,
452 });
453 } else {
454 for column in &mut self.columns {
456 column.insert_row(index);
457 }
458 self.uncommitted_actions
459 .push(crate::core::SheetAction::InsertRow {
460 sheet_name: self.name.clone(),
461 index,
462 });
463 }
464 }
465
466 pub fn delete_row(&mut self, index: usize) {
473 let row_count = self.row_count();
474 if index < row_count {
475 for column in &mut self.columns {
476 column.remove_row(index);
477 }
478 self.uncommitted_actions
479 .push(crate::core::SheetAction::DeleteRow {
480 sheet_name: self.name.clone(),
481 index,
482 });
483 self.mark_all_dirty();
484 }
485 }
486
487 pub fn delete_col(&mut self, index: usize) {
491 if index < self.columns.len() {
492 self.columns.remove(index);
493 self.uncommitted_actions
494 .push(crate::core::SheetAction::DeleteCol {
495 sheet_name: self.name.clone(),
496 index,
497 });
498 self.mark_all_dirty();
499 }
500 }
501
502 pub fn insert_col(&mut self, index: usize) {
505 let row_count = self.row_count();
506 let new_col = DataColumn::new(row_count);
507 let col_count = self.columns.len();
508 if index >= col_count {
509 self.columns.push(new_col);
510 self.uncommitted_actions
511 .push(crate::core::SheetAction::InsertCol {
512 sheet_name: self.name.clone(),
513 index: col_count,
514 });
515 } else {
516 self.columns.insert(index, new_col);
517 self.uncommitted_actions
518 .push(crate::core::SheetAction::InsertCol {
519 sheet_name: self.name.clone(),
520 index,
521 });
522 }
523 self.mark_all_dirty();
524 }
525
526 pub fn columns(&self) -> &[DataColumn] {
533 &self.columns
534 }
535
536 pub fn row_count(&self) -> usize {
539 self.columns.first().map(|c| c.src.len()).unwrap_or(0)
540 }
541
542 pub fn col_count(&self) -> usize {
544 self.columns.len()
545 }
546}