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
use async_trait::async_trait;
use sqlx::postgres::PgQueryResult;
use std::marker::PhantomData;

use crate::Bind;

/// Associated an SQL Table
pub trait Table: Sized + Send + for<'r> sqlx::FromRow<'r, sqlx::postgres::PgRow> + 'static
where
    Self::PrimaryKey: for<'q> sqlx::Encode<'q, sqlx::Postgres> + sqlx::Type<sqlx::Postgres> + Send,
{
    type PrimaryKey: Sync + Sized + 'static;

    const SCHEMA: &'static str;
    const TABLE: &'static str;
    const PRIMARY_KEY: Column<Self>;
    const FOREIGN_KEYS: &'static [Column<Self>];
    const DATA: &'static [Column<Self>];

    fn pk(&self) -> &Self::PrimaryKey;
}

/// A entity is a table that implements [`Create`], [`Read`], [`Update`] & [`Create`]
pub trait Entity: Create + Read + Update + Delete {}

impl<E: Create + Read + Update + Delete> Entity for E {}

/// Create rows in a [`sqlx::Database`]
#[async_trait]
pub trait Create: Table {
    /// Create a new row
    async fn create<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres> + Sync + 'static,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    // Create many new rows
    //async fn create_many(entities: &[impl AsRef<Self>], pool: &sqlx::PgPool) -> Result<()> {
    //Self::cre
    //}
}

#[async_trait]
impl<T> Create for T
where
    T: Table,
{
    async fn create<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres> + Sync + 'static,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::insert();

        self.bind_all(sqlx::query::<sqlx::Postgres>(&query.into_sql()))
            .unwrap()
            .persistent(false)
            .execute(executor)
            .await
    }
}

/// Read rows from a [`sqlx::Database`]
#[async_trait]
pub trait Read: Table + Send + Sync + Unpin + 'static {
    /// Find a row by its primary key
    async fn find<'e, E>(pk: &Self::PrimaryKey, executor: E) -> sqlx::Result<Self>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    /// Reload from database
    async fn reload<'e, E>(&mut self, executor: E) -> sqlx::Result<()>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    // Find all rows in the list of primary keys
    //async fn find_many<'e, E>(pks: &[impl AsRef<Self::PrimaryKey>], executor: E) -> Result<Vec<Self>>
    //where
    //Self: Bind<sqlx::Postgres> + Sync + 'static,
    //E: sqlx::Executor<'e, Database = sqlx::Postgres>,
    //for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
    //Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    // TODO(mara): figure out streams
    // Read all rows from the database
    //async fn all(pool: &sqlx::PgPool) -> Result<Vec<Self>>;
}

#[async_trait]
impl<T> Read for T
where
    T: Table + Send + Sync + Unpin + 'static,
{
    async fn find<'e, E>(pk: &Self::PrimaryKey, executor: E) -> sqlx::Result<Self>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::select();

        sqlx::query_as::<sqlx::Postgres, Self>(&query.into_sql())
            .bind(pk)
            .fetch_one(executor)
            .await
    }

    async fn reload<'e, E>(&mut self, executor: E) -> sqlx::Result<()>
    where
        Self: Bind<sqlx::Postgres> + Sync + Unpin + 'static,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let sql = crate::runtime::sql::SQL::<T, sqlx::Postgres>::select().into_sql();

        let query = sqlx::query_as::<sqlx::Postgres, Self>(&sql);

        let new = self
            .bind_primary_key(query)
            .unwrap()
            .fetch_one(executor)
            .await?;

        *self = new;

        Ok(())
    }
}

/// Update rows in a [`sqlx::Database`]
#[async_trait]
pub trait Update: Table + Send + Sync + Unpin + 'static {
    /// Update the row in the database
    async fn update<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres> + Sync + 'static,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    /// Save to the database
    async fn save<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres> + Sync + 'static,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;
}

#[async_trait]
impl<T> Update for T
where
    T: Table + Send + Sync + Unpin + 'static,
{
    async fn update<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::update().into_sql();
        let mut query = sqlx::query::<sqlx::Postgres>(&query);
        query = self.bind_all(query).unwrap();
        query.persistent(false).execute(executor).await
    }

    async fn save<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::upsert().into_sql();
        let mut query = sqlx::query::<sqlx::Postgres>(&query);
        query = self.bind_all(query).unwrap();
        query.persistent(false).execute(executor).await
    }
}

/// Delete rows from a [`sqlx::Database`]
#[async_trait]
pub trait Delete: Table + Send + Sync + Unpin + 'static {
    /// Delete row in database
    async fn delete<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    /// Delete row in database by primary key
    async fn delete_by<'e, E>(pk: &Self::PrimaryKey, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>;

    // Delete all rows in the list of primary keys
    //async fn delete_many<'e, E>(pks: &[impl AsRef<Self::PrimaryKey>], executor: E) -> Result<()>
    //where
    //Self: Bind<sqlx::Postgres> + Sync + 'static,
    //E: sqlx::Executor<'e, Database = sqlx::Postgres>,
    //for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
    //Send + sqlx::IntoArguments<'q, sqlx::Postgres>;
}

#[async_trait]
impl<T> Delete for T
where
    T: Table + Send + Sync + Unpin + 'static,
{
    async fn delete<'e, E>(&self, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::delete();

        self.bind_all(sqlx::query::<sqlx::Postgres>(&query.into_sql()))
            .unwrap()
            .persistent(false)
            .execute(executor)
            .await
    }

    async fn delete_by<'e, E>(pk: &Self::PrimaryKey, executor: E) -> sqlx::Result<PgQueryResult>
    where
        Self: Bind<sqlx::Postgres>,
        E: sqlx::Executor<'e, Database = sqlx::Postgres>,
        for<'q> <sqlx::Postgres as sqlx::database::HasArguments<'q>>::Arguments:
            Send + sqlx::IntoArguments<'q, sqlx::Postgres>,
    {
        let query = crate::runtime::sql::SQL::<T, sqlx::Postgres>::delete();

        sqlx::query::<sqlx::Postgres>(&query.into_sql())
            .bind(pk)
            .persistent(false)
            .execute(executor)
            .await
    }
}

/// Descriptor type of a sql column
#[derive(Debug)]
pub struct Column<T: Table> {
    pub name: &'static str,
    pub ty: ColumnType,
    table: PhantomData<T>,
}

impl<T: Table> Column<T> {
    pub const fn new(name: &'static str, ty: ColumnType) -> Self {
        Self {
            name,
            ty,
            table: PhantomData,
        }
    }
}

/// Different column types in atmosphere
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum ColumnType {
    Value,
    PrimaryKey,
    ForeignKey,
}

/// A result type for atmosphere code
pub type Result<T> = std::result::Result<T, ()>;

/// A atmosphere error type
pub enum Error {}