1#[cfg(not(any(
2 feature = "strict-postgres",
3 feature = "strict-mysql",
4 feature = "strict-sqlite"
5)))]
6pub use sqlx::AnyPool as RullstPool;
7
8#[cfg(feature = "strict-postgres")]
9pub use sqlx::PgPool as RullstPool;
10
11#[cfg(all(feature = "strict-mysql", not(feature = "strict-postgres")))]
12pub use sqlx::MySqlPool as RullstPool;
13
14#[cfg(all(
15 feature = "strict-sqlite",
16 not(feature = "strict-postgres"),
17 not(feature = "strict-mysql")
18))]
19pub use sqlx::SqlitePool as RullstPool;
20
21#[cfg(not(any(
22 feature = "strict-postgres",
23 feature = "strict-mysql",
24 feature = "strict-sqlite"
25)))]
26use sqlx::any::install_default_drivers;
27
28use std::sync::OnceLock;
29use std::sync::atomic::{AtomicUsize, Ordering};
30
31pub use futures;
33pub use serde;
34pub use serde_json;
35pub use sqlx;
36
37#[cfg(feature = "redis")]
38pub use redis;
39pub mod admin;
40pub mod audit;
41pub mod collection;
42pub mod database;
43pub mod resource;
44pub mod schema;
45pub mod scout;
46pub mod tenant;
47pub mod types;
48
49pub use admin::dashboard_html;
51pub use collection::RullstCollection;
52pub use database::RullstDatabase;
53pub use resource::{ApiResource, JsonResource, ResourceCollection};
54pub use rullst_orm_macros::Orm;
55pub use scout::{SearchEngine, get_search_engine, set_search_engine};
56pub use tenant::{get_tenant_id, with_tenant};
57pub use types::Json;
58
59pub use async_trait::async_trait;
61
62pub use schema::{JoinClause, SubqueryBuilder};
64pub use sqlx::FromRow;
65
66static DB_POOL: OnceLock<RullstPool> = OnceLock::new();
68
69static DB_DRIVER: OnceLock<String> = OnceLock::new();
71
72static REPLICA_POOLS: OnceLock<Vec<RullstPool>> = OnceLock::new();
74
75static REPLICA_INDEX: AtomicUsize = AtomicUsize::new(0);
77
78#[cfg(feature = "redis")]
79static REDIS_CLIENT: OnceLock<redis::Client> = OnceLock::new();
80
81#[cfg(feature = "redis")]
82static REDIS_MANAGER: OnceLock<redis::aio::ConnectionManager> = OnceLock::new();
83
84#[derive(Clone, Debug)]
86pub enum RullstValue {
87 String(String),
88 Int(i32),
89 Float(f64),
90 Bool(bool),
91}
92
93impl From<&str> for RullstValue {
94 fn from(s: &str) -> Self {
95 RullstValue::String(s.to_string())
96 }
97}
98impl From<String> for RullstValue {
99 fn from(s: String) -> Self {
100 RullstValue::String(s)
101 }
102}
103impl From<i32> for RullstValue {
104 fn from(i: i32) -> Self {
105 RullstValue::Int(i)
106 }
107}
108impl From<f64> for RullstValue {
109 fn from(f: f64) -> Self {
110 RullstValue::Float(f)
111 }
112}
113impl From<bool> for RullstValue {
114 fn from(b: bool) -> Self {
115 RullstValue::Bool(b)
116 }
117}
118
119impl TryFrom<RullstValue> for String {
120 type Error = &'static str;
121 fn try_from(val: RullstValue) -> Result<Self, Self::Error> {
122 match val {
123 RullstValue::String(s) => Ok(s),
124 _ => Err("Not a string"),
125 }
126 }
127}
128impl TryFrom<RullstValue> for i32 {
129 type Error = &'static str;
130 fn try_from(val: RullstValue) -> Result<Self, Self::Error> {
131 match val {
132 RullstValue::Int(i) => Ok(i),
133 _ => Err("Not an i32"),
134 }
135 }
136}
137impl TryFrom<RullstValue> for f64 {
138 type Error = &'static str;
139 fn try_from(val: RullstValue) -> Result<Self, Self::Error> {
140 match val {
141 RullstValue::Float(f) => Ok(f),
142 _ => Err("Not an f64"),
143 }
144 }
145}
146impl TryFrom<RullstValue> for bool {
147 type Error = &'static str;
148 fn try_from(val: RullstValue) -> Result<Self, Self::Error> {
149 match val {
150 RullstValue::Bool(b) => Ok(b),
151 _ => Err("Not a bool"),
152 }
153 }
154}
155
156pub struct Orm;
158
159impl Orm {
160 pub async fn init(database_url: &str) -> Result<(), sqlx::Error> {
162 #[cfg(not(any(
163 feature = "strict-postgres",
164 feature = "strict-mysql",
165 feature = "strict-sqlite"
166 )))]
167 install_default_drivers();
168
169 let pool = RullstPool::connect(database_url).await?;
170
171 if DB_POOL.set(pool).is_err() {
172 panic!("Orm has already been initialized");
173 }
174
175 let driver = if database_url.starts_with("postgres") {
176 "postgres"
177 } else if database_url.starts_with("mysql") {
178 "mysql"
179 } else {
180 "sqlite"
181 };
182
183 let _ = DB_DRIVER.set(driver.to_string());
184 let _ = REPLICA_POOLS.set(vec![]);
185
186 Ok(())
187 }
188
189 pub async fn init_with_replicas(
191 primary_url: &str,
192 replica_urls: Vec<&str>,
193 ) -> Result<(), sqlx::Error> {
194 #[cfg(not(any(
195 feature = "strict-postgres",
196 feature = "strict-mysql",
197 feature = "strict-sqlite"
198 )))]
199 install_default_drivers();
200
201 let pool = RullstPool::connect(primary_url).await?;
202
203 if DB_POOL.set(pool).is_err() {
204 panic!("Orm has already been initialized");
205 }
206
207 let driver = if primary_url.starts_with("postgres") {
208 "postgres"
209 } else if primary_url.starts_with("mysql") {
210 "mysql"
211 } else {
212 "sqlite"
213 };
214
215 let _ = DB_DRIVER.set(driver.to_string());
216
217 let mut replicas = vec![];
218 for url in replica_urls {
219 let p = RullstPool::connect(url).await?;
220 replicas.push(p);
221 }
222 let _ = REPLICA_POOLS.set(replicas);
223
224 Ok(())
225 }
226
227 pub fn pool() -> &'static RullstPool {
229 DB_POOL
230 .get()
231 .expect("Orm must be initialized before querying")
232 }
233
234 pub fn read_pool() -> &'static RullstPool {
237 if let Some(replicas) = REPLICA_POOLS.get()
238 && !replicas.is_empty()
239 {
240 let idx = REPLICA_INDEX.fetch_add(1, Ordering::Relaxed) % replicas.len();
241 return &replicas[idx];
242 }
243 Self::pool()
244 }
245
246 pub fn driver() -> &'static str {
248 DB_DRIVER
249 .get()
250 .expect("Orm must be initialized before querying")
251 .as_str()
252 }
253
254 #[cfg(not(any(
256 feature = "strict-postgres",
257 feature = "strict-mysql",
258 feature = "strict-sqlite"
259 )))]
260 pub async fn begin_transaction() -> Result<sqlx::Transaction<'static, sqlx::Any>, sqlx::Error> {
261 let pool = Self::pool();
262 pool.begin().await
263 }
264
265 #[cfg(feature = "strict-postgres")]
266 pub async fn begin_transaction()
267 -> Result<sqlx::Transaction<'static, sqlx::Postgres>, sqlx::Error> {
268 let pool = Self::pool();
269 pool.begin().await
270 }
271
272 #[cfg(all(feature = "strict-mysql", not(feature = "strict-postgres")))]
273 pub async fn begin_transaction() -> Result<sqlx::Transaction<'static, sqlx::MySql>, sqlx::Error>
274 {
275 let pool = Self::pool();
276 pool.begin().await
277 }
278
279 #[cfg(all(
280 feature = "strict-sqlite",
281 not(feature = "strict-postgres"),
282 not(feature = "strict-mysql")
283 ))]
284 pub async fn begin_transaction() -> Result<sqlx::Transaction<'static, sqlx::Sqlite>, sqlx::Error>
285 {
286 let pool = Self::pool();
287 pool.begin().await
288 }
289
290 pub async fn seed(seeders: Vec<Box<dyn Seeder>>) -> Result<(), sqlx::Error> {
292 for seeder in seeders {
293 seeder.run().await?;
294 }
295 Ok(())
296 }
297
298 pub fn enable_query_log() {
300 crate::schema::enable_query_log();
301 }
302
303 pub fn disable_query_log() {
305 crate::schema::disable_query_log();
306 }
307
308 #[cfg(feature = "redis")]
310 pub async fn init_redis(redis_url: &str) -> Result<(), redis::RedisError> {
311 let client = redis::Client::open(redis_url)?;
312 let manager = redis::aio::ConnectionManager::new(client.clone()).await?;
313 let _ = REDIS_CLIENT.set(client);
314 let _ = REDIS_MANAGER.set(manager);
315 Ok(())
316 }
317
318 #[cfg(feature = "redis")]
320 pub fn redis_client() -> &'static redis::Client {
321 REDIS_CLIENT
322 .get()
323 .expect("Redis must be initialized before using cache features")
324 }
325
326 #[cfg(feature = "redis")]
328 pub fn redis_manager() -> redis::aio::ConnectionManager {
329 REDIS_MANAGER
330 .get()
331 .expect("Redis must be initialized before using cache features")
332 .clone()
333 }
334}
335
336#[async_trait]
338pub trait Seeder: Send + Sync {
339 async fn run(&self) -> Result<(), sqlx::Error>;
340}
341
342#[async_trait]
344pub trait RullstModel {
345 fn table_name() -> &'static str;
346}
347
348#[derive(Debug, Clone)]
350pub struct PaginationResult<T> {
351 pub data: Vec<T>,
352 pub total: i64,
353 pub per_page: usize,
354 pub current_page: usize,
355 pub last_page: usize,
356}
357
358#[cfg(test)]
359mod tests {
360 use super::*;
361
362 #[test]
363 fn test_rullst_value_conversions() {
364 let v: RullstValue = "test".into();
365 assert!(matches!(v, RullstValue::String(_)));
366 let v_int: RullstValue = 100.into();
367 assert!(matches!(v_int, RullstValue::Int(100)));
368 let v_bool: RullstValue = false.into();
369 assert!(matches!(v_bool, RullstValue::Bool(false)));
370 }
371}