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
use crate::table::column::{ColumnKind, ColumnData, ColumnType};

use std::fmt::Write;
use std::borrow::Cow;

#[cfg(feature = "connect")]
use tokio_postgres::types::ToSql;

pub mod whr;
pub mod update;
pub use update::UpdateParams;

pub type SqlStr = Cow<'static, str>;

// find query
// select query
// insert query
// delete query
// update query

#[derive(Debug, Clone)]
enum SqlBuilderType {
	NoSpace(SqlStr),
	SpaceAfter(SqlStr),
	SpaceBefore(SqlStr),
	Space(SqlStr),
	Param
}

#[derive(Debug, Clone)]
pub struct SqlBuilder {
	data: Vec<SqlBuilderType>
}

impl SqlBuilder {
	pub fn new() -> Self {
		Self { data: vec![] }
	}

	pub fn from_sql_str(sql: impl Into<SqlStr>) -> Self {
		Self {
			data: vec![SqlBuilderType::SpaceAfter(sql.into())]
		}
	}

	pub fn no_space(&mut self, s: impl Into<SqlStr>) {
		self.data.push(SqlBuilderType::NoSpace(s.into()));
	}

	pub fn space_after(&mut self, s: impl Into<SqlStr>) {
		self.data.push(SqlBuilderType::SpaceAfter(s.into()));
	}

	pub fn space_before(&mut self, s: impl Into<SqlStr>) {
		self.data.push(SqlBuilderType::SpaceBefore(s.into()));
	}

	pub fn space(&mut self, s: impl Into<SqlStr>) {
		self.data.push(SqlBuilderType::Space(s.into()));
	}

	pub fn param(&mut self) {
		self.data.push(SqlBuilderType::Param);
	}

	pub fn prepend(&mut self, mut sql: SqlBuilder) {
		sql.data.append(&mut self.data);
		self.data = sql.data;
	}

	pub fn append(&mut self, mut sql: SqlBuilder) {
		self.data.append(&mut sql.data);
	}

	pub fn to_string(&self) -> String {
		let mut c = 0;
		let mut out = String::new();
		for d in &self.data {
			match d {
				SqlBuilderType::NoSpace(s) => {
					out.push_str(s);
				},
				SqlBuilderType::SpaceAfter(s) => {
					write!(&mut out, "{} ", s).unwrap();
				},
				SqlBuilderType::SpaceBefore(s) => {
					write!(&mut out, " {}", s).unwrap();
				},
				SqlBuilderType::Space(s) => {
					write!(&mut out, " {} ", s).unwrap();
				},
				SqlBuilderType::Param => {
					c += 1;
					write!(&mut out, "${}", c).unwrap();
				}
			}
		}
		out
	}
}

#[derive(Debug, Clone)]
pub struct Query<'a> {
	pub sql: SqlBuilder,
	pub params: Vec<Param<'a>>
}

impl<'a> Query<'a> {
	pub fn new(sql: SqlBuilder, params: Vec<Param<'a>>) -> Self {
		Self {sql, params}
	}

	pub fn from_sql_str(sql: impl Into<SqlStr>) -> Self {
		Self {
			sql: SqlBuilder::from_sql_str(sql),
			params: vec![]
		}
	}

	pub fn prepend(&mut self, sql: SqlBuilder, mut params: Vec<Param<'a>>) {
		self.sql.prepend(sql);
		params.append(&mut self.params);
		self.params = params;
	}

	pub fn append(&mut self, mut query: Query<'a>) {
		self.sql.append(query.sql);
		self.params.append(&mut query.params);
	}

	pub fn append_raw(&mut self, sql: SqlBuilder, mut params: Vec<Param<'a>>) {
		self.sql.append(sql);
		self.params.append(&mut params);
	}

	pub fn sql(&self) -> &SqlBuilder {
		&self.sql
	}

	pub fn params(&self) -> &[Param] {
		self.params.as_slice()
	}

	pub fn params_data(&self) -> Vec<&ColumnData> {
		let mut v = Vec::with_capacity(self.params.len());
		for param in &self.params {
			v.push(param.data());
		}
		v
	}

	#[cfg(feature = "connect")]
	pub fn to_sql_params(&self) -> Vec<&(dyn ToSql + Sync)> {
		let mut v = Vec::with_capacity(self.params.len());
		for param in &self.params {
			v.push(param.data() as &(dyn ToSql + Sync));
		}
		v
	}
}


#[derive(Debug, Clone, PartialEq)]
pub struct Param<'a> {
	pub name: &'static str,
	pub kind: ColumnKind,
	pub data: ColumnData<'a>
}

impl<'a> Param<'a> {

	pub fn new<T>(name: &'static str, data: &'a T) -> Self
	where T: ColumnType {
		let kind = T::column_kind();
		Self {name, kind,
			data: data.to_data()
		}
	}

	pub fn data(&self) -> &ColumnData {
		&self.data
	}

	#[inline(always)]
	pub fn maybe_null(&self) -> bool {
		matches!(self.kind, ColumnKind::Option(_))
	}

}




/*
find
- eq
- ne
- gt
- gte
- lt
- lte
- in
- nin

- and
- or
- not
- nor
*/