forked from ClickHouse/clickhouse-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrow.rs
181 lines (146 loc) · 4.19 KB
/
row.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
use crate::sql;
pub trait Row {
const COLUMN_NAMES: &'static [&'static str];
// TODO: count
// TODO: different list for SELECT/INSERT (de/ser)
}
// Actually, it's not public now.
pub trait Primitive {}
macro_rules! impl_primitive_for {
($t:ty, $($other:tt)*) => {
impl Primitive for $t {}
impl_primitive_for!($($other)*);
};
() => {};
}
// TODO: char? &str? SocketAddr? Path? Duration? NonZero*?
impl_primitive_for![
bool, String, u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize, f32, f64,
];
macro_rules! impl_row_for_tuple {
($i:ident $($other:ident)+) => {
/// Two forms are supported:
/// * (P1, P2, ...)
/// * (SomeRow, P1, P2, ...)
///
/// The second one is useful for queries like
/// `SELECT ?fields, count() FROM .. GROUP BY ?fields`.
impl<$i: Row, $($other: Primitive),+> Row for ($i, $($other),+) {
const COLUMN_NAMES: &'static [&'static str] = $i::COLUMN_NAMES;
}
impl_row_for_tuple!($($other)+);
};
($i:ident) => {};
}
// TODO: revise this?
impl Primitive for () {}
impl<P: Primitive> Row for P {
const COLUMN_NAMES: &'static [&'static str] = &[];
}
impl_row_for_tuple!(T0 T1 T2 T3 T4 T5 T6 T7 T8);
impl<T> Row for Vec<T> {
const COLUMN_NAMES: &'static [&'static str] = &[];
}
/// Collects all field names in depth and joins them with comma.
pub(crate) fn join_column_names<R: Row>() -> Option<String> {
if R::COLUMN_NAMES.is_empty() {
return None;
}
let out = R::COLUMN_NAMES
.iter()
.enumerate()
.fold(String::new(), |mut res, (idx, name)| {
if idx > 0 {
res.push(',');
}
sql::escape::identifier(name, &mut res).expect("impossible");
res
});
Some(out)
}
#[cfg(test)]
mod tests {
// XXX: need for `derive(Row)`. Provide `row(crate = ..)` instead.
use crate as clickhouse;
use clickhouse::Row;
use super::*;
#[test]
fn it_grabs_simple_struct() {
#[derive(Row)]
#[allow(dead_code)]
struct Simple1 {
one: u32,
}
#[derive(Row)]
#[allow(dead_code)]
struct Simple2 {
one: u32,
two: u32,
}
assert_eq!(join_column_names::<Simple1>().unwrap(), "`one`");
assert_eq!(join_column_names::<Simple2>().unwrap(), "`one`,`two`");
}
#[test]
fn it_grabs_mix() {
#[derive(Row)]
struct SomeRow {
_a: u32,
}
assert_eq!(join_column_names::<(SomeRow, u32)>().unwrap(), "`_a`");
}
#[test]
fn it_supports_renaming() {
use serde::Serialize;
#[derive(Row, Serialize)]
#[allow(dead_code)]
struct TopLevel {
#[serde(rename = "two")]
one: u32,
}
assert_eq!(join_column_names::<TopLevel>().unwrap(), "`two`");
}
#[test]
fn it_skips_serializing() {
use serde::Serialize;
#[derive(Row, Serialize)]
#[allow(dead_code)]
struct TopLevel {
one: u32,
#[serde(skip_serializing)]
two: u32,
}
assert_eq!(join_column_names::<TopLevel>().unwrap(), "`one`");
}
#[test]
fn it_skips_deserializing() {
use serde::Deserialize;
#[derive(Row, Deserialize)]
#[allow(dead_code)]
struct TopLevel {
one: u32,
#[serde(skip_deserializing)]
two: u32,
}
assert_eq!(join_column_names::<TopLevel>().unwrap(), "`one`");
}
#[test]
fn it_rejects_other() {
#[derive(Row)]
struct NamedTuple(u32, u32);
assert_eq!(join_column_names::<u32>(), None);
assert_eq!(join_column_names::<(u32, u64)>(), None);
assert_eq!(join_column_names::<NamedTuple>(), None);
}
#[test]
fn it_handles_raw_identifiers() {
use serde::Serialize;
#[derive(Row, Serialize)]
#[allow(dead_code)]
struct MyRow {
r#type: u32,
#[serde(rename = "if")]
r#match: u32,
}
assert_eq!(join_column_names::<MyRow>().unwrap(), "`type`,`if`");
}
}