back to sort of async execution, query works, the json is still wrong though

This commit is contained in:
Shautvast 2026-01-11 13:14:16 +01:00
parent 491a8a598c
commit a321c198ad
5 changed files with 100 additions and 67 deletions

43
Cargo.lock generated
View file

@ -163,6 +163,29 @@ version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "bb8"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "457d7ed3f888dfd2c7af56d4975cade43c622f74bdcddfed6d4352f57acc6310"
dependencies = [
"futures-util",
"parking_lot",
"portable-atomic",
"tokio",
]
[[package]]
name = "bb8-postgres"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e570e6557cd0f88d28d32afa76644873271a70dc22656df565b2021c4036aa9c"
dependencies = [
"bb8",
"tokio",
"tokio-postgres",
]
[[package]]
name = "bitflags"
version = "1.3.2"
@ -1255,6 +1278,12 @@ version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
[[package]]
name = "portable-atomic"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
[[package]]
name = "postgres"
version = "0.19.12"
@ -1352,16 +1381,6 @@ dependencies = [
"scheduled-thread-pool",
]
[[package]]
name = "r2d2_postgres"
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efd4b47636dbca581cd057e2f27a5d39be741ea4f85fd3c29e415c55f71c7595"
dependencies = [
"postgres",
"r2d2",
]
[[package]]
name = "rand"
version = "0.9.2"
@ -1924,6 +1943,8 @@ version = "0.1.0"
dependencies = [
"arc-swap",
"axum",
"bb8",
"bb8-postgres",
"chrono",
"clap",
"dotenv",
@ -1932,12 +1953,12 @@ dependencies = [
"notify",
"postgres",
"r2d2",
"r2d2_postgres",
"regex",
"reqwest",
"serde",
"thiserror",
"tokio",
"tokio-postgres",
"tower",
"tower-http",
"tower-livereload",

View file

@ -9,6 +9,7 @@ axum = "0.8.6"
log4rs = "1.4.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.47", features = ["full"] }
tokio-postgres = "0.7"
chrono = "0.4"
dotenv = "0.15.0"
reqwest = { version = "0.12", features = ["json", "multipart"] }
@ -27,4 +28,5 @@ arc-swap = "1.7.1"
regex = "1.12.2"
r2d2 = "0.8.10"
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
r2d2_postgres = "0.18.2"
bb8 = "0.9"
bb8-postgres = "0.9"

View file

@ -1,28 +1,14 @@
use crate::builtins::{FunctionMap, Signature, add};
use crate::builtins::{add, FunctionMap, Signature};
use crate::compiler::ast_pass::Parameter;
use crate::compiler::tokens::TokenType;
use crate::compiler::tokens::TokenType::{DateTime, ListType, StringType, Void};
use crate::errors::RuntimeError;
use crate::value::{Value, string};
use r2d2_postgres::PostgresConnectionManager;
use r2d2_postgres::postgres::NoTls;
use r2d2_postgres::postgres::types::Type;
use crate::value::{string, Value};
use std::cell::RefMut;
use std::collections::HashMap;
use std::sync::LazyLock;
pub(crate) static DB_POOL: LazyLock<r2d2::Pool<PostgresConnectionManager<NoTls>>> =
LazyLock::new(|| {
let manager = PostgresConnectionManager::new(
"host=localhost user=postgres dbname=postgres password=boompje".parse().unwrap(),
NoTls,
);
r2d2::Pool::builder()
.max_size(15)
.build(manager)
.expect("Failed to create pool")
});
use tokio_postgres::types::Type;
use crate::DB_POOL;
pub(crate) static GLOBAL_FUNCTIONS: LazyLock<FunctionMap> = LazyLock::new(|| {
let mut global_functions: FunctionMap = HashMap::new();
@ -72,8 +58,10 @@ fn now(_self_val: RefMut<Value>, _args: Vec<Value>) -> Result<Value, RuntimeErro
}
fn sql(_self_val: RefMut<Value>, args: Vec<Value>) -> Result<Value, RuntimeError> {
let mut conn = DB_POOL.get().unwrap();
let result = conn.query(&args[0].to_string(), &[]).unwrap();
let result = tokio::task::block_in_place(|| {
tokio::runtime::Handle::current().block_on(async {
let mut conn = DB_POOL.get().unwrap().get().await.unwrap();
let result = conn.query(&args[0].to_string(), &[]).await.unwrap();
let mut columns = vec![];
if let Some(first_row) = result.first() {
@ -109,5 +97,9 @@ fn sql(_self_val: RefMut<Value>, args: Vec<Value>) -> Result<Value, RuntimeError
}
rows.push(Value::Map(row));
}
Ok(Value::List(rows))
rows
})
});
Ok(Value::List(result))
}

View file

@ -3,6 +3,9 @@ use crate::compiler::ast_pass::{Expression, Statement};
use crate::errors::CompilerErrorAtLine;
use crate::symbol_builder::Symbol;
use std::collections::HashMap;
use std::sync::OnceLock;
use bb8_postgres::PostgresConnectionManager;
use tokio_postgres::NoTls;
mod builtins;
pub mod compiler;
@ -21,3 +24,5 @@ pub(crate) type AsmRegistry = HashMap<String, AsmChunk>;
pub const TIPI_EXT: &str = ".tp";
pub const DATE_FORMAT_TIMEZONE: &str = "%Y-%m-%d %H:%M:%S%.3f %z";
pub static DB_POOL: OnceLock<bb8::Pool<PostgresConnectionManager<NoTls>>> = OnceLock::new();

View file

@ -3,15 +3,18 @@ use axum::extract::{Request, State};
use axum::http::StatusCode;
use axum::routing::any;
use axum::{Json, Router};
use bb8_postgres::PostgresConnectionManager;
use clap::Parser;
use log::info;
use std::collections::HashMap;
use std::fs;
use std::sync::Arc;
use std::sync::{Arc, LazyLock, OnceLock};
use tipi_lang::compiler::assembly_pass::AsmChunk;
use tipi_lang::compiler::{compile_sourcedir, map_underlying, run};
use tipi_lang::errors::TipiLangError;
use tipi_lang::vm::interpret_async;
use tokio_postgres::NoTls;
use tipi_lang::DB_POOL;
/// A simple CLI tool to greet users
#[derive(Parser, Debug)]
@ -31,6 +34,16 @@ struct Args {
#[tokio::main]
async fn main() -> Result<(), TipiLangError> {
//TODO make configurable
let manager =
PostgresConnectionManager::new_from_stringlike("host=localhost user=postgres password=boompje", NoTls)
.unwrap();
let pool = bb8::Pool::builder()
.build(manager)
.await
.expect("cannot create the the database connection pool");
let _ = DB_POOL.set(pool);
tracing_subscriber::fmt::init();
let args = Args::parse();
if let Some(file) = args.file {