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
//! Ratio's matrix data library

use std::marker::PhantomData;
use std::ops::Range;

use snafu::prelude::*;
mod traits;
pub use traits::*;

/// Matrix dimensions don't agree. Values ({n_values}) modulo columns ({n_cols}) should be 0.
#[derive(Clone, Debug, Snafu)]
pub struct MatrixDimensionError {
    /// Number of values.
    n_values: usize,
    /// Invalid number of columns in a row.
    n_cols: usize,
}

/// Matrix view out of bounds.
#[derive(Clone, Debug, Snafu)]
pub struct MatrixViewOutOfBoundsError {
    /// Input data dimensions.
    dimensions: MatrixRange,
    /// Invalid range.
    range: MatrixRange,
}

/// Matrix cell access out of bounds.
#[derive(Clone, Debug, Snafu)]
pub struct CoordinatesOutOfBoundsError {
    /// Matrix data area.
    range: MatrixRange,
    /// Attempted access coordinates.
    coordinates: MatrixCoordinates,
}

/// Two-dimensional matrix.
#[derive(Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct Matrix<C> {
    /// Matrix values as a single vector.
    values: Vec<C>,
    /// Matrix dimensions.
    dimensions: MatrixDimensions,
}
impl<C> Matrix<C> {
    /// Get the vector index based on a set of coordinates.
    pub fn index<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<usize, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        if self.range().contains(&x) {
            Ok(x.row * self.n_cols() + x.col)
        } else {
            Err(CoordinatesOutOfBoundsError {
                coordinates: x,
                range: self.range(),
            })
        }
    }
    /// Slice this matrix to these rows and columns.
    pub fn slice(&self, range: MatrixRange) -> Result<MatrixSlice<'_, C>, MatrixSliceError> {
        if self.range().contains(&range) {
            Ok(MatrixSlice {
                values: &self.values,
                dimensions: self.dimensions,
                range,
            })
        } else {
            MatrixViewOutOfBoundsSnafu {
                range,
                dimensions: self.dimensions,
            }
            .fail()
            .context(SliceRangeOutOfBoundsSnafu)
        }
    }
}
impl<C> Matrix2D<C> for Matrix<C> {
    fn new(values: Vec<C>, n_cols: usize) -> Result<Self, MatrixDimensionError> {
        let n_values = values.len();
        let dimensions = MatrixDimensions::new(n_values / n_cols, n_cols);
        if dimensions.len() == n_values {
            Ok(Self { values, dimensions })
        } else {
            return MatrixDimensionSnafu { n_values, n_cols }.fail();
        }
    }
}
impl<C> MatrixRef<C> for Matrix<C> {
    fn get<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<&C, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        let index = self.index(x)?;
        self.values.get(index).context(CoordinatesOutOfBoundsSnafu {
            range: self.range(),
            coordinates: x,
        })
    }
}
impl<C> MatrixMut<C> for Matrix<C> {
    fn set<T: Into<MatrixCoordinates>>(
        &mut self,
        coordinates: T,
        value: C,
    ) -> Result<C, CoordinatesOutOfBoundsError> {
        let coordinates: MatrixCoordinates = coordinates.into();
        let index = self.index(coordinates)?;
        if let Some(entry) = self.values.get_mut(index) {
            Ok(std::mem::replace(entry, value))
        } else {
            Err(CoordinatesOutOfBoundsError {
                range: self.range(),
                coordinates,
            })
        }
    }
}
impl<C> Domain2D for Matrix<C> {
    fn row_range(&self) -> Range<usize> {
        0..self.dimensions.n_rows
    }

    fn col_range(&self) -> Range<usize> {
        0..self.dimensions.n_cols
    }
}

/// Matrix dimensions don't agree. Values ({n_values}) modulo columns ({n_cols}) should be 0.
#[derive(Clone, Debug, Snafu)]
pub enum MatrixSliceError {
    SliceInputDimension { source: MatrixDimensionError },
    SliceRangeOutOfBounds { source: MatrixViewOutOfBoundsError },
}

/// Slice of a matrix.
#[derive(Clone, Debug, Default)]
pub struct MatrixSlice<'a, C> {
    /// Input matrix values as a single slice reference.
    values: &'a [C],
    /// Dimensions of the input data.
    dimensions: MatrixDimensions,
    /// Slice or view range.
    range: MatrixRange,
}
impl<'a, C> MatrixSlice<'a, C> {
    /// Create a new slice from a matrix. Takes a reference to the input values' slice and the
    /// number of columns in each row as well as the intended range of the slice.
    pub fn new(
        values: &'a [C],
        n_cols: usize,
        range: MatrixRange,
    ) -> Result<Self, MatrixSliceError> {
        let n_values = values.len();
        let n_rows = n_values / n_cols;
        let dimensions = MatrixDimensions::new(n_rows, n_cols);
        if values.len() != dimensions.len() {
            return MatrixDimensionSnafu { n_values, n_cols }
                .fail()
                .context(SliceInputDimensionSnafu);
        }
        let domain: MatrixRange = dimensions.into();
        if domain.contains(&range) {
            Ok(Self {
                values,
                dimensions,
                range,
            })
        } else {
            MatrixViewOutOfBoundsSnafu { dimensions, range }
                .fail()
                .context(SliceRangeOutOfBoundsSnafu)
        }
    }

    /// Get the index for item access in the reference slice.
    /// The provided coordinates should be with respect to the original input data!
    pub fn index<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<usize, CoordinatesOutOfBoundsError> {
        let x: MatrixCoordinates = coordinates.into();
        let n_rows = self.dimensions.n_rows;
        let n_cols = self.dimensions.n_cols;
        if x.row < n_rows && x.col < n_cols {
            Ok(x.row * self.n_cols() + x.col)
        } else {
            Err(CoordinatesOutOfBoundsError {
                coordinates: x,
                range: self.range(),
            })
        }
    }
}

impl<'a, C> MatrixSlice<'a, C>
where
    C: Clone + Default,
{
    /// Clone the data into this slice into a matrix of it's own size.
    pub fn to_matrix(&self) -> Matrix<C> {
        Matrix::new(
            self.row_range()
                .flat_map(|row| {
                    self.col_range().filter_map(move |col| {
                        self.get(MatrixCoordinates::new(row, col)).ok().cloned()
                    })
                })
                .collect(),
            self.range.col_range().end,
        )
        .unwrap_or_default()
    }
}
impl<'a, C> MatrixRef<C> for MatrixSlice<'a, C> {
    fn get<T: Into<MatrixCoordinates>>(
        &self,
        coordinates: T,
    ) -> Result<&C, CoordinatesOutOfBoundsError> {
        let coordinates: MatrixCoordinates = coordinates.into();
        let index = self.index(coordinates)?;
        self.values.get(index).context(CoordinatesOutOfBoundsSnafu {
            range: self.range,
            coordinates,
        })
    }
}
impl<'a, C> Domain2D for MatrixSlice<'a, C> {
    fn row_range(&self) -> Range<usize> {
        self.range.row_range()
    }
    fn col_range(&self) -> Range<usize> {
        self.range.col_range()
    }
}

/// Matrix cell.
#[derive(Clone, Debug, PartialEq)]
pub struct MatrixCellRef<'a, M: MatrixRef<C> + ?Sized, C> {
    /// Matrix to pull values from.
    pub matrix: &'a M,
    /// Coordinates of this cell.
    pub coordinates: MatrixCoordinates,
    /// Phantom data marker for the cell value type.
    _phantom: PhantomData<C>,
}
impl<'a, M: MatrixRef<C> + ?Sized, C> MatrixCellRef<'a, M, C> {
    /// Create a new cell reference using the given coordinates.
    pub fn new<T: Into<MatrixCoordinates>>(matrix: &'a M, coordinates: T) -> Self {
        Self {
            matrix,
            coordinates: coordinates.into(),
            _phantom: PhantomData,
        }
    }
}

/// Location in a 2D matrix.
#[derive(Copy, Clone, Debug, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(rename_all = "camelCase")
)]
pub enum MatrixLocation {
    /// Entire row in a matrix.
    Row(usize),
    /// Entire column in a matrix.
    Col(usize),
    /// Specific coordinates in a matrix.
    Coordinates(MatrixCoordinates),
    /// 2D area in a matrix.
    Range(MatrixRange),
}
impl Default for MatrixLocation {
    fn default() -> Self {
        Self::Coordinates(Default::default())
    }
}
impl From<MatrixCoordinates> for MatrixLocation {
    fn from(value: MatrixCoordinates) -> Self {
        Self::Coordinates(value)
    }
}
impl MatrixLocation {
    /// Create a new optional location from an optional row and column coordinate.
    pub fn from_coords(row: Option<usize>, col: Option<usize>) -> Option<Self> {
        match (row, col) {
            (Some(row), Some(col)) => Some(Self::Coordinates(MatrixCoordinates::new(row, col))),
            (Some(row), None) => Some(Self::Row(row)),
            (None, Some(col)) => Some(Self::Col(col)),
            (None, None) => None,
        }
    }
    /// Row or starting row of this location.
    pub fn row(&self) -> Option<usize> {
        match self {
            Self::Row(row) => Some(*row),
            Self::Col(_) => None,
            Self::Coordinates(coord) => Some(coord.row),
            Self::Range(area) => Some(area.row_range().start),
        }
    }
    /// Column or starting column of this location.
    pub fn col(&self) -> Option<usize> {
        match self {
            Self::Row(_) => None,
            Self::Col(col) => Some(*col),
            Self::Coordinates(coord) => Some(coord.col),
            Self::Range(area) => Some(area.col_range().start),
        }
    }
}
impl Domain2D for MatrixLocation {
    fn row_range(&self) -> Range<usize> {
        match self {
            Self::Coordinates(coordinates) => Range {
                start: coordinates.row,
                end: coordinates.row + 1,
            },
            Self::Row(row) => Range {
                start: *row,
                end: row + 1,
            },
            Self::Col(_) => Range { start: 0, end: 0 },
            Self::Range(range) => range.row_range(),
        }
    }
    fn col_range(&self) -> Range<usize> {
        match self {
            Self::Coordinates(coordinates) => Range {
                start: coordinates.col,
                end: coordinates.col + 1,
            },
            Self::Row(_) => Range { start: 0, end: 0 },
            Self::Col(col) => Range {
                start: *col,
                end: col + 1,
            },
            Self::Range(range) => range.col_range(),
        }
    }
}

/// Coordinate in a 2D matrix.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixCoordinates {
    /// Coordinate row.
    pub row: usize,
    /// Coordinate column.
    pub col: usize,
}
impl MatrixCoordinates {
    /// Create a new matrix coordinate instance.
    pub fn new(row: usize, col: usize) -> Self {
        Self { row, col }
    }
}
impl From<(usize, usize)> for MatrixCoordinates {
    fn from(value: (usize, usize)) -> Self {
        Self {
            row: value.0,
            col: value.1,
        }
    }
}

/// 2D matrix dimensions.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixDimensions {
    /// Coordinate row.
    pub n_rows: usize,
    /// Coordinate column.
    pub n_cols: usize,
}
impl MatrixDimensions {
    /// Create a new matrix dimensions instance.
    pub fn new(n_rows: usize, n_cols: usize) -> Self {
        Self { n_rows, n_cols }
    }
}
impl From<(usize, usize)> for MatrixDimensions {
    fn from(value: (usize, usize)) -> Self {
        Self {
            n_rows: value.0,
            n_cols: value.1,
        }
    }
}
impl Dimensions2D for MatrixDimensions {
    fn n_rows(&self) -> usize {
        self.n_rows
    }
    fn n_cols(&self) -> usize {
        self.n_cols
    }
}

/// 2D range in a matrix.
#[derive(Copy, Clone, Debug, Default, PartialEq)]
#[cfg_attr(
    feature = "serde",
    derive(serde::Serialize, serde::Deserialize),
    serde(default, rename_all = "camelCase")
)]
pub struct MatrixRange {
    /// Starting coordinates of the range (inclusive).
    pub start: MatrixCoordinates,
    /// Ending coordinates of the range (exclusive).
    pub end: MatrixCoordinates,
}
impl MatrixRange {
    /// Create a new matrix area instance.
    pub fn new(rows: Range<usize>, cols: Range<usize>) -> Self {
        Self {
            start: MatrixCoordinates::new(rows.start, cols.start),
            end: MatrixCoordinates::new(rows.end, cols.end),
        }
    }
}
impl Domain2D for MatrixRange {
    /// Row range of this area.
    fn row_range(&self) -> Range<usize> {
        self.start.row..self.end.row
    }

    /// Column range of this area.
    fn col_range(&self) -> Range<usize> {
        self.start.col..self.end.col
    }
}
impl From<(Range<usize>, Range<usize>)> for MatrixRange {
    fn from(value: (Range<usize>, Range<usize>)) -> Self {
        Self::new(value.0, value.1)
    }
}
impl From<((usize, usize), (usize, usize))> for MatrixRange {
    /// Create a range from two sets of bounds ((row lower, row upper), (col lower, col upper)).
    fn from(value: ((usize, usize), (usize, usize))) -> Self {
        Self {
            start: MatrixCoordinates::new(value.0 .0, value.1 .0),
            end: MatrixCoordinates::new(value.0 .1, value.1 .1),
        }
    }
}
impl From<MatrixDimensions> for MatrixRange {
    fn from(value: MatrixDimensions) -> Self {
        Self::new(0..value.n_rows, 0..value.n_cols)
    }
}