Skip to content

Commit 4d1773b

Browse files
authored
Merge pull request #3 from chdb-io/fixPipeline
Fix pipeline
2 parents 16ed1f8 + 87030b6 commit 4d1773b

File tree

4 files changed

+124
-18
lines changed

4 files changed

+124
-18
lines changed

.github/workflows/rust.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,9 @@ jobs:
2222
sudo ldconfig
2323
- name: Build
2424
run: cargo build --verbose
25+
env:
26+
RUST_BACKTRACE: full
2527
- name: Run tests
26-
run: cargo run
28+
run: cargo run --example basic
29+
env:
30+
RUST_BACKTRACE: full

README.md

+7-11
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
1-
<a href="https://chdb.fly.dev" target="_blank">
2-
<img src="https://avatars.githubusercontent.com/u/132536224" width=130 />
3-
</a>
1+
<img src="https://avatars.githubusercontent.com/u/132536224" width=130 />
42

53
[![Rust](https://github.com/chdb-io/chdb-rust/actions/workflows/rust.yml/badge.svg)](https://github.com/chdb-io/chdb-rust/actions/workflows/rust.yml)
64

75
# chdb-rust <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Rust_programming_language_black_logo.svg/1024px-Rust_programming_language_black_logo.svg.png" height=20 />
8-
Experimental [chDB](https://github.com/auxten/chdb) FFI bindings for Rust
6+
Experimental [chDB](https://github.com/chdb-io/chdb) FFI bindings for Rust
97
### Status
108

11-
- experimental, unstable, subject to changes
12-
- requires [`libchdb`](https://github.com/chdb-io/chdb) on the system
13-
- ffi hack for testing. not a proper library or crate!
9+
- Experimental, unstable, subject to changes
10+
- Requires [`libchdb`](https://github.com/chdb-io/chdb) on the system
1411

1512
#### Build binding
1613
```bash
17-
cargo build
18-
cargo run
14+
./update_libchdb.sh
15+
RUST_BACKTRACE=full cargo build --verbose
16+
cargo run --example basic
1917
```
20-
21-
:wave: _Rust developer? Jump in and help us evolve this example into a stable crate!_

src/bindings.rs

+69-6
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
/* automatically generated by rust-bindgen 0.65.1 */
22

33
pub const __WORDSIZE: u32 = 64;
4-
pub const __DARWIN_ONLY_64_BIT_INO_T: u32 = 1;
4+
pub const __DARWIN_ONLY_64_BIT_INO_T: u32 = 0;
55
pub const __DARWIN_ONLY_UNIX_CONFORMANCE: u32 = 1;
6-
pub const __DARWIN_ONLY_VERS_1050: u32 = 1;
6+
pub const __DARWIN_ONLY_VERS_1050: u32 = 0;
77
pub const __DARWIN_UNIX03: u32 = 1;
88
pub const __DARWIN_64_BIT_INO_T: u32 = 1;
99
pub const __DARWIN_VERS_1050: u32 = 1;
1010
pub const __DARWIN_NON_CANCELABLE: u32 = 0;
11+
pub const __DARWIN_SUF_64_BIT_INO_T: &[u8; 9usize] = b"$INODE64\0";
12+
pub const __DARWIN_SUF_1050: &[u8; 6usize] = b"$1050\0";
1113
pub const __DARWIN_SUF_EXTSN: &[u8; 14usize] = b"$DARWIN_EXTSN\0";
1214
pub const __DARWIN_C_ANSI: u32 = 4096;
1315
pub const __DARWIN_C_FULL: u32 = 900000;
1416
pub const __DARWIN_C_LEVEL: u32 = 900000;
1517
pub const __STDC_WANT_LIB_EXT1__: u32 = 1;
1618
pub const __DARWIN_NO_LONG_LONG: u32 = 0;
1719
pub const _DARWIN_FEATURE_64_BIT_INODE: u32 = 1;
18-
pub const _DARWIN_FEATURE_ONLY_64_BIT_INODE: u32 = 1;
19-
pub const _DARWIN_FEATURE_ONLY_VERS_1050: u32 = 1;
2020
pub const _DARWIN_FEATURE_ONLY_UNIX_CONFORMANCE: u32 = 1;
2121
pub const _DARWIN_FEATURE_UNIX_CONFORMANCE: u32 = 3;
2222
pub const __has_ptrcheck: u32 = 0;
@@ -75,7 +75,7 @@ pub const WINT_MAX: u32 = 2147483647;
7575
pub const SIG_ATOMIC_MIN: i32 = -2147483648;
7676
pub const SIG_ATOMIC_MAX: u32 = 2147483647;
7777
pub type wchar_t = ::std::os::raw::c_int;
78-
pub type max_align_t = f64;
78+
pub type max_align_t = u128;
7979
pub type int_least8_t = i8;
8080
pub type int_least16_t = i16;
8181
pub type int_least32_t = i32;
@@ -735,4 +735,67 @@ extern "C" {
735735
extern "C" {
736736
pub fn free_result(result: *mut local_result);
737737
}
738-
pub type __builtin_va_list = *mut ::std::os::raw::c_char;
738+
pub type __builtin_va_list = [__va_list_tag; 1usize];
739+
#[repr(C)]
740+
#[derive(Debug, Copy, Clone)]
741+
pub struct __va_list_tag {
742+
pub gp_offset: ::std::os::raw::c_uint,
743+
pub fp_offset: ::std::os::raw::c_uint,
744+
pub overflow_arg_area: *mut ::std::os::raw::c_void,
745+
pub reg_save_area: *mut ::std::os::raw::c_void,
746+
}
747+
#[test]
748+
fn bindgen_test_layout___va_list_tag() {
749+
const UNINIT: ::std::mem::MaybeUninit<__va_list_tag> = ::std::mem::MaybeUninit::uninit();
750+
let ptr = UNINIT.as_ptr();
751+
assert_eq!(
752+
::std::mem::size_of::<__va_list_tag>(),
753+
24usize,
754+
concat!("Size of: ", stringify!(__va_list_tag))
755+
);
756+
assert_eq!(
757+
::std::mem::align_of::<__va_list_tag>(),
758+
8usize,
759+
concat!("Alignment of ", stringify!(__va_list_tag))
760+
);
761+
assert_eq!(
762+
unsafe { ::std::ptr::addr_of!((*ptr).gp_offset) as usize - ptr as usize },
763+
0usize,
764+
concat!(
765+
"Offset of field: ",
766+
stringify!(__va_list_tag),
767+
"::",
768+
stringify!(gp_offset)
769+
)
770+
);
771+
assert_eq!(
772+
unsafe { ::std::ptr::addr_of!((*ptr).fp_offset) as usize - ptr as usize },
773+
4usize,
774+
concat!(
775+
"Offset of field: ",
776+
stringify!(__va_list_tag),
777+
"::",
778+
stringify!(fp_offset)
779+
)
780+
);
781+
assert_eq!(
782+
unsafe { ::std::ptr::addr_of!((*ptr).overflow_arg_area) as usize - ptr as usize },
783+
8usize,
784+
concat!(
785+
"Offset of field: ",
786+
stringify!(__va_list_tag),
787+
"::",
788+
stringify!(overflow_arg_area)
789+
)
790+
);
791+
assert_eq!(
792+
unsafe { ::std::ptr::addr_of!((*ptr).reg_save_area) as usize - ptr as usize },
793+
16usize,
794+
concat!(
795+
"Offset of field: ",
796+
stringify!(__va_list_tag),
797+
"::",
798+
stringify!(reg_save_area)
799+
)
800+
);
801+
}

update_libchdb.sh

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
#!/bin/bash
3+
4+
# Get the newest release version
5+
LATEST_RELEASE=$(curl --silent "https://api.github.com/repos/chdb-io/chdb/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/')
6+
7+
# Download the correct version based on the platform
8+
case "$(uname -s)" in
9+
Linux)
10+
if [[ $(uname -m) == "aarch64" ]]; then
11+
PLATFORM="linux-aarch64-libchdb.tar.gz"
12+
else
13+
PLATFORM="linux-x86_64-libchdb.tar.gz"
14+
fi
15+
;;
16+
Darwin)
17+
if [[ $(uname -m) == "arm64" ]]; then
18+
PLATFORM="macos-arm64-libchdb.tar.gz"
19+
else
20+
PLATFORM="macos-x86_64-libchdb.tar.gz"
21+
fi
22+
;;
23+
*)
24+
echo "Unsupported platform"
25+
exit 1
26+
;;
27+
esac
28+
29+
DOWNLOAD_URL="https://github.com/chdb-io/chdb/releases/download/$LATEST_RELEASE/$PLATFORM"
30+
31+
echo "Downloading $PLATFORM from $DOWNLOAD_URL"
32+
33+
# Download the file
34+
curl -L -o libchdb.tar.gz $DOWNLOAD_URL
35+
36+
# Untar the file
37+
tar -xzf libchdb.tar.gz
38+
39+
# Set execute permission for libchdb.so
40+
chmod +x libchdb.so
41+
42+
# Clean up
43+
rm -f libchdb.tar.gz

0 commit comments

Comments
 (0)