Skip to content

Commit 7513fba

Browse files
committed
1.0.0 candidate
1 parent 4d1773b commit 7513fba

17 files changed

+900
-1531
lines changed

Cargo.lock

+72-445
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
[package]
22
name = "chdb-rust"
3-
version = "0.7.0"
3+
version = "1.0.0"
44
edition = "2021"
5-
6-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
5+
keywords = ["clickhouse", "chdb", "database", "embedded", "analytics"]
76

87
[dependencies]
98
thiserror = "1"
10-
serde = { version = "1", features = ["derive"] }
11-
tracing = { version="0.1", features=["log"] }
12-
139

1410
[build-dependencies]
15-
bindgen = "0.65.1"
16-
17-
[dev-dependencies]
18-
tracing-subscriber = { version="0.3.16", features=["env-filter"] }
19-
clap = { version = "4", features = ["derive"] }
11+
bindgen = "0.70.1"

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ Experimental [chDB](https://github.com/chdb-io/chdb) FFI bindings for Rust
1313
```bash
1414
./update_libchdb.sh
1515
RUST_BACKTRACE=full cargo build --verbose
16-
cargo run --example basic
1716
```

build.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ fn main() {
44
// Tell cargo to look for shared libraries in the specified directory
55
println!("cargo:rustc-link-search=./");
66

7-
// Tell cargo to tell rustc to link the system bzip2
8-
// shared library.
7+
// Tell cargo to tell rustc to link the system chdb library.
98
println!("cargo:rustc-link-lib=chdb");
109

11-
// Tell cargo to invalidate the built crate whenever the wrapper changes
10+
// Tell cargo to invalidate the built crate whenever the wrapper changes.
1211
println!("cargo:rerun-if-changed=chdb.h");
1312

1413
// The bindgen::Builder is the main entry point
@@ -20,7 +19,7 @@ fn main() {
2019
.header("chdb.h")
2120
// Tell cargo to invalidate the built crate whenever any of the
2221
// included header files changed.
23-
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
22+
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
2423
// Finish the builder and generate the bindings.
2524
.generate()
2625
// Unwrap the Result and panic on failure.
@@ -31,4 +30,4 @@ fn main() {
3130
bindings
3231
.write_to_file(out_path.join("bindings.rs"))
3332
.expect("Couldn't write bindings!");
34-
}
33+
}

examples/basic.rs

-9
This file was deleted.

examples/session.rs

-117
This file was deleted.

src/arg.rs

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
use std::borrow::Cow;
2+
use std::ffi::CString;
3+
4+
use crate::error::Error;
5+
use crate::format::InputFormat;
6+
use crate::format::OutputFormat;
7+
use crate::log_level::LogLevel;
8+
9+
#[derive(Debug)]
10+
pub enum Arg<'a> {
11+
/// --config-file=<value>
12+
ConfigFilePath(Cow<'a, str>),
13+
/// --database=<value>
14+
Database(Cow<'a, str>),
15+
/// --log-level=<value>
16+
LogLevel(LogLevel),
17+
/// --input-format=<value>
18+
InputFormat(InputFormat),
19+
/// --output-format=<value>
20+
OutputFormat(OutputFormat),
21+
/// --multiquery
22+
MultiQuery,
23+
/// Custom argument.
24+
///
25+
/// "--path=/tmp/chdb" translates into one of the following:
26+
/// 1. Arg::Custom("path".to_string().into(), Some("/tmp/chdb".to_string().into())).
27+
/// 2. Arg::Custom("path".into(), Some("/tmp/chdb".into())).
28+
///
29+
/// "--multiline" translates into one of the following:
30+
/// 1. Arg::Custom("multiline".to_string().into(), None).
31+
/// 2. Arg::Custom("multiline".into(), None).
32+
///
33+
/// We should tell user where to look for officially supported arguments.
34+
/// Here is some hint for now: https://github.com/fixcik/chdb-rs/blob/master/OPTIONS.md .
35+
Custom(Cow<'a, str>, Option<Cow<'a, str>>),
36+
}
37+
38+
impl<'a> Arg<'a> {
39+
pub(crate) fn to_cstring(&self) -> Result<CString, Error> {
40+
Ok(match self {
41+
Self::ConfigFilePath(v) => CString::new(format!("--config-file={}", v)),
42+
Self::Database(v) => CString::new(format!("--database={}", v)),
43+
Self::LogLevel(v) => CString::new(format!("--log-level={}", v.as_str())),
44+
Self::InputFormat(v) => CString::new(format!("--input-format={}", v.as_str())),
45+
Self::OutputFormat(v) => CString::new(format!("--output-format={}", v.as_str())),
46+
Self::MultiQuery => CString::new("-n"),
47+
Self::Custom(k, v) => match v {
48+
None => CString::new(k.as_ref()),
49+
Some(v) => CString::new(format!("--{}={}", k, v)),
50+
},
51+
}?)
52+
}
53+
}

src/basic.rs

-62
This file was deleted.

0 commit comments

Comments
 (0)