-
-
Notifications
You must be signed in to change notification settings - Fork 101
sql: switch from sqlx to rusqlite #2380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "deltachat_derive" | ||
version = "2.0.0" | ||
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
syn = "1.0.13" | ||
quote = "1.0.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#![recursion_limit = "128"] | ||
extern crate proc_macro; | ||
|
||
use crate::proc_macro::TokenStream; | ||
use quote::quote; | ||
|
||
// For now, assume (not check) that these macroses are applied to enum without | ||
// data. If this assumption is violated, compiler error will point to | ||
// generated code, which is not very user-friendly. | ||
|
||
#[proc_macro_derive(ToSql)] | ||
pub fn to_sql_derive(input: TokenStream) -> TokenStream { | ||
let ast: syn::DeriveInput = syn::parse(input).unwrap(); | ||
let name = &ast.ident; | ||
|
||
let gen = quote! { | ||
impl rusqlite::types::ToSql for #name { | ||
fn to_sql(&self) -> rusqlite::Result<rusqlite::types::ToSqlOutput> { | ||
let num = *self as i64; | ||
let value = rusqlite::types::Value::Integer(num); | ||
let output = rusqlite::types::ToSqlOutput::Owned(value); | ||
std::result::Result::Ok(output) | ||
} | ||
} | ||
}; | ||
gen.into() | ||
} | ||
|
||
#[proc_macro_derive(FromSql)] | ||
pub fn from_sql_derive(input: TokenStream) -> TokenStream { | ||
let ast: syn::DeriveInput = syn::parse(input).unwrap(); | ||
let name = &ast.ident; | ||
|
||
let gen = quote! { | ||
impl rusqlite::types::FromSql for #name { | ||
fn column_result(col: rusqlite::types::ValueRef) -> rusqlite::types::FromSqlResult<Self> { | ||
let inner = rusqlite::types::FromSql::column_result(col)?; | ||
if let Some(value) = num_traits::FromPrimitive::from_i64(inner) { | ||
Ok(value) | ||
} else { | ||
Err(rusqlite::types::FromSqlError::OutOfRange(inner)) | ||
} | ||
} | ||
} | ||
}; | ||
gen.into() | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to turn the bundled feature off for a distribution package? I guess we'll have to patch
Cargo.toml
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deltachat-core-rust
is a Rust package too and has its own features. We can change the[features]
section inCargo.toml
to:And then you can build with
--no-default-features
if you don't want bundled SQLite. I don't mind hardcoding--no-default-features
toCMakeLists.txt
in this case.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be nice! Hardcoding
--no-default-features
inCMakeLists.txt
is up to you, I can also change that in Nixpkgs.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am going to do this with
rusqlite
update then.Since you are packaging tagged release anyway, for now you can just patch
Cargo.toml
.