Crates.io | libruster |
lib.rs | libruster |
version | 1.3.1 |
source | src |
created_at | 2021-11-24 17:19:20.176829 |
updated_at | 2021-11-26 07:03:14.232482 |
description | Ruster is a library using ffi for database management with psql/pg_dump + mysql/mysqldump that can be used in other languages like Golang |
homepage | |
repository | https://github.com/e-monkeys-tech/ruster |
max_upload_size | |
id | 487082 |
size | 3,597,438 |
Ruster is a library using ffi for database management with psql/pg_dump + mysql/mysqldump written in Rust.
The generated C static and shared libraries can be reused in other languages (Golang for example).
The build of project produces 2 go binaries, 1 static library (libruster.a) and 1 shared library (libruster.so).
The headers of C functions are in lib/ruster.h and must be present before code generation.
make build-shared
make build-static
/*
#cgo LDFLAGS: -L./lib -lruster
#include "./lib/ruster.h"
*/
import "C"
import (
"os"
)
func main() {
os.Getenv("PGPASSWORD")
err := func() error {
C.pg_dump_database(
C.CString("localhost"),
C.CString("5432"),
C.CString("postgres"),
C.CString("postgres"),
C.CString("pg_dump.sql"),
C.CString("true"),
);
return nil
}
if err() == nil {
func() {
C.psql_restore_database(
C.CString("localhost"),
C.CString("5432"),
C.CString("postgres"),
C.CString("postgres"),
C.CString("pg_dump.sql"),
C.CString("true"),
);
}()
}
}
/*
#cgo LDFLAGS: -L./lib -lruster
#include "./lib/ruster.h"
*/
import "C"
import (
"os"
)
func main() {
os.Getenv("MYSQL_PWD")
err := func() error {
C.mysqldump_database(
C.CString("localhost"),
C.CString("3306"),
C.CString("root"),
C.CString("mysql"),
C.CString("dump.sql"),
C.CString("true"),
);
return nil
}
time.Sleep(time.Duration(250)*time.Millisecond)
if err() == nil {
func() {
C.mysql_restore_database(
C.CString("localhost"),
C.CString("3306"),
C.CString("root"),
C.CString("mysql"),
C.CString("dump.sql"),
C.CString("true"),
);
}()
}
}
make run-shared
make run-static
./time main_shared
./time main_static
./time test-rust-lib