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
use Span;
use ToTokens;
use ;
use Enum;
use crateJoin;
/// Derive [`FromSql`] and [`ToSql`] for a Rust enum.
/// Represents a PostgreSQL enum as a Rust enum.
///
/// ## Example
///
/// ### migration
///
/// ```sql
/// CREATE TYPE animal AS ENUM (
/// 'chicken',
/// 'duck',
/// 'oca',
/// 'rabbit
/// );
/// ```
///
/// ### Rust enum
///
/// ```rust
/// # use benzina_derive as benzina;
/// # fn main() {}
///
/// #[derive(Debug, Copy, Clone, benzina::Enum)]
/// #[benzina(
/// sql_type = crate::schema::sql_types::Animal,
/// rename_all = "snake_case"
/// )]
/// # #[benzina(crate = fake_benzina)]
/// pub enum Animal {
/// Chicken,
/// Duck,
/// #[benzina(rename = "oca")]
/// Goose,
/// Rabbit,
/// }
///
/// pub mod schema {
/// // @generated automatically by Diesel CLI.
///
/// pub mod sql_types {
/// #[derive(diesel::query_builder::QueryId, Clone, diesel::sql_types::SqlType)]
/// #[diesel(postgres_type(name = "animal"))]
/// pub struct Animal;
/// }
/// }
/// #
/// # mod fake_benzina {
/// # pub mod __private {
/// # pub use std;
/// # pub use diesel;
/// # }
/// # }
/// ```
///
/// ## Enums with variant-specific data in separate JSONB column
///
/// You can also use `benzina::Enum` for enums where each variant holds
/// associated data. This is useful when you have a PostgreSQL ENUM for the
/// discriminator and a JSONB column for the variant-specific payload.
///
/// ### migration
///
/// ```sql
/// CREATE TYPE animal AS ENUM ('chicken', 'duck', 'oca', 'rabbit');
///
/// CREATE TABLE pets (
/// id SERIAL PRIMARY KEY,
/// name TEXT NOT NULL,
/// animal animal NOT NULL,
/// animal_data JSONB NOT NULL
/// );
/// ```
///
/// ### Rust enum
///
/// ```rust
/// # use benzina_derive as benzina;
/// # fn main() {}
/// use diesel::pg::Pg;
/// use diesel::{Identifiable, Insertable, Queryable, Selectable};
/// use serde::{Deserialize, Serialize};
///
/// #[derive(Debug, Queryable, Identifiable, Insertable, Selectable)]
/// #[diesel(table_name = schema::pets, check_for_backend(Pg))]
/// pub struct Pet {
/// pub id: i32,
/// pub name: String,
/// #[diesel(embed)]
/// pub animal: Animal,
/// }
///
/// #[derive(Debug, Clone, benzina::Enum)]
/// #[benzina(
/// sql_type = schema::sql_types::Animal,
/// rename_all = "snake_case",
/// table = schema::pets,
/// column = animal,
/// data_column = animal_data
/// )]
/// # #[benzina(crate = fake_benzina)]
/// pub enum Animal {
/// Chicken(ChickenData),
/// Duck(DuckData),
/// #[benzina(rename = "oca")]
/// Goose(GooseData),
/// Rabbit(RabbitData),
/// }
///
/// #[derive(Debug, Clone, Serialize, Deserialize)]
/// pub struct ChickenData {
/// pub likes_cuddles: bool,
/// pub breed: String,
/// }
///
/// #[derive(Debug, Clone, Serialize, Deserialize)]
/// pub struct DuckData {
/// pub favorite_treat: String,
/// pub feather_color: String,
/// }
///
/// #[derive(Debug, Clone, Serialize, Deserialize)]
/// pub struct GooseData {
/// pub weight_kg: f64,
/// pub honks_at_strangers: bool,
/// }
///
/// #[derive(Debug, Clone, Serialize, Deserialize)]
/// pub struct RabbitData {
/// pub fur_color: String,
/// pub litter_trained: bool,
/// }
///
/// pub mod schema {
/// // @generated automatically by Diesel CLI.
///
/// pub mod sql_types {
/// #[derive(diesel::query_builder::QueryId, Clone, diesel::sql_types::SqlType)]
/// #[diesel(postgres_type(name = "animal"))]
/// pub struct Animal;
/// }
///
/// diesel::table! {
/// use diesel::sql_types::*;
/// use super::sql_types::Animal;
///
/// pets (id) {
/// id -> Int4,
/// name -> Text,
/// animal -> Animal,
/// animal_data -> Jsonb,
/// }
/// }
/// }
/// #
/// # mod fake_benzina {
/// # pub mod __private {
/// # pub use std;
/// # pub use diesel;
/// #
/// # pub mod json {
/// # use diesel::{
/// # deserialize::{FromSql, FromSqlRow},
/// # expression::AsExpression,
/// # pg::{Pg, PgValue},
/// # serialize::ToSql,
/// # sql_types,
/// # };
/// # use serde::{Deserialize, Serialize};
/// #
/// # #[derive(Debug, FromSqlRow, AsExpression)]
/// # #[diesel(sql_type = sql_types::Jsonb)]
/// # pub struct RawJsonb;
/// #
/// # impl RawJsonb {
/// # pub const EMPTY: Self = Self;
/// #
/// # pub fn serialize(value: &impl Serialize) -> diesel::deserialize::Result<Self> {
/// # unimplemented!()
/// # }
/// #
/// # pub fn deserialize<T: for<'a> Deserialize<'a>>(&self) -> diesel::deserialize::Result<T> {
/// # unimplemented!()
/// # }
/// # }
/// #
/// # impl FromSql<sql_types::Jsonb, Pg> for RawJsonb {
/// # fn from_sql(value: PgValue) -> diesel::deserialize::Result<Self> {
/// # unimplemented!()
/// # }
/// # }
/// #
/// # impl ToSql<sql_types::Jsonb, Pg> for RawJsonb {
/// # fn to_sql(&self, out: &mut diesel::serialize::Output<Pg>) -> diesel::serialize::Result {
/// # unimplemented!()
/// # }
/// # }
/// # }
/// # }
/// # }
/// ```
///
/// [`FromSql`]: https://docs.rs/diesel/latest/diesel/deserialize/trait.FromSql.html
/// [`ToSql`]: https://docs.rs/diesel/latest/diesel/serialize/trait.ToSql.html
/// Convert the output of a query containing joins into a properly nested structure.
///
/// <div class="warning">
/// This macro is still in the experimental stage and may contain
/// bugs and unhelpful error diagnostics.
/// </div>
///
/// Enable the `rustc-hash` feature to use a faster but non-DOS-resistant hasher for
/// the internal maps.
///
/// ## Example
///
/// ```rust,compile_fail
/// # fn main() {}
///
/// use diesel::{
/// Identifiable, QueryDsl, QueryResult, Queryable, RunQueryDsl, Selectable, SelectableHelper,
/// pg::{Pg, PgConnection},
/// };
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = users, check_for_backend(Pg))]
/// pub struct User {
/// pub id: i32,
/// pub name: String,
/// }
///
/// #[derive(Debug)]
/// pub struct UserWithPosts {
/// pub user: User,
/// pub posts: Vec<PostFromUser>,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = topics, check_for_backend(Pg))]
/// pub struct Topic {
/// pub id: i32,
/// pub name: String,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = posts, check_for_backend(Pg))]
/// pub struct Post {
/// pub id: i32,
/// pub user_id: i32,
/// pub topic_id: i32,
/// pub message: String,
/// }
///
/// #[derive(Debug)]
/// pub struct PostFromUser {
/// pub post: Post,
/// pub topic: Topic,
/// pub comments: Vec<CommentFromPost>,
/// }
///
/// #[derive(Debug, Queryable, Identifiable, Selectable)]
/// #[diesel(table_name = comments, check_for_backend(Pg))]
/// pub struct Comment {
/// pub id: i32,
/// pub post_id: i32,
/// pub user_id: i32,
/// pub message: String,
/// }
///
/// #[derive(Debug)]
/// pub struct CommentFromPost {
/// pub comment: Comment,
/// pub user: User,
/// }
///
/// impl UserWithPosts {
/// pub fn get_by_id(conn: &mut PgConnection, user_id: i32) -> QueryResult<Vec<Self>> {
/// let (users1, users2) = diesel::alias!(users as users1, users as users2);
///
/// let records = users1
/// .find(user_id)
/// .left_join(
/// posts::table
/// .left_join(topics::table)
/// .left_join(comments::table.left_join(users2)),
/// )
/// .select((
/// users1.fields(<User as Selectable<Pg>>::construct_selection()),
/// Option::<Post>::as_select(),
/// Option::<Topic>::as_select(),
/// Option::<Comment>::as_select(),
/// users2.fields(<Option<User> as Selectable<Pg>>::construct_selection()),
/// ))
/// .get_results::<(
/// User,
/// Option<Post>,
/// Option<Topic>,
/// Option<Comment>,
/// Option<User>,
/// )>(conn)?;
///
/// let joined = benzina::join! {
/// records,
/// Vec<UserWithPosts {
/// user: One<0>,
/// posts: Vec0<PostFromUser {
/// post: One<1>,
/// topic: AssumeOne<2>,
/// comments: Vec0<CommentFromPost {
/// comment: One<3>,
/// user: AssumeOne<4>,
/// }>,
/// }>,
/// }>,
/// };
/// Ok(joined)
/// }
/// }
///
/// diesel::table! {
/// users {
/// id -> Integer,
/// name -> Text,
/// }
/// }
///
/// diesel::table! {
/// topics {
/// id -> Integer,
/// name -> Text,
/// }
/// }
///
/// diesel::table! {
/// posts {
/// id -> Integer,
/// user_id -> Integer,
/// topic_id -> Integer,
/// message -> Text,
/// }
/// }
///
/// diesel::table! {
/// comments {
/// id -> Integer,
/// post_id -> Integer,
/// user_id -> Integer,
/// message -> Text,
/// }
/// }
///
/// diesel::joinable!(posts -> users (user_id));
/// diesel::joinable!(posts -> topics (topic_id));
/// diesel::joinable!(comments -> posts (post_id));
/// diesel::joinable!(comments -> users (user_id));
///
/// diesel::allow_tables_to_appear_in_same_query!(users, topics, posts, comments);
/// ```