repo_transaction_stats: move to a manual implementation

This moves `RepoTransactionStats` into a manually implemented
source file in order to provide getters to expose relevant
fields.
This commit is contained in:
Luca BRUNO 2021-06-23 17:12:40 +00:00 committed by Colin Walters
parent bd843b2eae
commit 78ca01c4e3
5 changed files with 51 additions and 28 deletions

View File

@ -89,6 +89,7 @@ manual = [
"OSTree.KernelArgs", "OSTree.KernelArgs",
"OSTree.RepoCheckoutAtOptions", "OSTree.RepoCheckoutAtOptions",
"OSTree.RepoCheckoutFilter", "OSTree.RepoCheckoutFilter",
"OSTree.RepoTransactionStats",
"OSTree.SysrootWriteDeploymentsOpts", "OSTree.SysrootWriteDeploymentsOpts",
"OSTree.SysrootDeployTreeOpts", "OSTree.SysrootDeployTreeOpts",
] ]
@ -187,12 +188,6 @@ status = "generate"
name = "dup" name = "dup"
ignore = true ignore = true
[[object]]
name = "OSTree.RepoTransactionStats"
status = "generate"
init_function_expression = "|_ptr| ()"
clear_function_expression = "|_ptr| ()"
[[object]] [[object]]
name = "OSTree.SePolicy" name = "OSTree.SePolicy"
status = "generate" status = "generate"

View File

@ -108,9 +108,6 @@ mod repo_finder_result;
#[cfg(any(feature = "v2018_6", feature = "dox"))] #[cfg(any(feature = "v2018_6", feature = "dox"))]
pub use self::repo_finder_result::RepoFinderResult; pub use self::repo_finder_result::RepoFinderResult;
mod repo_transaction_stats;
pub use self::repo_transaction_stats::RepoTransactionStats;
mod enums; mod enums;
pub use self::enums::DeploymentUnlockedState; pub use self::enums::DeploymentUnlockedState;
pub use self::enums::GpgSignatureAttr; pub use self::enums::GpgSignatureAttr;

View File

@ -1,19 +0,0 @@
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use gobject_sys;
use ostree_sys;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct RepoTransactionStats(Boxed<ostree_sys::OstreeRepoTransactionStats>);
match fn {
copy => |ptr| gobject_sys::g_boxed_copy(ostree_sys::ostree_repo_transaction_stats_get_type(), ptr as *mut _) as *mut ostree_sys::OstreeRepoTransactionStats,
free => |ptr| gobject_sys::g_boxed_free(ostree_sys::ostree_repo_transaction_stats_get_type(), ptr as *mut _),
init => |_ptr| (),
clear => |_ptr| (),
get_type => || ostree_sys::ostree_repo_transaction_stats_get_type(),
}
}

View File

@ -50,6 +50,8 @@ pub use crate::repo::*;
mod repo_checkout_at_options; mod repo_checkout_at_options;
#[cfg(any(feature = "v2016_8", feature = "dox"))] #[cfg(any(feature = "v2016_8", feature = "dox"))]
pub use crate::repo_checkout_at_options::*; pub use crate::repo_checkout_at_options::*;
mod repo_transaction_stats;
pub use repo_transaction_stats::RepoTransactionStats;
mod se_policy; mod se_policy;
pub use crate::se_policy::*; pub use crate::se_policy::*;
#[cfg(any(feature = "v2020_1", feature = "dox"))] #[cfg(any(feature = "v2020_1", feature = "dox"))]

View File

@ -0,0 +1,48 @@
use gobject_sys;
use ostree_sys;
glib_wrapper! {
/// A list of statistics for each transaction that may be interesting for reporting purposes.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct RepoTransactionStats(Boxed<ostree_sys::OstreeRepoTransactionStats>);
match fn {
copy => |ptr| gobject_sys::g_boxed_copy(ostree_sys::ostree_repo_transaction_stats_get_type(), ptr as *mut _) as *mut ostree_sys::OstreeRepoTransactionStats,
free => |ptr| gobject_sys::g_boxed_free(ostree_sys::ostree_repo_transaction_stats_get_type(), ptr as *mut _),
init => |_ptr| (),
clear => |_ptr| (),
get_type => || ostree_sys::ostree_repo_transaction_stats_get_type(),
}
}
impl RepoTransactionStats {
/// The total number of metadata objects in the repository after this transaction has completed.
pub fn get_metadata_objects_total(&self) -> usize {
self.0.metadata_objects_total as usize
}
/// The number of metadata objects that were written to the repository in this transaction.
pub fn get_metadata_objects_written(&self) -> usize {
self.0.metadata_objects_written as usize
}
/// The total number of content objects in the repository after this transaction has completed.
pub fn get_content_objects_total(&self) -> usize {
self.0.content_objects_total as usize
}
/// The number of content objects that were written to the repository in this transaction.
pub fn get_content_objects_written(&self) -> usize {
self.0.content_objects_written as usize
}
/// The amount of data added to the repository, in bytes, counting only content objects.
pub fn get_content_bytes_written(&self) -> u64 {
self.0.content_bytes_written
}
/// The amount of cache hits during this transaction.
pub fn get_devino_cache_hits(&self) -> usize {
self.0.devino_cache_hits as usize
}
}