mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Merge pull request #499 from xfix/unix-invalid-unicode
Allow non-Unicode file names on Unix-like platforms
This commit is contained in:
commit
061748e1f5
48
src/lib.rs
48
src/lib.rs
@ -265,6 +265,13 @@ fn len_as_c_int(len: usize) -> Result<c_int> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
fn path_to_cstring(p: &Path) -> Result<CString> {
|
||||||
|
use std::os::unix::ffi::OsStrExt;
|
||||||
|
Ok(CString::new(p.as_os_str().as_bytes())?)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(unix))]
|
||||||
fn path_to_cstring(p: &Path) -> Result<CString> {
|
fn path_to_cstring(p: &Path) -> Result<CString> {
|
||||||
let s = p.to_str().ok_or_else(|| Error::InvalidPath(p.to_owned()))?;
|
let s = p.to_str().ok_or_else(|| Error::InvalidPath(p.to_owned()))?;
|
||||||
str_to_cstring(s)
|
str_to_cstring(s)
|
||||||
@ -886,7 +893,17 @@ unsafe fn db_filename(db: *mut ffi::sqlite3) -> Option<PathBuf> {
|
|||||||
if db_filename.is_null() {
|
if db_filename.is_null() {
|
||||||
None
|
None
|
||||||
} else {
|
} else {
|
||||||
CStr::from_ptr(db_filename).to_str().ok().map(PathBuf::from)
|
let cstr = CStr::from_ptr(db_filename);
|
||||||
|
#[cfg(unix)]
|
||||||
|
{
|
||||||
|
use std::ffi::OsStr;
|
||||||
|
use std::os::unix::ffi::OsStrExt;
|
||||||
|
Some(OsStr::from_bytes(cstr.to_bytes()).into())
|
||||||
|
}
|
||||||
|
#[cfg(not(unix))]
|
||||||
|
{
|
||||||
|
cstr.to_str().ok().map(PathBuf::from)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[cfg(not(feature = "modern_sqlite"))]
|
#[cfg(not(feature = "modern_sqlite"))]
|
||||||
@ -991,6 +1008,35 @@ mod test {
|
|||||||
assert_eq!(42i64, the_answer.unwrap());
|
assert_eq!(42i64, the_answer.unwrap());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
#[test]
|
||||||
|
fn test_invalid_unicode_file_names() {
|
||||||
|
use std::ffi::OsStr;
|
||||||
|
use std::fs::File;
|
||||||
|
use std::os::unix::ffi::OsStrExt;
|
||||||
|
let temp_dir = TempDir::new("test_invalid_unicode").unwrap();
|
||||||
|
let path = temp_dir.path();
|
||||||
|
if File::create(path.join(OsStr::from_bytes(&[0xFE]))).is_err() {
|
||||||
|
// Skip test, filesystem doesn't support invalid Unicode
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let db_path = path.join(OsStr::from_bytes(&[0xFF]));
|
||||||
|
|
||||||
|
{
|
||||||
|
let db = Connection::open(&db_path).unwrap();
|
||||||
|
let sql = "BEGIN;
|
||||||
|
CREATE TABLE foo(x INTEGER);
|
||||||
|
INSERT INTO foo VALUES(42);
|
||||||
|
END;";
|
||||||
|
db.execute_batch(sql).unwrap();
|
||||||
|
}
|
||||||
|
|
||||||
|
let db = Connection::open(&db_path).unwrap();
|
||||||
|
let the_answer: Result<i64> = db.query_row("SELECT x FROM foo", NO_PARAMS, |r| r.get(0));
|
||||||
|
|
||||||
|
assert_eq!(42i64, the_answer.unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_open() {
|
fn test_open() {
|
||||||
assert!(Connection::open_in_memory().is_ok());
|
assert!(Connection::open_in_memory().is_ok());
|
||||||
|
Loading…
Reference in New Issue
Block a user