From 62263e0e619625f2c5dd0b4364b43bd4fefc8ccd Mon Sep 17 00:00:00 2001 From: Vika Date: Thu, 30 Jan 2025 08:49:22 +0300 Subject: libsecret: 0.6.0 (private fork) -> 0.7.0 (upstream) libsecret is now maintained again! No need for a private fork. --- libsecret/src/functions.rs | 741 --------------------------------------------- 1 file changed, 741 deletions(-) delete mode 100644 libsecret/src/functions.rs (limited to 'libsecret/src/functions.rs') diff --git a/libsecret/src/functions.rs b/libsecret/src/functions.rs deleted file mode 100644 index 6dce25e..0000000 --- a/libsecret/src/functions.rs +++ /dev/null @@ -1,741 +0,0 @@ -use std::boxed::Box as Box_; -use std::collections::HashMap; - -use crate::{hashtable::attribute_names_and_values, Schema}; -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -use crate::{Retrievable, SearchFlags, Value}; -use glib::{object::IsA, translate::*}; - -#[doc(alias = "secret_password_clearv_sync")] -#[doc(alias = "secret_password_clear_sync")] -#[doc(alias = "password_clearv_sync")] -pub fn password_clear_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, -) -> Result<(), glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - ffi::secret_password_clearv_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - } - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_lookupv_binary_sync")] -#[doc(alias = "secret_password_lookup_binary_sync")] -#[doc(alias = "password_lookupv_binary_sync")] -pub fn password_lookup_binary_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, -) -> Result, glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - let value = ffi::secret_password_lookupv_binary_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(from_glib_full(value)) - } else { - Err(from_glib_full(err)) - } - } -} - -#[doc(alias = "secret_password_lookupv_nonpageable_sync")] -#[doc(alias = "secret_password_lookup_nonpageable_sync")] -#[doc(alias = "password_lookupv_nonpageable_sync")] -pub fn password_lookup_nonpageable_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, -) -> Result { - unsafe { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_lookupv_nonpageable_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(from_glib_full(res)) - } else { - Err(from_glib_full(err)) - } - } -} - -#[doc(alias = "secret_password_lookupv_sync")] -#[doc(alias = "secret_password_lookup_sync")] -#[doc(alias = "password_lookupv_sync")] -pub fn password_lookup_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, -) -> Result, glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_lookupv_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(from_glib_full(res)) - } else { - Err(from_glib_full(err)) - } - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_searchv_sync")] -#[doc(alias = "secret_password_search_sync")] -#[doc(alias = "password_searchv_sync")] -pub fn password_search_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - flags: SearchFlags, - cancellable: Option<&impl IsA>, -) -> Result, glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_searchv_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - flags.into_glib(), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(FromGlibPtrContainer::from_glib_full(res)) - } else { - Err(from_glib_full(err)) - } - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_storev_binary_sync")] -#[doc(alias = "secret_password_store_binary_sync")] -#[doc(alias = "password_storev_binary_sync")] -pub fn password_store_binary_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - value: &Value, - cancellable: Option<&impl IsA>, -) -> Result<(), glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - ffi::secret_password_storev_binary_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - collection.to_glib_none().0, - label.to_glib_none().0, - value.to_glib_none().0, - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - } - } -} - -#[doc(alias = "secret_password_storev_sync")] -#[doc(alias = "secret_password_store_sync")] -#[doc(alias = "password_storev_sync")] -pub fn password_store_sync( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - password: &str, - cancellable: Option<&impl IsA>, -) -> Result<(), glib::Error> { - unsafe { - let mut err = std::ptr::null_mut(); - ffi::secret_password_storev_sync( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - collection.to_glib_none().0, - label.to_glib_none().0, - password.to_glib_none().0, - cancellable.map(|c| c.as_ref()).to_glib_none().0, - &mut err, - ); - if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - } - } -} - -#[doc(alias = "secret_password_clearv")] -#[doc(alias = "secret_password_clear")] -#[doc(alias = "password_clearv")] -pub fn password_clear) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline) + 'static>( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - ffi::secret_password_clear_finish(res, &mut err); - let result = if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - }; - - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_clearv( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[doc(alias = "secret_password_clearv")] -#[doc(alias = "secret_password_clear")] -#[doc(alias = "password_clearv")] -pub async fn password_clear_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, -) -> Result<(), glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_clear( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[doc(alias = "secret_password_lookupv")] -#[doc(alias = "secret_password_lookup")] -#[doc(alias = "password_lookupv")] -pub fn password_lookup, glib::Error>) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline< - P: FnOnce(Result, glib::Error>) + 'static, - >( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_lookup_finish(res, &mut err); - let result = if err.is_null() { - Ok(from_glib_full(res)) - } else { - Err(from_glib_full(err)) - }; - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_lookupv( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[doc(alias = "secret_password_lookupv")] -#[doc(alias = "secret_password_lookup")] -#[doc(alias = "password_lookupv")] -pub async fn password_lookup_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, -) -> Result, glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_lookup( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_lookupv_binary")] -#[doc(alias = "secret_password_lookup_binary")] -#[doc(alias = "password_lookupv_binary")] -pub fn password_lookup_binary, glib::Error>) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline, glib::Error>) + 'static>( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_lookup_binary_finish(res, &mut err); - let result = if err.is_null() { - Ok(from_glib_full(res)) - } else { - Err(from_glib_full(err)) - }; - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_lookupv( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_lookupv_binary")] -#[doc(alias = "secret_password_lookup_binary")] -#[doc(alias = "password_lookupv_binary")] -pub async fn password_lookup_binary_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, -) -> Result, glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_lookup_binary( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[doc(alias = "secret_password_lookupv_nonpageable")] -#[doc(alias = "secret_password_lookup_nonpageable")] -#[doc(alias = "password_lookupv_nonpageable")] -pub fn password_lookup_nonpageable< - P: FnOnce(Result, glib::Error>) + 'static, ->( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline< - P: FnOnce(Result, glib::Error>) + 'static, - >( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_lookup_nonpageable_finish(res, &mut err); - let result = if err.is_null() { - Ok(from_glib_full(res)) - } else { - Err(from_glib_full(err)) - }; - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_lookupv( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[doc(alias = "secret_password_lookupv_nonpageable")] -#[doc(alias = "secret_password_lookup_nonpageable")] -#[doc(alias = "password_lookupv_nonpageable")] -pub async fn password_lookup_nonpageable_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, -) -> Result, glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_lookup_nonpageable( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[doc(alias = "secret_password_storev")] -#[doc(alias = "secret_password_store")] -#[doc(alias = "password_storev")] -pub fn password_store) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - password: &str, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline) + 'static>( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - ffi::secret_password_store_finish(res, &mut err); - let result = if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - }; - - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_storev( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - collection.to_glib_none().0, - label.to_glib_none().0, - password.to_glib_none().0, - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[doc(alias = "secret_password_storev")] -#[doc(alias = "secret_password_store")] -#[doc(alias = "password_storev")] -pub async fn password_store_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - password: &str, -) -> Result<(), glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let collection = collection.map(ToOwned::to_owned); - let label = label.to_owned(); - let password = password.to_owned(); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_store( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - collection.as_ref().map(::std::borrow::Borrow::borrow), - &label, - &password, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_storev_binary")] -#[doc(alias = "secret_password_store_binary")] -#[doc(alias = "password_storev_binary")] -pub fn password_store_binary) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - value: &Value, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline) + 'static>( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - let _ = ffi::secret_password_store_finish(res, &mut err); - let result = if err.is_null() { - Ok(()) - } else { - Err(from_glib_full(err)) - }; - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_storev_binary( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - collection.to_glib_none().0, - label.to_glib_none().0, - value.to_glib_none().0, - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_storev_binary")] -#[doc(alias = "secret_password_store_binary")] -#[doc(alias = "password_storev_binary")] -pub async fn password_store_binary_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - collection: Option<&str>, - label: &str, - value: &Value, -) -> Result<(), glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let collection = collection.map(ToOwned::to_owned); - let label = label.to_owned(); - let password = value.clone(); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_store_binary( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - collection.as_ref().map(::std::borrow::Borrow::borrow), - &label, - &password, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_searchv")] -#[doc(alias = "secret_password_search")] -#[doc(alias = "password_searchv")] -pub fn password_search, glib::Error>) + 'static>( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - flags: SearchFlags, - cancellable: Option<&impl IsA>, - callback: P, -) { - let user_data: Box_> = - Box_::new(glib::thread_guard::ThreadGuard::new(callback)); - unsafe extern "C" fn trampoline, glib::Error>) + 'static>( - _source_object: *mut glib::gobject_ffi::GObject, - res: *mut gio::ffi::GAsyncResult, - user_data: glib::ffi::gpointer, - ) { - let mut err = std::ptr::null_mut(); - let res = ffi::secret_password_search_finish(res, &mut err); - let result = if err.is_null() { - Ok(FromGlibPtrContainer::from_glib_full(res)) - } else { - Err(from_glib_full(err)) - }; - - let callback: Box_> = - Box_::from_raw(user_data as *mut _); - let callback: P = callback.into_inner(); - callback(result); - } - - let callback = trampoline::

; - unsafe { - ffi::secret_password_searchv( - schema.to_glib_none().0, - attribute_names_and_values(attributes), - flags.into_glib(), - cancellable.map(|c| c.as_ref()).to_glib_none().0, - Some(callback), - Box_::into_raw(user_data) as *mut _, - ); - } -} - -#[cfg(any(feature = "v0_19", feature = "dox"))] -#[cfg_attr(feature = "dox", doc(cfg(feature = "v0_19")))] -#[doc(alias = "secret_password_searchv")] -#[doc(alias = "secret_password_search")] -#[doc(alias = "password_searchv")] -pub async fn password_search_future( - schema: Option<&Schema>, - attributes: HashMap<&str, &str>, - flags: SearchFlags, -) -> Result, glib::Error> { - let schema = schema.map(ToOwned::to_owned); - let owned_map = attributes - .into_iter() - .map(|(k, v)| (k.to_string(), v.to_string())) - .collect::>(); - gio::GioFuture::new(&(), move |_obj, cancellable, send| { - let attributes = owned_map - .iter() - .map(|(k, v)| (k.as_str(), v.as_str())) - .collect::>(); - password_search( - schema.as_ref().map(::std::borrow::Borrow::borrow), - attributes, - flags, - Some(cancellable), - move |res| { - send.resolve(res); - }, - ); - }) - .await -} -- cgit 1.4.1