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
use crate::any::error::mismatched_types;
use crate::any::{Any, AnyColumn, AnyColumnIndex};
use crate::column::ColumnIndex;
use crate::database::HasValueRef;
use crate::decode::Decode;
use crate::error::Error;
use crate::row::Row;
use crate::type_info::TypeInfo;
use crate::types::Type;
use crate::value::ValueRef;
#[cfg(feature = "postgres")]
use crate::postgres::PgRow;
#[cfg(feature = "mysql")]
use crate::mysql::MySqlRow;
#[cfg(feature = "sqlite")]
use crate::sqlite::SqliteRow;
#[cfg(feature = "mssql")]
use crate::mssql::MssqlRow;
pub struct AnyRow {
pub(crate) kind: AnyRowKind,
pub(crate) columns: Vec<AnyColumn>,
}
impl crate::row::private_row::Sealed for AnyRow {}
pub(crate) enum AnyRowKind {
#[cfg(feature = "postgres")]
Postgres(PgRow),
#[cfg(feature = "mysql")]
MySql(MySqlRow),
#[cfg(feature = "sqlite")]
Sqlite(SqliteRow),
#[cfg(feature = "mssql")]
Mssql(MssqlRow),
}
impl Row for AnyRow {
type Database = Any;
fn columns(&self) -> &[AnyColumn] {
&self.columns
}
fn try_get_raw<I>(
&self,
index: I,
) -> Result<<Self::Database as HasValueRef<'_>>::ValueRef, Error>
where
I: ColumnIndex<Self>,
{
let index = index.index(self)?;
match &self.kind {
#[cfg(feature = "postgres")]
AnyRowKind::Postgres(row) => row.try_get_raw(index).map(Into::into),
#[cfg(feature = "mysql")]
AnyRowKind::MySql(row) => row.try_get_raw(index).map(Into::into),
#[cfg(feature = "sqlite")]
AnyRowKind::Sqlite(row) => row.try_get_raw(index).map(Into::into),
#[cfg(feature = "mssql")]
AnyRowKind::Mssql(row) => row.try_get_raw(index).map(Into::into),
}
}
fn try_get<'r, T, I>(&'r self, index: I) -> Result<T, Error>
where
I: ColumnIndex<Self>,
T: Decode<'r, Self::Database> + Type<Self::Database>,
{
let value = self.try_get_raw(&index)?;
let ty = value.type_info();
if !value.is_null() && !ty.is_null() && !T::compatible(&ty) {
Err(mismatched_types::<T>(&ty))
} else {
T::decode(value)
}
.map_err(|source| Error::ColumnDecode {
index: format!("{:?}", index),
source,
})
}
}
impl<'i> ColumnIndex<AnyRow> for &'i str
where
&'i str: AnyColumnIndex,
{
fn index(&self, row: &AnyRow) -> Result<usize, Error> {
match &row.kind {
#[cfg(feature = "postgres")]
AnyRowKind::Postgres(row) => self.index(row),
#[cfg(feature = "mysql")]
AnyRowKind::MySql(row) => self.index(row),
#[cfg(feature = "sqlite")]
AnyRowKind::Sqlite(row) => self.index(row),
#[cfg(feature = "mssql")]
AnyRowKind::Mssql(row) => self.index(row),
}
}
}