forked from mirrors/gstreamer-rs
319 lines
12 KiB
Rust
319 lines
12 KiB
Rust
// This file was generated by gir (https://github.com/gtk-rs/gir @ 1825132)
|
|
// from gir-files (https://github.com/gtk-rs/gir-files @ ???)
|
|
// DO NOT EDIT
|
|
|
|
extern crate gstreamer_tag_sys;
|
|
extern crate shell_words;
|
|
extern crate tempdir;
|
|
use std::env;
|
|
use std::error::Error;
|
|
use std::path::Path;
|
|
use std::mem::{align_of, size_of};
|
|
use std::process::Command;
|
|
use std::str;
|
|
use gstreamer_tag_sys::*;
|
|
|
|
static PACKAGES: &[&str] = &["gstreamer-tag-1.0"];
|
|
|
|
#[derive(Clone, Debug)]
|
|
struct Compiler {
|
|
pub args: Vec<String>,
|
|
}
|
|
|
|
impl Compiler {
|
|
pub fn new() -> Result<Compiler, Box<Error>> {
|
|
let mut args = get_var("CC", "cc")?;
|
|
args.push("-Wno-deprecated-declarations".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(Compiler { args })
|
|
}
|
|
|
|
pub fn define<'a, V: Into<Option<&'a str>>>(&mut self, var: &str, val: V) {
|
|
let arg = match val.into() {
|
|
None => format!("-D{}", var),
|
|
Some(val) => format!("-D{}={}", var, val),
|
|
};
|
|
self.args.push(arg);
|
|
}
|
|
|
|
pub fn compile(&self, src: &Path, out: &Path) -> Result<(), Box<Error>> {
|
|
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 {:?} failed, {}",
|
|
&cmd, 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<Vec<String>, Box<Error>> {
|
|
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<Vec<String>, Box<Error>> {
|
|
if packages.is_empty() {
|
|
return Ok(Vec::new());
|
|
}
|
|
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 {:?} returned {}",
|
|
&cmd, 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,
|
|
/// Number of tests that failed to compile.
|
|
failed_to_compile: usize,
|
|
}
|
|
|
|
impl Results {
|
|
fn record_passed(&mut self) {
|
|
self.passed += 1;
|
|
}
|
|
fn record_failed(&mut self) {
|
|
self.failed += 1;
|
|
}
|
|
fn record_failed_to_compile(&mut self) {
|
|
self.failed += 1;
|
|
self.failed_to_compile += 1;
|
|
}
|
|
fn summary(&self) -> String {
|
|
format!(
|
|
"{} passed; {} failed (compilation errors: {})",
|
|
self.passed,
|
|
self.failed,
|
|
self.failed_to_compile)
|
|
}
|
|
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 tmpdir = tempdir::TempDir::new("abi").expect("temporary directory");
|
|
let cc = Compiler::new().expect("configured compiler");
|
|
|
|
assert_eq!("1",
|
|
get_c_value(tmpdir.path(), &cc, "1").expect("C constant"),
|
|
"failed to obtain correct constant value for 1");
|
|
|
|
let mut results : Results = Default::default();
|
|
for (i, &(name, rust_value)) in RUST_CONSTANTS.iter().enumerate() {
|
|
match get_c_value(tmpdir.path(), &cc, name) {
|
|
Err(e) => {
|
|
results.record_failed_to_compile();
|
|
eprintln!("{}", e);
|
|
},
|
|
Ok(ref c_value) => {
|
|
if rust_value == c_value {
|
|
results.record_passed();
|
|
} else {
|
|
results.record_failed();
|
|
eprintln!("Constant value mismatch for {}\nRust: {:?}\nC: {:?}",
|
|
name, rust_value, c_value);
|
|
}
|
|
}
|
|
};
|
|
if (i + 1) % 25 == 0 {
|
|
println!("constants ... {}", results.summary());
|
|
}
|
|
}
|
|
results.expect_total_success();
|
|
}
|
|
|
|
#[test]
|
|
fn cross_validate_layout_with_c() {
|
|
let tmpdir = tempdir::TempDir::new("abi").expect("temporary directory");
|
|
let cc = Compiler::new().expect("configured compiler");
|
|
|
|
assert_eq!(Layout {size: 1, alignment: 1},
|
|
get_c_layout(tmpdir.path(), &cc, "char").expect("C layout"),
|
|
"failed to obtain correct layout for char type");
|
|
|
|
let mut results : Results = Default::default();
|
|
for (i, &(name, rust_layout)) in RUST_LAYOUTS.iter().enumerate() {
|
|
match get_c_layout(tmpdir.path(), &cc, name) {
|
|
Err(e) => {
|
|
results.record_failed_to_compile();
|
|
eprintln!("{}", e);
|
|
},
|
|
Ok(c_layout) => {
|
|
if rust_layout == c_layout {
|
|
results.record_passed();
|
|
} else {
|
|
results.record_failed();
|
|
eprintln!("Layout mismatch for {}\nRust: {:?}\nC: {:?}",
|
|
name, rust_layout, &c_layout);
|
|
}
|
|
}
|
|
};
|
|
if (i + 1) % 25 == 0 {
|
|
println!("layout ... {}", results.summary());
|
|
}
|
|
}
|
|
results.expect_total_success();
|
|
}
|
|
|
|
fn get_c_layout(dir: &Path, cc: &Compiler, name: &str) -> Result<Layout, Box<Error>> {
|
|
let exe = dir.join("layout");
|
|
let mut cc = cc.clone();
|
|
cc.define("ABI_TYPE_NAME", name);
|
|
cc.compile(Path::new("tests/layout.c"), &exe)?;
|
|
|
|
let mut abi_cmd = Command::new(exe);
|
|
let output = abi_cmd.output()?;
|
|
if !output.status.success() {
|
|
return Err(format!("command {:?} failed, {:?}",
|
|
&abi_cmd, &output).into());
|
|
}
|
|
|
|
let stdout = str::from_utf8(&output.stdout)?;
|
|
let mut words = stdout.trim().split_whitespace();
|
|
let size = words.next().unwrap().parse().unwrap();
|
|
let alignment = words.next().unwrap().parse().unwrap();
|
|
Ok(Layout {size, alignment})
|
|
}
|
|
|
|
fn get_c_value(dir: &Path, cc: &Compiler, name: &str) -> Result<String, Box<Error>> {
|
|
let exe = dir.join("constant");
|
|
let mut cc = cc.clone();
|
|
cc.define("ABI_CONSTANT_NAME", name);
|
|
cc.compile(Path::new("tests/constant.c"), &exe)?;
|
|
|
|
let mut abi_cmd = Command::new(exe);
|
|
let output = abi_cmd.output()?;
|
|
if !output.status.success() {
|
|
return Err(format!("command {:?} failed, {:?}",
|
|
&abi_cmd, &output).into());
|
|
}
|
|
|
|
Ok(str::from_utf8(&output.stdout)?.trim().to_owned())
|
|
}
|
|
|
|
const RUST_LAYOUTS: &[(&str, Layout)] = &[
|
|
("GstTagDemux", Layout {size: size_of::<GstTagDemux>(), alignment: align_of::<GstTagDemux>()}),
|
|
("GstTagDemuxClass", Layout {size: size_of::<GstTagDemuxClass>(), alignment: align_of::<GstTagDemuxClass>()}),
|
|
("GstTagDemuxResult", Layout {size: size_of::<GstTagDemuxResult>(), alignment: align_of::<GstTagDemuxResult>()}),
|
|
("GstTagImageType", Layout {size: size_of::<GstTagImageType>(), alignment: align_of::<GstTagImageType>()}),
|
|
("GstTagLicenseFlags", Layout {size: size_of::<GstTagLicenseFlags>(), alignment: align_of::<GstTagLicenseFlags>()}),
|
|
("GstTagMux", Layout {size: size_of::<GstTagMux>(), alignment: align_of::<GstTagMux>()}),
|
|
("GstTagMuxClass", Layout {size: size_of::<GstTagMuxClass>(), alignment: align_of::<GstTagMuxClass>()}),
|
|
("GstTagXmpWriterInterface", Layout {size: size_of::<GstTagXmpWriterInterface>(), alignment: align_of::<GstTagXmpWriterInterface>()}),
|
|
];
|
|
|
|
const RUST_CONSTANTS: &[(&str, &str)] = &[
|
|
("GST_TAG_CAPTURING_CONTRAST", "capturing-contrast"),
|
|
("GST_TAG_CAPTURING_DIGITAL_ZOOM_RATIO", "capturing-digital-zoom-ratio"),
|
|
("GST_TAG_CAPTURING_EXPOSURE_COMPENSATION", "capturing-exposure-compensation"),
|
|
("GST_TAG_CAPTURING_EXPOSURE_MODE", "capturing-exposure-mode"),
|
|
("GST_TAG_CAPTURING_EXPOSURE_PROGRAM", "capturing-exposure-program"),
|
|
("GST_TAG_CAPTURING_FLASH_FIRED", "capturing-flash-fired"),
|
|
("GST_TAG_CAPTURING_FLASH_MODE", "capturing-flash-mode"),
|
|
("GST_TAG_CAPTURING_FOCAL_LENGTH", "capturing-focal-length"),
|
|
("GST_TAG_CAPTURING_FOCAL_LENGTH_35_MM", "capturing-focal-length-35mm"),
|
|
("GST_TAG_CAPTURING_FOCAL_RATIO", "capturing-focal-ratio"),
|
|
("GST_TAG_CAPTURING_GAIN_ADJUSTMENT", "capturing-gain-adjustment"),
|
|
("GST_TAG_CAPTURING_ISO_SPEED", "capturing-iso-speed"),
|
|
("GST_TAG_CAPTURING_METERING_MODE", "capturing-metering-mode"),
|
|
("GST_TAG_CAPTURING_SATURATION", "capturing-saturation"),
|
|
("GST_TAG_CAPTURING_SCENE_CAPTURE_TYPE", "capturing-scene-capture-type"),
|
|
("GST_TAG_CAPTURING_SHARPNESS", "capturing-sharpness"),
|
|
("GST_TAG_CAPTURING_SHUTTER_SPEED", "capturing-shutter-speed"),
|
|
("GST_TAG_CAPTURING_SOURCE", "capturing-source"),
|
|
("GST_TAG_CAPTURING_WHITE_BALANCE", "capturing-white-balance"),
|
|
("GST_TAG_CDDA_CDDB_DISCID", "discid"),
|
|
("GST_TAG_CDDA_CDDB_DISCID_FULL", "discid-full"),
|
|
("GST_TAG_CDDA_MUSICBRAINZ_DISCID", "musicbrainz-discid"),
|
|
("GST_TAG_CDDA_MUSICBRAINZ_DISCID_FULL", "musicbrainz-discid-full"),
|
|
("GST_TAG_CMML_CLIP", "cmml-clip"),
|
|
("GST_TAG_CMML_HEAD", "cmml-head"),
|
|
("GST_TAG_CMML_STREAM", "cmml-stream"),
|
|
("GST_TAG_DEMUX_RESULT_AGAIN", "1"),
|
|
("GST_TAG_DEMUX_RESULT_BROKEN_TAG", "0"),
|
|
("GST_TAG_DEMUX_RESULT_OK", "2"),
|
|
("GST_TAG_ID3V2_HEADER_SIZE", "10"),
|
|
("GST_TAG_IMAGE_HORIZONTAL_PPI", "image-horizontal-ppi"),
|
|
("GST_TAG_IMAGE_TYPE_ARTIST", "6"),
|
|
("GST_TAG_IMAGE_TYPE_BACK_COVER", "2"),
|
|
("GST_TAG_IMAGE_TYPE_BAND_ARTIST_LOGO", "17"),
|
|
("GST_TAG_IMAGE_TYPE_BAND_ORCHESTRA", "8"),
|
|
("GST_TAG_IMAGE_TYPE_COMPOSER", "9"),
|
|
("GST_TAG_IMAGE_TYPE_CONDUCTOR", "7"),
|
|
("GST_TAG_IMAGE_TYPE_DURING_PERFORMANCE", "13"),
|
|
("GST_TAG_IMAGE_TYPE_DURING_RECORDING", "12"),
|
|
("GST_TAG_IMAGE_TYPE_FISH", "15"),
|
|
("GST_TAG_IMAGE_TYPE_FRONT_COVER", "1"),
|
|
("GST_TAG_IMAGE_TYPE_ILLUSTRATION", "16"),
|
|
("GST_TAG_IMAGE_TYPE_LEAD_ARTIST", "5"),
|
|
("GST_TAG_IMAGE_TYPE_LEAFLET_PAGE", "3"),
|
|
("GST_TAG_IMAGE_TYPE_LYRICIST", "10"),
|
|
("GST_TAG_IMAGE_TYPE_MEDIUM", "4"),
|
|
("GST_TAG_IMAGE_TYPE_NONE", "-1"),
|
|
("GST_TAG_IMAGE_TYPE_PUBLISHER_STUDIO_LOGO", "18"),
|
|
("GST_TAG_IMAGE_TYPE_RECORDING_LOCATION", "11"),
|
|
("GST_TAG_IMAGE_TYPE_UNDEFINED", "0"),
|
|
("GST_TAG_IMAGE_TYPE_VIDEO_CAPTURE", "14"),
|
|
("GST_TAG_IMAGE_VERTICAL_PPI", "image-vertical-ppi"),
|
|
("GST_TAG_LICENSE_CREATIVE_COMMONS_LICENSE", "16777216"),
|
|
("GST_TAG_LICENSE_FREE_SOFTWARE_FOUNDATION_LICENSE", "33554432"),
|
|
("GST_TAG_LICENSE_PERMITS_DERIVATIVE_WORKS", "4"),
|
|
("GST_TAG_LICENSE_PERMITS_DISTRIBUTION", "2"),
|
|
("GST_TAG_LICENSE_PERMITS_REPRODUCTION", "1"),
|
|
("GST_TAG_LICENSE_PERMITS_SHARING", "8"),
|
|
("GST_TAG_LICENSE_PROHIBITS_COMMERCIAL_USE", "65536"),
|
|
("GST_TAG_LICENSE_PROHIBITS_HIGH_INCOME_NATION_USE", "131072"),
|
|
("GST_TAG_LICENSE_REQUIRES_ATTRIBUTION", "512"),
|
|
("GST_TAG_LICENSE_REQUIRES_COPYLEFT", "4096"),
|
|
("GST_TAG_LICENSE_REQUIRES_LESSER_COPYLEFT", "8192"),
|
|
("GST_TAG_LICENSE_REQUIRES_NOTICE", "256"),
|
|
("GST_TAG_LICENSE_REQUIRES_SHARE_ALIKE", "1024"),
|
|
("GST_TAG_LICENSE_REQUIRES_SOURCE_CODE", "2048"),
|
|
("GST_TAG_MUSICAL_KEY", "musical-key"),
|
|
("GST_TAG_MUSICBRAINZ_ALBUMARTISTID", "musicbrainz-albumartistid"),
|
|
("GST_TAG_MUSICBRAINZ_ALBUMID", "musicbrainz-albumid"),
|
|
("GST_TAG_MUSICBRAINZ_ARTISTID", "musicbrainz-artistid"),
|
|
("GST_TAG_MUSICBRAINZ_TRACKID", "musicbrainz-trackid"),
|
|
("GST_TAG_MUSICBRAINZ_TRMID", "musicbrainz-trmid"),
|
|
];
|
|
|
|
|