// Generated by gir (https://github.com/gtk-rs/gir @ 23d7c100187c) // from // from gir-files (https://github.com/gtk-rs/gir-files.git @ 6415239ef435) // DO NOT EDIT #![cfg(unix)] use libhandy_sys::*; use std::env; use std::error::Error; use std::ffi::OsString; use std::mem::{align_of, size_of}; use std::path::Path; use std::process::Command; use std::str; use tempfile::Builder; static PACKAGES: &[&str] = &["libhandy-1"]; #[derive(Clone, Debug)] struct Compiler { pub args: Vec, } impl Compiler { pub fn new() -> Result> { let mut args = get_var("CC", "cc")?; args.push("-Wno-deprecated-declarations".to_owned()); // For _Generic args.push("-std=c11".to_owned()); // For %z support in printf when using MinGW. args.push("-D__USE_MINGW_ANSI_STDIO".to_owned()); args.extend(get_var("CFLAGS", "")?); args.extend(get_var("CPPFLAGS", "")?); args.extend(pkg_config_cflags(PACKAGES)?); Ok(Self { args }) } pub fn compile(&self, src: &Path, out: &Path) -> Result<(), Box> { let mut cmd = self.to_command(); cmd.arg(src); cmd.arg("-o"); cmd.arg(out); let status = cmd.spawn()?.wait()?; if !status.success() { return Err(format!("compilation command {cmd:?} failed, {status}").into()); } Ok(()) } fn to_command(&self) -> Command { let mut cmd = Command::new(&self.args[0]); cmd.args(&self.args[1..]); cmd } } fn get_var(name: &str, default: &str) -> Result, Box> { match env::var(name) { Ok(value) => Ok(shell_words::split(&value)?), Err(env::VarError::NotPresent) => Ok(shell_words::split(default)?), Err(err) => Err(format!("{name} {err}").into()), } } fn pkg_config_cflags(packages: &[&str]) -> Result, Box> { if packages.is_empty() { return Ok(Vec::new()); } let pkg_config = env::var_os("PKG_CONFIG").unwrap_or_else(|| OsString::from("pkg-config")); let mut cmd = Command::new(pkg_config); cmd.arg("--cflags"); cmd.args(packages); let out = cmd.output()?; if !out.status.success() { return Err(format!("command {cmd:?} returned {}", out.status).into()); } let stdout = str::from_utf8(&out.stdout)?; Ok(shell_words::split(stdout.trim())?) } #[derive(Copy, Clone, Debug, Eq, PartialEq)] struct Layout { size: usize, alignment: usize, } #[derive(Copy, Clone, Debug, Default, Eq, PartialEq)] struct Results { /// Number of successfully completed tests. passed: usize, /// Total number of failed tests (including those that failed to compile). failed: usize, } impl Results { fn record_passed(&mut self) { self.passed += 1; } fn record_failed(&mut self) { self.failed += 1; } fn summary(&self) -> String { format!("{} passed; {} failed", self.passed, self.failed) } fn expect_total_success(&self) { if self.failed == 0 { println!("OK: {}", self.summary()); } else { panic!("FAILED: {}", self.summary()); }; } } #[test] fn cross_validate_constants_with_c() { let mut c_constants: Vec<(String, String)> = Vec::new(); for l in get_c_output("constant").unwrap().lines() { let (name, value) = l.split_once(';').expect("Missing ';' separator"); c_constants.push((name.to_owned(), value.to_owned())); } let mut results = Results::default(); for ((rust_name, rust_value), (c_name, c_value)) in RUST_CONSTANTS.iter().zip(c_constants.iter()) { if rust_name != c_name { results.record_failed(); eprintln!("Name mismatch:\nRust: {rust_name:?}\nC: {c_name:?}"); continue; } if rust_value != c_value { results.record_failed(); eprintln!( "Constant value mismatch for {rust_name}\nRust: {rust_value:?}\nC: {c_value:?}", ); continue; } results.record_passed(); } results.expect_total_success(); } #[test] fn cross_validate_layout_with_c() { let mut c_layouts = Vec::new(); for l in get_c_output("layout").unwrap().lines() { let (name, value) = l.split_once(';').expect("Missing first ';' separator"); let (size, alignment) = value.split_once(';').expect("Missing second ';' separator"); let size = size.parse().expect("Failed to parse size"); let alignment = alignment.parse().expect("Failed to parse alignment"); c_layouts.push((name.to_owned(), Layout { size, alignment })); } let mut results = Results::default(); for ((rust_name, rust_layout), (c_name, c_layout)) in RUST_LAYOUTS.iter().zip(c_layouts.iter()) { if rust_name != c_name { results.record_failed(); eprintln!("Name mismatch:\nRust: {rust_name:?}\nC: {c_name:?}"); continue; } if rust_layout != c_layout { results.record_failed(); eprintln!("Layout mismatch for {rust_name}\nRust: {rust_layout:?}\nC: {c_layout:?}",); continue; } results.record_passed(); } results.expect_total_success(); } fn get_c_output(name: &str) -> Result> { let tmpdir = Builder::new().prefix("abi").tempdir()?; let exe = tmpdir.path().join(name); let c_file = Path::new("tests").join(name).with_extension("c"); let cc = Compiler::new().expect("configured compiler"); cc.compile(&c_file, &exe)?; let mut abi_cmd = Command::new(exe); let output = abi_cmd.output()?; if !output.status.success() { return Err(format!("command {abi_cmd:?} failed, {output:?}").into()); } Ok(String::from_utf8(output.stdout)?) } const RUST_LAYOUTS: &[(&str, Layout)] = &[ ( "HdyActionRow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyActionRowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyApplicationWindow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyApplicationWindowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyAvatarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyCarouselClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyCarouselIndicatorDotsClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyCarouselIndicatorLinesClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyCenteringPolicy", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyClampClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyColorScheme", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyComboRow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyComboRowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyDeck", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyDeckClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyDeckTransitionType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyEnumValueObjectClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyExpanderRow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyExpanderRowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyFlapClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyFlapFoldPolicy", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyFlapTransitionType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyHeaderBar", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyHeaderBarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyHeaderGroupChildClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyHeaderGroupChildType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyHeaderGroupClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyKeypad", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyKeypadClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyLeaflet", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyLeafletClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyLeafletTransitionType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyNavigationDirection", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesGroup", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesGroupClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesPage", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesPageClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesRow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesRowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesWindow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyPreferencesWindowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySearchBar", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySearchBarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySqueezerClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySqueezerTransitionType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyStatusPageClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyStyleManagerClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySwipeGroupClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySwipeTrackerClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdySwipeableInterface", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyTabBarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyTabPageClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyTabViewClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyTitleBarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyValueObjectClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyViewSwitcherBarClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyViewSwitcherClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyViewSwitcherPolicy", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyViewSwitcherTitleClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyWindow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyWindowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "HdyWindowHandleClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ]; const RUST_CONSTANTS: &[(&str, &str)] = &[ ("(gint) HDY_CENTERING_POLICY_LOOSE", "0"), ("(gint) HDY_CENTERING_POLICY_STRICT", "1"), ("(gint) HDY_COLOR_SCHEME_DEFAULT", "0"), ("(gint) HDY_COLOR_SCHEME_FORCE_DARK", "4"), ("(gint) HDY_COLOR_SCHEME_FORCE_LIGHT", "1"), ("(gint) HDY_COLOR_SCHEME_PREFER_DARK", "3"), ("(gint) HDY_COLOR_SCHEME_PREFER_LIGHT", "2"), ("(gint) HDY_DECK_TRANSITION_TYPE_OVER", "0"), ("(gint) HDY_DECK_TRANSITION_TYPE_SLIDE", "2"), ("(gint) HDY_DECK_TRANSITION_TYPE_UNDER", "1"), ("(gint) HDY_FLAP_FOLD_POLICY_ALWAYS", "1"), ("(gint) HDY_FLAP_FOLD_POLICY_AUTO", "2"), ("(gint) HDY_FLAP_FOLD_POLICY_NEVER", "0"), ("(gint) HDY_FLAP_TRANSITION_TYPE_OVER", "0"), ("(gint) HDY_FLAP_TRANSITION_TYPE_SLIDE", "2"), ("(gint) HDY_FLAP_TRANSITION_TYPE_UNDER", "1"), ("(gint) HDY_HEADER_GROUP_CHILD_TYPE_GTK_HEADER_BAR", "1"), ("(gint) HDY_HEADER_GROUP_CHILD_TYPE_HEADER_BAR", "0"), ("(gint) HDY_HEADER_GROUP_CHILD_TYPE_HEADER_GROUP", "2"), ("(gint) HDY_LEAFLET_TRANSITION_TYPE_OVER", "0"), ("(gint) HDY_LEAFLET_TRANSITION_TYPE_SLIDE", "2"), ("(gint) HDY_LEAFLET_TRANSITION_TYPE_UNDER", "1"), ("(gint) HDY_NAVIGATION_DIRECTION_BACK", "0"), ("(gint) HDY_NAVIGATION_DIRECTION_FORWARD", "1"), ("(gint) HDY_SQUEEZER_TRANSITION_TYPE_CROSSFADE", "1"), ("(gint) HDY_SQUEEZER_TRANSITION_TYPE_NONE", "0"), ("(gint) HDY_VIEW_SWITCHER_POLICY_AUTO", "0"), ("(gint) HDY_VIEW_SWITCHER_POLICY_NARROW", "1"), ("(gint) HDY_VIEW_SWITCHER_POLICY_WIDE", "2"), ];