calamine/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
//! Rust Excel/OpenDocument reader
//!
//! # Status
//!
//! **calamine** is a pure Rust library to read Excel and OpenDocument Spreadsheet files.
//!
//! Read both cell values and vba project.
//!
//! # Examples
//! ```
//! use calamine::{Reader, open_workbook, Xlsx, Data};
//!
//! // opens a new workbook
//! # let path = format!("{}/tests/issue3.xlsm", env!("CARGO_MANIFEST_DIR"));
//! let mut workbook: Xlsx<_> = open_workbook(path).expect("Cannot open file");
//!
//! // Read whole worksheet data and provide some statistics
//! if let Ok(range) = workbook.worksheet_range("Sheet1") {
//! let total_cells = range.get_size().0 * range.get_size().1;
//! let non_empty_cells: usize = range.used_cells().count();
//! println!("Found {} cells in 'Sheet1', including {} non empty cells",
//! total_cells, non_empty_cells);
//! // alternatively, we can manually filter rows
//! assert_eq!(non_empty_cells, range.rows()
//! .flat_map(|r| r.iter().filter(|&c| c != &Data::Empty)).count());
//! }
//!
//! // Check if the workbook has a vba project
//! if let Some(Ok(mut vba)) = workbook.vba_project() {
//! let vba = vba.to_mut();
//! let module1 = vba.get_module("Module 1").unwrap();
//! println!("Module 1 code:");
//! println!("{}", module1);
//! for r in vba.get_references() {
//! if r.is_missing() {
//! println!("Reference {} is broken or not accessible", r.name);
//! }
//! }
//! }
//!
//! // You can also get defined names definition (string representation only)
//! for name in workbook.defined_names() {
//! println!("name: {}, formula: {}", name.0, name.1);
//! }
//!
//! // Now get all formula!
//! let sheets = workbook.sheet_names().to_owned();
//! for s in sheets {
//! println!("found {} formula in '{}'",
//! workbook
//! .worksheet_formula(&s)
//! .expect("error while getting formula")
//! .rows().flat_map(|r| r.iter().filter(|f| !f.is_empty()))
//! .count(),
//! s);
//! }
//! ```
#![deny(missing_docs)]
#[macro_use]
mod utils;
mod auto;
mod cfb;
mod datatype;
mod formats;
mod ods;
mod xls;
mod xlsb;
mod xlsx;
mod de;
mod errors;
pub mod vba;
use serde::de::{Deserialize, DeserializeOwned, Deserializer};
use std::borrow::Cow;
use std::cmp::{max, min};
use std::fmt;
use std::fs::File;
use std::io::{BufReader, Read, Seek};
use std::ops::{Index, IndexMut};
use std::path::Path;
pub use crate::auto::{open_workbook_auto, open_workbook_auto_from_rs, Sheets};
pub use crate::datatype::{Data, DataRef, DataType, ExcelDateTime, ExcelDateTimeType};
pub use crate::de::{DeError, RangeDeserializer, RangeDeserializerBuilder, ToCellDeserializer};
pub use crate::errors::Error;
pub use crate::ods::{Ods, OdsError};
pub use crate::xls::{Xls, XlsError, XlsOptions};
pub use crate::xlsb::{Xlsb, XlsbError};
pub use crate::xlsx::{Xlsx, XlsxError};
use crate::vba::VbaProject;
// https://msdn.microsoft.com/en-us/library/office/ff839168.aspx
/// An enum to represent all different errors that can appear as
/// a value in a worksheet cell
#[derive(Debug, Clone, PartialEq)]
pub enum CellErrorType {
/// Division by 0 error
Div0,
/// Unavailable value error
NA,
/// Invalid name error
Name,
/// Null value error
Null,
/// Number error
Num,
/// Invalid cell reference error
Ref,
/// Value error
Value,
/// Getting data
GettingData,
}
impl fmt::Display for CellErrorType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
match *self {
CellErrorType::Div0 => write!(f, "#DIV/0!"),
CellErrorType::NA => write!(f, "#N/A"),
CellErrorType::Name => write!(f, "#NAME?"),
CellErrorType::Null => write!(f, "#NULL!"),
CellErrorType::Num => write!(f, "#NUM!"),
CellErrorType::Ref => write!(f, "#REF!"),
CellErrorType::Value => write!(f, "#VALUE!"),
CellErrorType::GettingData => write!(f, "#DATA!"),
}
}
}
/// Dimensions info
#[derive(Debug, Default, PartialEq, Eq, Hash, Ord, PartialOrd, Copy, Clone)]
pub struct Dimensions {
/// start: (row, col)
pub start: (u32, u32),
/// end: (row, col)
pub end: (u32, u32),
}
#[allow(clippy::len_without_is_empty)]
impl Dimensions {
/// create dimensions info with start position and end position
pub fn new(start: (u32, u32), end: (u32, u32)) -> Self {
Self { start, end }
}
/// check if a position is in it
pub fn contains(&self, row: u32, col: u32) -> bool {
row >= self.start.0 && row <= self.end.0 && col >= self.start.1 && col <= self.end.1
}
/// len
pub fn len(&self) -> u64 {
(self.end.0 - self.start.0 + 1) as u64 * (self.end.1 - self.start.1 + 1) as u64
}
}
/// Common file metadata
///
/// Depending on file type, some extra information may be stored
/// in the Reader implementations
#[derive(Debug, Default)]
pub struct Metadata {
sheets: Vec<Sheet>,
/// Map of sheet names/sheet path within zip archive
names: Vec<(String, String)>,
}
/// Type of sheet
///
/// Only Excel formats support this. Default value for ODS is SheetType::WorkSheet.
/// https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xls/b9ec509a-235d-424e-871d-f8e721106501
/// https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xlsb/1edadf56-b5cd-4109-abe7-76651bbe2722
/// [ECMA-376 Part 1](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/) 12.3.2, 12.3.7 and 12.3.24
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SheetType {
/// WorkSheet
WorkSheet,
/// DialogSheet
DialogSheet,
/// MacroSheet
MacroSheet,
/// ChartSheet
ChartSheet,
/// VBA module
Vba,
}
/// Type of visible sheet
///
/// http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-part1.html#__RefHeading__1417896_253892949
/// https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xls/b9ec509a-235d-424e-871d-f8e721106501
/// https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-xlsb/74cb1d22-b931-4bf8-997d-17517e2416e9
/// [ECMA-376 Part 1](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/) 18.18.68
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum SheetVisible {
/// Visible
Visible,
/// Hidden
Hidden,
/// The sheet is hidden and cannot be displayed using the user interface. It is supported only by Excel formats.
VeryHidden,
}
/// Metadata of sheet
#[derive(Debug, Clone, PartialEq)]
pub struct Sheet {
/// Name
pub name: String,
/// Type
/// Only Excel formats support this. Default value for ODS is SheetType::WorkSheet.
pub typ: SheetType,
/// Visible
pub visible: SheetVisible,
}
/// Row to use as header
/// By default, the first non-empty row is used as header
#[derive(Debug, Clone, Copy)]
#[non_exhaustive]
pub enum HeaderRow {
/// First non-empty row
FirstNonEmptyRow,
/// Index of the header row
Row(u32),
}
impl Default for HeaderRow {
fn default() -> Self {
HeaderRow::FirstNonEmptyRow
}
}
// FIXME `Reader` must only be seek `Seek` for `Xls::xls`. Because of the present API this limits
// the kinds of readers (other) data in formats can be read from.
/// A trait to share spreadsheets reader functions across different `FileType`s
pub trait Reader<RS>: Sized
where
RS: Read + Seek,
{
/// Error specific to file type
type Error: std::fmt::Debug + From<std::io::Error>;
/// Creates a new instance.
fn new(reader: RS) -> Result<Self, Self::Error>;
/// Set header row (i.e. first row to be read)
/// If `header_row` is `None`, the first non-empty row will be used as header row
fn with_header_row(&mut self, header_row: HeaderRow) -> &mut Self;
/// Gets `VbaProject`
fn vba_project(&mut self) -> Option<Result<Cow<'_, VbaProject>, Self::Error>>;
/// Initialize
fn metadata(&self) -> &Metadata;
/// Read worksheet data in corresponding worksheet path
fn worksheet_range(&mut self, name: &str) -> Result<Range<Data>, Self::Error>;
/// Fetch all worksheet data & paths
fn worksheets(&mut self) -> Vec<(String, Range<Data>)>;
/// Read worksheet formula in corresponding worksheet path
fn worksheet_formula(&mut self, _: &str) -> Result<Range<String>, Self::Error>;
/// Get all sheet names of this workbook, in workbook order
///
/// # Examples
/// ```
/// use calamine::{Xlsx, open_workbook, Reader};
///
/// # let path = format!("{}/tests/issue3.xlsm", env!("CARGO_MANIFEST_DIR"));
/// let mut workbook: Xlsx<_> = open_workbook(path).unwrap();
/// println!("Sheets: {:#?}", workbook.sheet_names());
/// ```
fn sheet_names(&self) -> Vec<String> {
self.metadata()
.sheets
.iter()
.map(|s| s.name.to_owned())
.collect()
}
/// Fetch all sheets metadata
fn sheets_metadata(&self) -> &[Sheet] {
&self.metadata().sheets
}
/// Get all defined names (Ranges names etc)
fn defined_names(&self) -> &[(String, String)] {
&self.metadata().names
}
/// Get the nth worksheet. Shortcut for getting the nth
/// sheet_name, then the corresponding worksheet.
fn worksheet_range_at(&mut self, n: usize) -> Option<Result<Range<Data>, Self::Error>> {
let name = self.sheet_names().get(n)?.to_string();
Some(self.worksheet_range(&name))
}
/// Get all pictures, tuple as (ext: String, data: Vec<u8>)
#[cfg(feature = "picture")]
fn pictures(&self) -> Option<Vec<(String, Vec<u8>)>>;
}
/// A trait to share spreadsheets reader functions across different `FileType`s
pub trait ReaderRef<RS>: Reader<RS>
where
RS: Read + Seek,
{
/// Get worksheet range where shared string values are only borrowed.
///
/// This is implemented only for [`calamine::Xlsb`] and [`calamine::Xlsx`], as Xls and Ods formats
/// do not support lazy iteration.
fn worksheet_range_ref<'a>(&'a mut self, name: &str)
-> Result<Range<DataRef<'a>>, Self::Error>;
/// Get the nth worksheet range where shared string values are only borrowed. Shortcut for getting the nth
/// sheet_name, then the corresponding worksheet.
///
/// This is implemented only for [`calamine::Xlsb`] and [`calamine::Xlsx`], as Xls and Ods formats
/// do not support lazy iteration.
fn worksheet_range_at_ref(&mut self, n: usize) -> Option<Result<Range<DataRef>, Self::Error>> {
let name = self.sheet_names().get(n)?.to_string();
Some(self.worksheet_range_ref(&name))
}
}
/// Convenient function to open a file with a BufReader<File>
pub fn open_workbook<R, P>(path: P) -> Result<R, R::Error>
where
R: Reader<BufReader<File>>,
P: AsRef<Path>,
{
let file = BufReader::new(File::open(path)?);
R::new(file)
}
/// Convenient function to open a file with a BufReader<File>
pub fn open_workbook_from_rs<R, RS>(rs: RS) -> Result<R, R::Error>
where
RS: Read + Seek,
R: Reader<RS>,
{
R::new(rs)
}
/// A trait to constrain cells
pub trait CellType: Default + Clone + PartialEq {}
impl CellType for Data {}
impl<'a> CellType for DataRef<'a> {}
impl CellType for String {}
impl CellType for usize {} // for tests
/// A struct to hold cell position and value
#[derive(Debug, Clone)]
pub struct Cell<T: CellType> {
/// Position for the cell (row, column)
pos: (u32, u32),
/// Value for the cell
val: T,
}
impl<T: CellType> Cell<T> {
/// Creates a new `Cell`
pub fn new(position: (u32, u32), value: T) -> Cell<T> {
Cell {
pos: position,
val: value,
}
}
/// Gets `Cell` position
pub fn get_position(&self) -> (u32, u32) {
self.pos
}
/// Gets `Cell` value
pub fn get_value(&self) -> &T {
&self.val
}
}
/// A struct which represents a squared selection of cells
#[derive(Debug, Default, Clone)]
pub struct Range<T> {
start: (u32, u32),
end: (u32, u32),
inner: Vec<T>,
}
impl<T: CellType> Range<T> {
/// Creates a new non-empty `Range`
///
/// When possible, prefer the more efficient `Range::from_sparse`
///
/// # Panics
///
/// Panics if start.0 > end.0 or start.1 > end.1
#[inline]
pub fn new(start: (u32, u32), end: (u32, u32)) -> Range<T> {
assert!(start <= end, "invalid range bounds");
Range {
start,
end,
inner: vec![T::default(); ((end.0 - start.0 + 1) * (end.1 - start.1 + 1)) as usize],
}
}
/// Creates a new empty range
#[inline]
pub fn empty() -> Range<T> {
Range {
start: (0, 0),
end: (0, 0),
inner: Vec::new(),
}
}
/// Get top left cell position (row, column)
#[inline]
pub fn start(&self) -> Option<(u32, u32)> {
if self.is_empty() {
None
} else {
Some(self.start)
}
}
/// Get bottom right cell position (row, column)
#[inline]
pub fn end(&self) -> Option<(u32, u32)> {
if self.is_empty() {
None
} else {
Some(self.end)
}
}
/// Get column width
#[inline]
pub fn width(&self) -> usize {
if self.is_empty() {
0
} else {
(self.end.1 - self.start.1 + 1) as usize
}
}
/// Get column height
#[inline]
pub fn height(&self) -> usize {
if self.is_empty() {
0
} else {
(self.end.0 - self.start.0 + 1) as usize
}
}
/// Get size in (height, width) format
#[inline]
pub fn get_size(&self) -> (usize, usize) {
(self.height(), self.width())
}
/// Is range empty
#[inline]
pub fn is_empty(&self) -> bool {
self.inner.is_empty()
}
/// Creates a `Range` from a coo sparse vector of `Cell`s.
///
/// Coordinate list (COO) is the natural way cells are stored
/// Inner size is defined only by non empty.
///
/// cells: `Vec` of non empty `Cell`s, sorted by row
///
/// # Panics
///
/// panics when a `Cell` row is lower than the first `Cell` row or
/// bigger than the last `Cell` row.
pub fn from_sparse(cells: Vec<Cell<T>>) -> Range<T> {
if cells.is_empty() {
Range::empty()
} else {
// search bounds
let row_start = cells.first().unwrap().pos.0;
let row_end = cells.last().unwrap().pos.0;
let mut col_start = u32::MAX;
let mut col_end = 0;
for c in cells.iter().map(|c| c.pos.1) {
if c < col_start {
col_start = c;
}
if c > col_end {
col_end = c
}
}
let cols = (col_end - col_start + 1) as usize;
let rows = (row_end - row_start + 1) as usize;
let len = cols.saturating_mul(rows);
let mut v = vec![T::default(); len];
v.shrink_to_fit();
for c in cells {
let row = (c.pos.0 - row_start) as usize;
let col = (c.pos.1 - col_start) as usize;
let idx = row.saturating_mul(cols) + col;
if let Some(v) = v.get_mut(idx) {
*v = c.val;
}
}
Range {
start: (row_start, col_start),
end: (row_end, col_end),
inner: v,
}
}
}
/// Set inner value from absolute position
///
/// # Remarks
///
/// Will try to resize inner structure if the value is out of bounds.
/// For relative positions, use Index trait
///
/// Try to avoid this method as much as possible and prefer initializing
/// the `Range` with `from_sparse` constructor.
///
/// # Panics
///
/// If absolute_position > Cell start
///
/// # Examples
/// ```
/// use calamine::{Range, Data};
///
/// let mut range = Range::new((0, 0), (5, 2));
/// assert_eq!(range.get_value((2, 1)), Some(&Data::Empty));
/// range.set_value((2, 1), Data::Float(1.0));
/// assert_eq!(range.get_value((2, 1)), Some(&Data::Float(1.0)));
/// ```
pub fn set_value(&mut self, absolute_position: (u32, u32), value: T) {
assert!(
self.start.0 <= absolute_position.0 && self.start.1 <= absolute_position.1,
"absolute_position out of bounds"
);
// check if we need to change range dimension (strangely happens sometimes ...)
match (
self.end.0 < absolute_position.0,
self.end.1 < absolute_position.1,
) {
(false, false) => (), // regular case, position within bounds
(true, false) => {
let len = (absolute_position.0 - self.end.0 + 1) as usize * self.width();
self.inner.extend_from_slice(&vec![T::default(); len]);
self.end.0 = absolute_position.0;
}
// missing some rows
(e, true) => {
let height = if e {
(absolute_position.0 - self.start.0 + 1) as usize
} else {
self.height()
};
let width = (absolute_position.1 - self.start.1 + 1) as usize;
let old_width = self.width();
let mut data = Vec::with_capacity(width * height);
let empty = vec![T::default(); width - old_width];
for sce in self.inner.chunks(old_width) {
data.extend_from_slice(sce);
data.extend_from_slice(&empty);
}
data.extend_from_slice(&vec![T::default(); width * (height - self.height())]);
if e {
self.end = absolute_position
} else {
self.end.1 = absolute_position.1
}
self.inner = data;
} // missing some columns
}
let pos = (
absolute_position.0 - self.start.0,
absolute_position.1 - self.start.1,
);
let idx = pos.0 as usize * self.width() + pos.1 as usize;
self.inner[idx] = value;
}
/// Get cell value from **absolute position**.
///
/// If the `absolute_position` is out of range, returns `None`, else returns the cell value.
/// The coordinate format is (row, column).
///
/// # Warnings
///
/// For relative positions, use Index trait
///
/// # Remarks
///
/// Absolute position is in *sheet* referential while relative position is in *range* referential.
///
/// For instance if we consider range *C2:H38*:
/// - `(0, 0)` absolute is "A1" and thus this function returns `None`
/// - `(0, 0)` relative is "C2" and is returned by the `Index` trait (i.e `my_range[(0, 0)]`)
///
/// # Examples
/// ```
/// use calamine::{Range, Data};
///
/// let range: Range<usize> = Range::new((1, 0), (5, 2));
/// assert_eq!(range.get_value((0, 0)), None);
/// assert_eq!(range[(0, 0)], 0);
/// ```
pub fn get_value(&self, absolute_position: (u32, u32)) -> Option<&T> {
let p = absolute_position;
if p.0 >= self.start.0 && p.0 <= self.end.0 && p.1 >= self.start.1 && p.1 <= self.end.1 {
return self.get((
(absolute_position.0 - self.start.0) as usize,
(absolute_position.1 - self.start.1) as usize,
));
}
None
}
/// Get cell value from **relative position**.
///
/// Unlike using the Index trait, this will not panic but rather yield `None` if out of range.
/// Otherwise, returns the cell value. The coordinate format is (row, column).
///
pub fn get(&self, relative_position: (usize, usize)) -> Option<&T> {
let (row, col) = relative_position;
let (height, width) = self.get_size();
if col >= width || row >= height {
None
} else {
self.inner.get(row * width + col)
}
}
/// Get an iterator over inner rows
///
/// # Examples
/// ```
/// use calamine::{Range, Data};
///
/// let range: Range<Data> = Range::new((0, 0), (5, 2));
/// // with rows item row: &[Data]
/// assert_eq!(range.rows().map(|r| r.len()).sum::<usize>(), 18);
/// ```
pub fn rows(&self) -> Rows<'_, T> {
if self.inner.is_empty() {
Rows { inner: None }
} else {
let width = self.width();
Rows {
inner: Some(self.inner.chunks(width)),
}
}
}
/// Get an iterator over used cells only
pub fn used_cells(&self) -> UsedCells<'_, T> {
UsedCells {
width: self.width(),
inner: self.inner.iter().enumerate(),
}
}
/// Get an iterator over all cells in this range
pub fn cells(&self) -> Cells<'_, T> {
Cells {
width: self.width(),
inner: self.inner.iter().enumerate(),
}
}
/// Build a `RangeDeserializer` from this configuration.
///
/// # Example
///
/// ```
/// # use calamine::{Reader, Error, open_workbook, Xlsx, RangeDeserializerBuilder};
/// fn main() -> Result<(), Error> {
/// let path = format!("{}/tests/temperature.xlsx", env!("CARGO_MANIFEST_DIR"));
/// let mut workbook: Xlsx<_> = open_workbook(path)?;
/// let mut sheet = workbook.worksheet_range("Sheet1")?;
/// let mut iter = sheet.deserialize()?;
///
/// if let Some(result) = iter.next() {
/// let (label, value): (String, f64) = result?;
/// assert_eq!(label, "celsius");
/// assert_eq!(value, 22.2222);
///
/// Ok(())
/// } else {
/// return Err(From::from("expected at least one record but got none"));
/// }
/// }
/// ```
pub fn deserialize<'a, D>(&'a self) -> Result<RangeDeserializer<'a, T, D>, DeError>
where
T: ToCellDeserializer<'a>,
D: DeserializeOwned,
{
RangeDeserializerBuilder::new().from_range(self)
}
/// Build a new `Range` out of this range
///
/// # Remarks
///
/// Cells within this range will be cloned, cells out of it will be set to Empty
///
/// # Example
///
/// ```
/// # use calamine::{Range, Data};
/// let mut a = Range::new((1, 1), (3, 3));
/// a.set_value((1, 1), Data::Bool(true));
/// a.set_value((2, 2), Data::Bool(true));
///
/// let b = a.range((2, 2), (5, 5));
/// assert_eq!(b.get_value((2, 2)), Some(&Data::Bool(true)));
/// assert_eq!(b.get_value((3, 3)), Some(&Data::Empty));
///
/// let c = a.range((0, 0), (2, 2));
/// assert_eq!(c.get_value((0, 0)), Some(&Data::Empty));
/// assert_eq!(c.get_value((1, 1)), Some(&Data::Bool(true)));
/// assert_eq!(c.get_value((2, 2)), Some(&Data::Bool(true)));
/// ```
pub fn range(&self, start: (u32, u32), end: (u32, u32)) -> Range<T> {
let mut other = Range::new(start, end);
let (self_start_row, self_start_col) = self.start;
let (self_end_row, self_end_col) = self.end;
let (other_start_row, other_start_col) = other.start;
let (other_end_row, other_end_col) = other.end;
// copy data from self to other
let start_row = max(self_start_row, other_start_row);
let end_row = min(self_end_row, other_end_row);
let start_col = max(self_start_col, other_start_col);
let end_col = min(self_end_col, other_end_col);
if start_row > end_row || start_col > end_col {
return other;
}
let self_width = self.width();
let other_width = other.width();
// change referential
//
// we want to copy range: start_row..(end_row + 1)
// In self referential it is (start_row - self_start_row)..(end_row + 1 - self_start_row)
let self_row_start = (start_row - self_start_row) as usize;
let self_row_end = (end_row + 1 - self_start_row) as usize;
let self_col_start = (start_col - self_start_col) as usize;
let self_col_end = (end_col + 1 - self_start_col) as usize;
let other_row_start = (start_row - other_start_row) as usize;
let other_row_end = (end_row + 1 - other_start_row) as usize;
let other_col_start = (start_col - other_start_col) as usize;
let other_col_end = (end_col + 1 - other_start_col) as usize;
{
let self_rows = self
.inner
.chunks(self_width)
.take(self_row_end)
.skip(self_row_start);
let other_rows = other
.inner
.chunks_mut(other_width)
.take(other_row_end)
.skip(other_row_start);
for (self_row, other_row) in self_rows.zip(other_rows) {
let self_cols = &self_row[self_col_start..self_col_end];
let other_cols = &mut other_row[other_col_start..other_col_end];
other_cols.clone_from_slice(self_cols);
}
}
other
}
}
impl<T: CellType + fmt::Display> Range<T> {
/// Get range headers.
///
/// # Examples
/// ```
/// use calamine::{Range, Data};
///
/// let mut range = Range::new((0, 0), (5, 2));
/// range.set_value((0, 0), Data::String(String::from("a")));
/// range.set_value((0, 1), Data::Int(1));
/// range.set_value((0, 2), Data::Bool(true));
/// let headers = range.headers();
/// assert_eq!(
/// headers,
/// Some(vec![
/// String::from("a"),
/// String::from("1"),
/// String::from("true")
/// ])
/// );
/// ```
pub fn headers(&self) -> Option<Vec<String>> {
self.rows()
.next()
.map(|row| row.iter().map(ToString::to_string).collect())
}
}
impl<T: CellType> Index<usize> for Range<T> {
type Output = [T];
fn index(&self, index: usize) -> &[T] {
let width = self.width();
&self.inner[index * width..(index + 1) * width]
}
}
impl<T: CellType> Index<(usize, usize)> for Range<T> {
type Output = T;
fn index(&self, index: (usize, usize)) -> &T {
let (height, width) = self.get_size();
assert!(index.1 < width && index.0 < height, "index out of bounds");
&self.inner[index.0 * width + index.1]
}
}
impl<T: CellType> IndexMut<usize> for Range<T> {
fn index_mut(&mut self, index: usize) -> &mut [T] {
let width = self.width();
&mut self.inner[index * width..(index + 1) * width]
}
}
impl<T: CellType> IndexMut<(usize, usize)> for Range<T> {
fn index_mut(&mut self, index: (usize, usize)) -> &mut T {
let (height, width) = self.get_size();
assert!(index.1 < width && index.0 < height, "index out of bounds");
&mut self.inner[index.0 * width + index.1]
}
}
/// A struct to iterate over all cells
#[derive(Clone, Debug)]
pub struct Cells<'a, T: CellType> {
width: usize,
inner: std::iter::Enumerate<std::slice::Iter<'a, T>>,
}
impl<'a, T: 'a + CellType> Iterator for Cells<'a, T> {
type Item = (usize, usize, &'a T);
fn next(&mut self) -> Option<Self::Item> {
self.inner.next().map(|(i, v)| {
let row = i / self.width;
let col = i % self.width;
(row, col, v)
})
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner.size_hint()
}
}
impl<'a, T: 'a + CellType> DoubleEndedIterator for Cells<'a, T> {
fn next_back(&mut self) -> Option<Self::Item> {
self.inner.next_back().map(|(i, v)| {
let row = i / self.width;
let col = i % self.width;
(row, col, v)
})
}
}
impl<'a, T: 'a + CellType> ExactSizeIterator for Cells<'a, T> {}
/// A struct to iterate over used cells
#[derive(Clone, Debug)]
pub struct UsedCells<'a, T: CellType> {
width: usize,
inner: std::iter::Enumerate<std::slice::Iter<'a, T>>,
}
impl<'a, T: 'a + CellType> Iterator for UsedCells<'a, T> {
type Item = (usize, usize, &'a T);
fn next(&mut self) -> Option<Self::Item> {
self.inner
.by_ref()
.find(|&(_, v)| v != &T::default())
.map(|(i, v)| {
let row = i / self.width;
let col = i % self.width;
(row, col, v)
})
}
fn size_hint(&self) -> (usize, Option<usize>) {
let (_, up) = self.inner.size_hint();
(0, up)
}
}
impl<'a, T: 'a + CellType> DoubleEndedIterator for UsedCells<'a, T> {
fn next_back(&mut self) -> Option<Self::Item> {
self.inner
.by_ref()
.rfind(|&(_, v)| v != &T::default())
.map(|(i, v)| {
let row = i / self.width;
let col = i % self.width;
(row, col, v)
})
}
}
/// An iterator to read `Range` struct row by row
#[derive(Clone, Debug)]
pub struct Rows<'a, T: CellType> {
inner: Option<std::slice::Chunks<'a, T>>,
}
impl<'a, T: 'a + CellType> Iterator for Rows<'a, T> {
type Item = &'a [T];
fn next(&mut self) -> Option<Self::Item> {
self.inner.as_mut().and_then(std::iter::Iterator::next)
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.inner
.as_ref()
.map_or((0, Some(0)), std::iter::Iterator::size_hint)
}
}
impl<'a, T: 'a + CellType> DoubleEndedIterator for Rows<'a, T> {
fn next_back(&mut self) -> Option<Self::Item> {
self.inner
.as_mut()
.and_then(std::iter::DoubleEndedIterator::next_back)
}
}
impl<'a, T: 'a + CellType> ExactSizeIterator for Rows<'a, T> {}
/// Struct with the key elements of a table
pub struct Table<T> {
pub(crate) name: String,
pub(crate) sheet_name: String,
pub(crate) columns: Vec<String>,
pub(crate) data: Range<T>,
}
impl<T> Table<T> {
/// Get the name of the table
pub fn name(&self) -> &str {
&self.name
}
/// Get the name of the sheet that table exists within
pub fn sheet_name(&self) -> &str {
&self.sheet_name
}
/// Get the names of the columns in the order they occur
pub fn columns(&self) -> &[String] {
&self.columns
}
/// Get a range representing the data from the table (excludes column headers)
pub fn data(&self) -> &Range<T> {
&self.data
}
}
impl<T: CellType> From<Table<T>> for Range<T> {
fn from(table: Table<T>) -> Range<T> {
table.data
}
}
/// A helper function to deserialize cell values as `i64`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_i64`] method to the cell value, and returns
/// `Ok(Some(value_as_i64))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
pub fn deserialize_as_i64_or_none<'de, D>(deserializer: D) -> Result<Option<i64>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_i64())
}
/// A helper function to deserialize cell values as `i64`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_i64`] method to the cell value, and returns
/// `Ok(Ok(value_as_i64))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
pub fn deserialize_as_i64_or_string<'de, D>(
deserializer: D,
) -> Result<Result<i64, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_i64().ok_or_else(|| data.to_string()))
}
/// A helper function to deserialize cell values as `f64`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_f64`] method to the cell value, and returns
/// `Ok(Some(value_as_f64))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
pub fn deserialize_as_f64_or_none<'de, D>(deserializer: D) -> Result<Option<f64>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_f64())
}
/// A helper function to deserialize cell values as `f64`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_f64`] method to the cell value, and returns
/// `Ok(Ok(value_as_f64))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
pub fn deserialize_as_f64_or_string<'de, D>(
deserializer: D,
) -> Result<Result<f64, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_f64().ok_or_else(|| data.to_string()))
}
/// A helper function to deserialize cell values as `chrono::NaiveDate`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_date`] method to the cell value, and returns
/// `Ok(Some(value_as_date))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_date_or_none<'de, D>(
deserializer: D,
) -> Result<Option<chrono::NaiveDate>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_date())
}
/// A helper function to deserialize cell values as `chrono::NaiveDate`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_date`] method to the cell value, and returns
/// `Ok(Ok(value_as_date))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_date_or_string<'de, D>(
deserializer: D,
) -> Result<Result<chrono::NaiveDate, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_date().ok_or_else(|| data.to_string()))
}
/// A helper function to deserialize cell values as `chrono::NaiveTime`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_time`] method to the cell value, and returns
/// `Ok(Some(value_as_time))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_time_or_none<'de, D>(
deserializer: D,
) -> Result<Option<chrono::NaiveTime>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_time())
}
/// A helper function to deserialize cell values as `chrono::NaiveTime`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_time`] method to the cell value, and returns
/// `Ok(Ok(value_as_time))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_time_or_string<'de, D>(
deserializer: D,
) -> Result<Result<chrono::NaiveTime, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_time().ok_or_else(|| data.to_string()))
}
/// A helper function to deserialize cell values as `chrono::Duration`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_duration`] method to the cell value, and returns
/// `Ok(Some(value_as_duration))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_duration_or_none<'de, D>(
deserializer: D,
) -> Result<Option<chrono::Duration>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_duration())
}
/// A helper function to deserialize cell values as `chrono::Duration`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_duration`] method to the cell value, and returns
/// `Ok(Ok(value_as_duration))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_duration_or_string<'de, D>(
deserializer: D,
) -> Result<Result<chrono::Duration, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_duration().ok_or_else(|| data.to_string()))
}
/// A helper function to deserialize cell values as `chrono::NaiveDateTime`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_datetime`] method to the cell value, and returns
/// `Ok(Some(value_as_datetime))` if successful or `Ok(None)` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_datetime_or_none<'de, D>(
deserializer: D,
) -> Result<Option<chrono::NaiveDateTime>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_datetime())
}
/// A helper function to deserialize cell values as `chrono::NaiveDateTime`,
/// useful when cells may also contain invalid values (i.e. strings).
/// It applies the [`as_datetime`] method to the cell value, and returns
/// `Ok(Ok(value_as_datetime))` if successful or `Ok(Err(value_to_string))` if unsuccessful,
/// therefore never failing. This function is intended to be used with Serde's
/// [`deserialize_with`](https://serde.rs/field-attrs.html) field attribute.
#[cfg(feature = "dates")]
pub fn deserialize_as_datetime_or_string<'de, D>(
deserializer: D,
) -> Result<Result<chrono::NaiveDateTime, String>, D::Error>
where
D: Deserializer<'de>,
{
let data = Data::deserialize(deserializer)?;
Ok(data.as_datetime().ok_or_else(|| data.to_string()))
}