// This file was generated by gir (https://github.com/gtk-rs/gir @ 8f15e55) // from gir-files (https://github.com/gtk-rs/gir-files @ ???) // DO NOT EDIT extern crate gstreamer_gl_sys; extern crate shell_words; extern crate tempdir; use gstreamer_gl_sys::*; use std::env; use std::error::Error; use std::mem::{align_of, size_of}; use std::path::Path; use std::process::Command; use std::str; static PACKAGES: &[&str] = &["gstreamer-gl-1.0"]; #[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 %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>>(&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> { 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, 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 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> { 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> { 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()); } let output = str::from_utf8(&output.stdout)?.trim(); if !output.starts_with("###gir test###") || !output.ends_with("###gir test###") { return Err(format!( "command {:?} return invalid output, {:?}", &abi_cmd, &output ) .into()); } Ok(String::from(&output[14..(output.len() - 14)])) } const RUST_LAYOUTS: &[(&str, Layout)] = &[ ( "GstGLAPI", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLAllocationParams", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLAsyncDebug", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseFilter", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseFilterClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseMemory", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseMemoryAllocator", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseMemoryAllocatorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseMemoryError", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBaseMemoryTransfer", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBuffer", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBufferAllocationParams", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBufferAllocator", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBufferAllocatorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBufferPool", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLBufferPoolClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLColorConvert", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLColorConvertClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLContext", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLContextClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLContextError", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLDisplay", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLDisplayClass", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "egl", feature = "dox"))] ( "GstGLDisplayEGL", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "egl", feature = "dox"))] ( "GstGLDisplayEGLClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLDisplayType", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "wayland", feature = "dox"))] ( "GstGLDisplayWayland", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "wayland", feature = "dox"))] ( "GstGLDisplayWaylandClass", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "x11", feature = "dox"))] ( "GstGLDisplayX11", Layout { size: size_of::(), alignment: align_of::(), }, ), #[cfg(any(feature = "x11", feature = "dox"))] ( "GstGLDisplayX11Class", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLFilter", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLFilterClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLFormat", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLFramebuffer", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLFramebufferClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemory", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemoryAllocator", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemoryAllocatorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemoryPBO", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemoryPBOAllocator", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLMemoryPBOAllocatorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLOverlayCompositor", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLOverlayCompositorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLPlatform", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLQuery", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLQueryType", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLRenderbuffer", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLRenderbufferAllocationParams", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLRenderbufferAllocator", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLRenderbufferAllocatorClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSLError", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSLProfile", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSLStage", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSLStageClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSLVersion", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLShader", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLShaderClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLStereoDownmix", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLSyncMeta", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLTextureTarget", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLUpload", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLUploadClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLUploadReturn", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLVideoAllocationParams", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLViewConvert", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLViewConvertClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLWindow", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLWindowClass", Layout { size: size_of::(), alignment: align_of::(), }, ), ( "GstGLWindowError", Layout { size: size_of::(), alignment: align_of::(), }, ), ]; const RUST_CONSTANTS: &[(&str, &str)] = &[ ("GST_BUFFER_POOL_OPTION_GL_SYNC_META", "GstBufferPoolOptionGLSyncMeta"), ("GST_BUFFER_POOL_OPTION_GL_TEXTURE_TARGET_2D", "GstBufferPoolOptionGLTextureTarget2D"), ("GST_BUFFER_POOL_OPTION_GL_TEXTURE_TARGET_EXTERNAL_OES", "GstBufferPoolOptionGLTextureTargetExternalOES"), ("GST_BUFFER_POOL_OPTION_GL_TEXTURE_TARGET_RECTANGLE", "GstBufferPoolOptionGLTextureTargetRectangle"), ("GST_CAPS_FEATURE_MEMORY_GL_BUFFER", "memory:GLBuffer"), ("GST_CAPS_FEATURE_MEMORY_GL_MEMORY", "memory:GLMemory"), ("(gint) GST_GLSL_ERROR_COMPILE", "0"), ("(gint) GST_GLSL_ERROR_LINK", "1"), ("(gint) GST_GLSL_ERROR_PROGRAM", "2"), ("(guint) GST_GLSL_PROFILE_ANY", "4294967295"), ("(guint) GST_GLSL_PROFILE_COMPATIBILITY", "4"), ("(guint) GST_GLSL_PROFILE_CORE", "2"), ("(guint) GST_GLSL_PROFILE_ES", "1"), ("(guint) GST_GLSL_PROFILE_NONE", "0"), ("(gint) GST_GLSL_VERSION_100", "100"), ("(gint) GST_GLSL_VERSION_110", "110"), ("(gint) GST_GLSL_VERSION_120", "120"), ("(gint) GST_GLSL_VERSION_130", "130"), ("(gint) GST_GLSL_VERSION_140", "140"), ("(gint) GST_GLSL_VERSION_150", "150"), ("(gint) GST_GLSL_VERSION_300", "300"), ("(gint) GST_GLSL_VERSION_310", "310"), ("(gint) GST_GLSL_VERSION_320", "320"), ("(gint) GST_GLSL_VERSION_330", "330"), ("(gint) GST_GLSL_VERSION_400", "400"), ("(gint) GST_GLSL_VERSION_410", "410"), ("(gint) GST_GLSL_VERSION_420", "420"), ("(gint) GST_GLSL_VERSION_430", "430"), ("(gint) GST_GLSL_VERSION_440", "440"), ("(gint) GST_GLSL_VERSION_450", "450"), ("(gint) GST_GLSL_VERSION_NONE", "0"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_ALLOC", "1"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_BUFFER", "16"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_USER", "65536"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_VIDEO", "8"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_GPU_HANDLE", "4"), ("GST_GL_ALLOCATION_PARAMS_ALLOC_FLAG_WRAP_SYSMEM", "2"), ("(gint) GST_GL_ALPHA", "6406"), ("(guint) GST_GL_API_ANY", "4294967295"), ("(guint) GST_GL_API_GLES1", "32768"), ("GST_GL_API_GLES1_NAME", "gles1"), ("(guint) GST_GL_API_GLES2", "65536"), ("GST_GL_API_GLES2_NAME", "gles2"), ("(guint) GST_GL_API_NONE", "0"), ("(guint) GST_GL_API_OPENGL", "1"), ("(guint) GST_GL_API_OPENGL3", "2"), ("GST_GL_API_OPENGL3_NAME", "opengl3"), ("GST_GL_API_OPENGL_NAME", "opengl"), ("GST_GL_BASE_MEMORY_ALLOCATOR_NAME", "GLBaseMemory"), ("(gint) GST_GL_BASE_MEMORY_ERROR_FAILED", "0"), ("(gint) GST_GL_BASE_MEMORY_ERROR_OLD_LIBS", "1"), ("(gint) GST_GL_BASE_MEMORY_ERROR_RESOURCE_UNAVAILABLE", "2"), ("(guint) GST_GL_BASE_MEMORY_TRANSFER_NEED_DOWNLOAD", "1048576"), ("(guint) GST_GL_BASE_MEMORY_TRANSFER_NEED_UPLOAD", "2097152"), ("GST_GL_BUFFER_ALLOCATOR_NAME", "GLBuffer"), ("GST_GL_COLOR_CONVERT_FORMATS", "{ RGBA, RGB, RGBx, BGR, BGRx, BGRA, xRGB, xBGR, ARGB, ABGR, Y444, I420, YV12, Y42B, Y41B, NV12, NV21, YUY2, UYVY, AYUV, VUYA, GRAY8, GRAY16_LE, GRAY16_BE, RGB16, BGR16, ARGB64 }"), ("(gint) GST_GL_CONTEXT_ERROR_CREATE_CONTEXT", "4"), ("(gint) GST_GL_CONTEXT_ERROR_FAILED", "0"), ("(gint) GST_GL_CONTEXT_ERROR_OLD_LIBS", "3"), ("(gint) GST_GL_CONTEXT_ERROR_RESOURCE_UNAVAILABLE", "5"), ("(gint) GST_GL_CONTEXT_ERROR_WRONG_API", "2"), ("(gint) GST_GL_CONTEXT_ERROR_WRONG_CONFIG", "1"), ("GST_GL_CONTEXT_TYPE_CGL", "gst.gl.context.CGL"), ("GST_GL_CONTEXT_TYPE_EAGL", "gst.gl.context.EAGL"), ("GST_GL_CONTEXT_TYPE_EGL", "gst.gl.context.EGL"), ("GST_GL_CONTEXT_TYPE_GLX", "gst.gl.context.GLX"), ("GST_GL_CONTEXT_TYPE_WGL", "gst.gl.context.WGL"), ("(gint) GST_GL_DEPTH24_STENCIL8", "35056"), ("(gint) GST_GL_DEPTH_COMPONENT16", "33189"), ("GST_GL_DISPLAY_CONTEXT_TYPE", "gst.gl.GLDisplay"), ("(guint) GST_GL_DISPLAY_TYPE_ANY", "4294967295"), ("(guint) GST_GL_DISPLAY_TYPE_COCOA", "4"), ("(guint) GST_GL_DISPLAY_TYPE_DISPMANX", "16"), ("(guint) GST_GL_DISPLAY_TYPE_EGL", "32"), ("(guint) GST_GL_DISPLAY_TYPE_GBM", "128"), ("(guint) GST_GL_DISPLAY_TYPE_NONE", "0"), ("(guint) GST_GL_DISPLAY_TYPE_VIV_FB", "64"), ("(guint) GST_GL_DISPLAY_TYPE_WAYLAND", "2"), ("(guint) GST_GL_DISPLAY_TYPE_WIN32", "8"), ("(guint) GST_GL_DISPLAY_TYPE_X11", "1"), ("(gint) GST_GL_LUMINANCE", "6409"), ("(gint) GST_GL_LUMINANCE_ALPHA", "6410"), ("GST_GL_MEMORY_ALLOCATOR_NAME", "GLMemory"), ("GST_GL_MEMORY_PBO_ALLOCATOR_NAME", "GLMemoryPBO"), ("GST_GL_MEMORY_VIDEO_FORMATS_STR", "{ RGBA, BGRA, RGBx, BGRx, ARGB, ABGR, xRGB, xBGR, RGB, BGR, RGB16, BGR16, AYUV, VUYA, I420, YV12, NV12, NV21, YUY2, UYVY, Y41B, Y42B, Y444, GRAY8, GRAY16_LE, GRAY16_BE, ARGB64 }"), ("(guint) GST_GL_PLATFORM_ANY", "4294967295"), ("(guint) GST_GL_PLATFORM_CGL", "8"), ("(guint) GST_GL_PLATFORM_EAGL", "16"), ("(guint) GST_GL_PLATFORM_EGL", "1"), ("(guint) GST_GL_PLATFORM_GLX", "2"), ("(guint) GST_GL_PLATFORM_NONE", "0"), ("(guint) GST_GL_PLATFORM_WGL", "4"), ("(gint) GST_GL_QUERY_NONE", "0"), ("(gint) GST_GL_QUERY_TIMESTAMP", "2"), ("(gint) GST_GL_QUERY_TIME_ELAPSED", "1"), ("(gint) GST_GL_R8", "33321"), ("(gint) GST_GL_RED", "6403"), ("GST_GL_RENDERBUFFER_ALLOCATOR_NAME", "GLRenderbuffer"), ("(gint) GST_GL_RG", "33319"), ("(gint) GST_GL_RG8", "33323"), ("(gint) GST_GL_RGB", "6407"), ("(gint) GST_GL_RGB16", "32852"), ("(gint) GST_GL_RGB565", "36194"), ("(gint) GST_GL_RGB8", "32849"), ("(gint) GST_GL_RGBA", "6408"), ("(gint) GST_GL_RGBA16", "32859"), ("(gint) GST_GL_RGBA8", "32856"), ("(gint) GST_GL_STEREO_DOWNMIX_ANAGLYPH_AMBER_BLUE_DUBOIS", "2"), ("(gint) GST_GL_STEREO_DOWNMIX_ANAGLYPH_GREEN_MAGENTA_DUBOIS", "0"), ("(gint) GST_GL_STEREO_DOWNMIX_ANAGLYPH_RED_CYAN_DUBOIS", "1"), ("(gint) GST_GL_TEXTURE_TARGET_2D", "1"), ("GST_GL_TEXTURE_TARGET_2D_STR", "2D"), ("(gint) GST_GL_TEXTURE_TARGET_EXTERNAL_OES", "3"), ("GST_GL_TEXTURE_TARGET_EXTERNAL_OES_STR", "external-oes"), ("(gint) GST_GL_TEXTURE_TARGET_NONE", "0"), ("(gint) GST_GL_TEXTURE_TARGET_RECTANGLE", "2"), ("GST_GL_TEXTURE_TARGET_RECTANGLE_STR", "rectangle"), ("(gint) GST_GL_UPLOAD_DONE", "1"), ("(gint) GST_GL_UPLOAD_ERROR", "-1"), ("(gint) GST_GL_UPLOAD_RECONFIGURE", "-3"), ("(gint) GST_GL_UPLOAD_UNSHARED_GL_CONTEXT", "-100"), ("(gint) GST_GL_UPLOAD_UNSUPPORTED", "-2"), ("(gint) GST_GL_WINDOW_ERROR_FAILED", "0"), ("(gint) GST_GL_WINDOW_ERROR_OLD_LIBS", "1"), ("(gint) GST_GL_WINDOW_ERROR_RESOURCE_UNAVAILABLE", "2"), ("GST_MAP_GL", "131072"), ];