2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2017-07-12 10:25:11 +00:00
|
|
|
|
|
|
|
use num_rational::Rational32;
|
2018-08-10 11:22:15 +00:00
|
|
|
use std::cmp;
|
2017-07-12 10:25:11 +00:00
|
|
|
use std::fmt;
|
|
|
|
use std::ops;
|
2017-07-28 13:52:35 +00:00
|
|
|
use std::slice;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-12-17 19:00:42 +00:00
|
|
|
use glib::translate::{from_glib, FromGlibPtrFull, ToGlibPtr, ToGlibPtrMut, Uninitialized};
|
2021-04-20 07:19:02 +00:00
|
|
|
use glib::value::ToSendValue;
|
|
|
|
use glib::StaticType;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, Ord, PartialOrd, Eq, PartialEq, Hash)]
|
|
|
|
pub struct Fraction(pub Rational32);
|
|
|
|
|
|
|
|
impl Fraction {
|
2021-01-08 10:43:18 +00:00
|
|
|
pub fn new(num: i32, den: i32) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
(num, den).into()
|
|
|
|
}
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
pub fn approximate_f32(x: f32) -> Option<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
Rational32::approximate_float(x).map(|r| r.into())
|
|
|
|
}
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
pub fn approximate_f64(x: f64) -> Option<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
Rational32::approximate_float(x).map(|r| r.into())
|
|
|
|
}
|
2021-11-05 20:40:05 +00:00
|
|
|
|
|
|
|
pub fn numer(&self) -> i32 {
|
|
|
|
*self.0.numer()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn denom(&self) -> i32 {
|
|
|
|
*self.0.denom()
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Fraction {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::Deref for Fraction {
|
|
|
|
type Target = Rational32;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn deref(&self) -> &Self::Target {
|
2017-07-12 10:25:11 +00:00
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::DerefMut for Fraction {
|
|
|
|
fn deref_mut(&mut self) -> &mut Rational32 {
|
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<Rational32> for Fraction {
|
|
|
|
fn as_ref(&self) -> &Rational32 {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
macro_rules! impl_fraction_binop {
|
|
|
|
($name:ident, $f:ident, $name_assign:ident, $f_assign:ident) => {
|
|
|
|
impl ops::$name<Fraction> for Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction((self.0).$f(other.0))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<Fraction> for &Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction((self.0).$f(other.0))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<&Fraction> for Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction((self.0).$f(other.0))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<&Fraction> for &Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction((self.0).$f(other.0))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<i32> for Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: i32) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
self.$f(Fraction::from(other))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<i32> for &Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: i32) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
self.$f(Fraction::from(other))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<&i32> for Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &i32) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
self.$f(Fraction::from(*other))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<&i32> for &Fraction {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &i32) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
self.$f(Fraction::from(*other))
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::$name<Fraction> for i32 {
|
|
|
|
type Output = Fraction;
|
2017-07-12 10:25:11 +00:00
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction::from(self).$f(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name<&Fraction> for i32 {
|
|
|
|
type Output = Fraction;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction::from(self).$f(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name<Fraction> for &i32 {
|
|
|
|
type Output = Fraction;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction::from(*self).$f(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name<&Fraction> for &i32 {
|
|
|
|
type Output = Fraction;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn $f(self, other: &Fraction) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction::from(*self).$f(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name_assign<Fraction> for Fraction {
|
|
|
|
fn $f_assign(&mut self, other: Fraction) {
|
|
|
|
(self.0).$f_assign(other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name_assign<&Fraction> for Fraction {
|
|
|
|
fn $f_assign(&mut self, other: &Fraction) {
|
|
|
|
(self.0).$f_assign(other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name_assign<i32> for Fraction {
|
|
|
|
fn $f_assign(&mut self, other: i32) {
|
|
|
|
(self.0).$f_assign(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::$name_assign<&i32> for Fraction {
|
|
|
|
fn $f_assign(&mut self, other: &i32) {
|
|
|
|
(self.0).$f_assign(other)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl_fraction_binop!(Add, add, AddAssign, add_assign);
|
|
|
|
impl_fraction_binop!(Sub, sub, SubAssign, sub_assign);
|
|
|
|
impl_fraction_binop!(Div, div, DivAssign, div_assign);
|
|
|
|
impl_fraction_binop!(Mul, mul, MulAssign, mul_assign);
|
|
|
|
impl_fraction_binop!(Rem, rem, RemAssign, rem_assign);
|
|
|
|
|
|
|
|
impl ops::Neg for Fraction {
|
2017-07-12 10:25:11 +00:00
|
|
|
type Output = Fraction;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn neg(self) -> Self::Output {
|
2019-06-03 07:56:40 +00:00
|
|
|
Fraction(self.0.neg())
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
impl ops::Neg for &Fraction {
|
2017-07-12 10:25:11 +00:00
|
|
|
type Output = Fraction;
|
|
|
|
|
2021-01-08 10:43:18 +00:00
|
|
|
fn neg(self) -> Self::Output {
|
2017-07-12 10:25:11 +00:00
|
|
|
Fraction(self.0.neg())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<i32> for Fraction {
|
2021-01-08 10:43:18 +00:00
|
|
|
fn from(x: i32) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
Fraction(x.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(i32, i32)> for Fraction {
|
2021-01-08 10:43:18 +00:00
|
|
|
fn from(x: (i32, i32)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
Fraction(x.into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-07 19:08:36 +00:00
|
|
|
impl From<Fraction> for (i32, i32) {
|
|
|
|
fn from(f: Fraction) -> Self {
|
2021-01-07 19:47:31 +00:00
|
|
|
skip_assert_initialized!();
|
2021-01-07 19:08:36 +00:00
|
|
|
f.0.into()
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Rational32> for Fraction {
|
2021-01-08 10:43:18 +00:00
|
|
|
fn from(x: Rational32) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-07-12 10:25:11 +00:00
|
|
|
Fraction(x)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Fraction> for Rational32 {
|
2021-01-08 10:43:18 +00:00
|
|
|
fn from(x: Fraction) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2017-07-12 10:25:11 +00:00
|
|
|
x.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for Fraction {
|
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_fraction_get_type()) }
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ValueType for Fraction {
|
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for Fraction {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let n = ffi::gst_value_get_fraction_numerator(value.to_glib_none().0);
|
|
|
|
let d = ffi::gst_value_get_fraction_denominator(value.to_glib_none().0);
|
2017-07-12 10:25:11 +00:00
|
|
|
|
|
|
|
Fraction::new(n, d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ToValue for Fraction {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-04-25 16:46:18 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Self>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
2021-11-05 20:40:05 +00:00
|
|
|
ffi::gst_value_set_fraction(value.to_glib_none_mut().0, self.numer(), self.denom());
|
2021-04-20 07:19:02 +00:00
|
|
|
}
|
|
|
|
value
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-12 10:25:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
|
2020-11-21 13:46:48 +00:00
|
|
|
#[cfg_attr(feature = "ser_de", derive(serde::Serialize, serde::Deserialize))]
|
2017-07-28 13:52:35 +00:00
|
|
|
pub struct IntRange<T> {
|
|
|
|
min: T,
|
|
|
|
max: T,
|
|
|
|
step: T,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Copy> IntRange<T> {
|
|
|
|
pub fn min(&self) -> T {
|
|
|
|
self.min
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn max(&self) -> T {
|
|
|
|
self.max
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn step(&self) -> T {
|
|
|
|
self.step
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub trait IntRangeType: Sized + Clone + Copy + 'static {
|
|
|
|
fn with_min_max(min: Self, max: Self) -> IntRange<Self>;
|
|
|
|
fn with_step(min: Self, max: Self, step: Self) -> IntRange<Self>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl IntRangeType for i32 {
|
|
|
|
fn with_min_max(min: i32, max: i32) -> IntRange<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2021-11-05 20:39:33 +00:00
|
|
|
IntRange { min, max, step: 1 }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
fn with_step(min: i32, max: i32, step: i32) -> IntRange<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
assert!(min <= max);
|
|
|
|
assert!(step > 0);
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
IntRange { min, max, step }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
impl IntRangeType for i64 {
|
|
|
|
fn with_min_max(min: i64, max: i64) -> IntRange<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2021-11-05 20:39:33 +00:00
|
|
|
IntRange { min, max, step: 1 }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
fn with_step(min: i64, max: i64, step: i64) -> IntRange<Self> {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
assert!(min <= max);
|
|
|
|
assert!(step > 0);
|
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
IntRange { min, max, step }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: IntRangeType> IntRange<T> {
|
|
|
|
pub fn new(min: T, max: T) -> IntRange<T> {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
T::with_min_max(min, max)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_step(min: T, max: T, step: T) -> IntRange<T> {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
T::with_step(min, max, step)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(i32, i32)> for IntRange<i32> {
|
|
|
|
fn from((min, max): (i32, i32)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2017-07-28 13:52:35 +00:00
|
|
|
Self::new(min, max)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(i32, i32, i32)> for IntRange<i32> {
|
|
|
|
fn from((min, max, step): (i32, i32, i32)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2020-06-11 08:53:35 +00:00
|
|
|
Self::with_step(min, max, step)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(i64, i64)> for IntRange<i64> {
|
|
|
|
fn from((min, max): (i64, i64)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2017-07-28 13:52:35 +00:00
|
|
|
Self::new(min, max)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(i64, i64, i64)> for IntRange<i64> {
|
|
|
|
fn from((min, max, step): (i64, i64, i64)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2020-06-11 08:53:35 +00:00
|
|
|
Self::with_step(min, max, step)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for IntRange<i32> {
|
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_int_range_get_type()) }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ValueType for IntRange<i32> {
|
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for IntRange<i32> {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let min = ffi::gst_value_get_int_range_min(value.to_glib_none().0);
|
|
|
|
let max = ffi::gst_value_get_int_range_max(value.to_glib_none().0);
|
|
|
|
let step = ffi::gst_value_get_int_range_step(value.to_glib_none().0);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
2020-06-11 08:53:35 +00:00
|
|
|
Self::with_step(min, max, step)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ToValue for IntRange<i32> {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-04-25 16:46:18 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Self>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_value_set_int_range_step(
|
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.min(),
|
|
|
|
self.max(),
|
|
|
|
self.step(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
value
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for IntRange<i64> {
|
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_int64_range_get_type()) }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ValueType for IntRange<i64> {
|
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for IntRange<i64> {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let min = ffi::gst_value_get_int64_range_min(value.to_glib_none().0);
|
|
|
|
let max = ffi::gst_value_get_int64_range_max(value.to_glib_none().0);
|
|
|
|
let step = ffi::gst_value_get_int64_range_step(value.to_glib_none().0);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
2020-06-11 08:53:35 +00:00
|
|
|
Self::with_step(min, max, step)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ToValue for IntRange<i64> {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-04-25 16:46:18 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Self>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_value_set_int64_range_step(
|
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.min(),
|
|
|
|
self.max(),
|
|
|
|
self.step(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
value
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
|
2020-11-21 13:46:48 +00:00
|
|
|
#[cfg_attr(feature = "ser_de", derive(serde::Serialize, serde::Deserialize))]
|
2017-07-28 13:52:35 +00:00
|
|
|
pub struct FractionRange {
|
|
|
|
min: Fraction,
|
|
|
|
max: Fraction,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FractionRange {
|
|
|
|
pub fn new<T: Into<Fraction>, U: Into<Fraction>>(min: T, max: U) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
let min = min.into();
|
|
|
|
let max = max.into();
|
|
|
|
|
|
|
|
assert!(min <= max);
|
|
|
|
|
2018-07-20 07:21:06 +00:00
|
|
|
FractionRange { min, max }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn min(&self) -> Fraction {
|
|
|
|
self.min
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn max(&self) -> Fraction {
|
|
|
|
self.max
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<(Fraction, Fraction)> for FractionRange {
|
|
|
|
fn from((min, max): (Fraction, Fraction)) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
Self::new(min, max)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for FractionRange {
|
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_fraction_range_get_type()) }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ValueType for FractionRange {
|
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for FractionRange {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let min = ffi::gst_value_get_fraction_range_min(value.to_glib_none().0);
|
|
|
|
let max = ffi::gst_value_get_fraction_range_max(value.to_glib_none().0);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
let min_n = ffi::gst_value_get_fraction_numerator(min);
|
|
|
|
let min_d = ffi::gst_value_get_fraction_denominator(min);
|
|
|
|
let max_n = ffi::gst_value_get_fraction_numerator(max);
|
|
|
|
let max_d = ffi::gst_value_get_fraction_denominator(max);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
|
|
|
Self::new((min_n, min_d), (max_n, max_d))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ToValue for FractionRange {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-04-25 16:46:18 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Self>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_value_set_fraction_range_full(
|
|
|
|
value.to_glib_none_mut().0,
|
2021-11-05 20:40:05 +00:00
|
|
|
self.min().numer(),
|
|
|
|
self.min().denom(),
|
|
|
|
self.max().numer(),
|
|
|
|
self.max().denom(),
|
2021-04-20 07:19:02 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
value
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-09 17:00:23 +00:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
|
2020-11-21 13:46:48 +00:00
|
|
|
#[cfg_attr(feature = "ser_de", derive(serde::Serialize, serde::Deserialize))]
|
2017-12-17 09:57:37 +00:00
|
|
|
pub struct Bitmask(pub u64);
|
2017-08-09 17:00:23 +00:00
|
|
|
|
|
|
|
impl Bitmask {
|
|
|
|
pub fn new(v: u64) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
2017-08-09 17:00:23 +00:00
|
|
|
Bitmask(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::Deref for Bitmask {
|
|
|
|
type Target = u64;
|
|
|
|
|
|
|
|
fn deref(&self) -> &u64 {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::DerefMut for Bitmask {
|
|
|
|
fn deref_mut(&mut self) -> &mut u64 {
|
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::BitAnd for Bitmask {
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
fn bitand(self, rhs: Self) -> Self {
|
|
|
|
Bitmask(self.0.bitand(rhs.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::BitOr for Bitmask {
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
fn bitor(self, rhs: Self) -> Self {
|
|
|
|
Bitmask(self.0.bitor(rhs.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::BitXor for Bitmask {
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
fn bitxor(self, rhs: Self) -> Self {
|
|
|
|
Bitmask(self.0.bitxor(rhs.0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::Not for Bitmask {
|
|
|
|
type Output = Self;
|
|
|
|
|
|
|
|
fn not(self) -> Self {
|
|
|
|
Bitmask(self.0.not())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<u64> for Bitmask {
|
|
|
|
fn from(v: u64) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
skip_assert_initialized!();
|
2017-08-09 17:00:23 +00:00
|
|
|
Self::new(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for Bitmask {
|
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_bitmask_get_type()) }
|
2017-08-09 17:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ValueType for Bitmask {
|
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for Bitmask {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let v = ffi::gst_value_get_bitmask(value.to_glib_none().0);
|
2017-08-09 17:00:23 +00:00
|
|
|
Self::new(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
impl glib::value::ToValue for Bitmask {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-04-25 16:46:18 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Self>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_value_set_bitmask(value.to_glib_none_mut().0, self.0);
|
|
|
|
}
|
|
|
|
value
|
2017-08-09 17:00:23 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-08-09 17:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 13:52:35 +00:00
|
|
|
#[derive(Clone, Debug)]
|
2021-11-05 20:38:38 +00:00
|
|
|
pub struct Array(Vec<glib::SendValue>);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe impl Send for Array {}
|
|
|
|
unsafe impl Sync for Array {}
|
2017-11-15 17:18:58 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl Array {
|
2022-03-08 12:46:13 +00:00
|
|
|
pub fn new(values: impl IntoIterator<Item = impl ToSendValue + Send>) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values.into_iter().map(|v| v.to_send_value()).collect())
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
pub fn from_values(values: impl IntoIterator<Item = glib::SendValue>) -> Self {
|
2020-10-20 13:14:10 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values.into_iter().collect())
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2017-12-17 12:06:22 +00:00
|
|
|
pub fn as_slice(&self) -> &[glib::SendValue] {
|
2021-11-05 20:38:38 +00:00
|
|
|
self.0.as_slice()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl ops::Deref for Array {
|
2021-10-12 08:24:54 +00:00
|
|
|
type Target = [glib::SendValue];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl AsRef<[glib::SendValue]> for Array {
|
|
|
|
fn as_ref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
2017-08-30 11:39:09 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl std::iter::FromIterator<glib::SendValue> for Array {
|
|
|
|
fn from_iter<T: IntoIterator<Item = glib::SendValue>>(iter: T) -> Self {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
Self::from_values(iter)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl From<Vec<glib::SendValue>> for Array {
|
|
|
|
fn from(values: Vec<glib::SendValue>) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl glib::value::ValueType for Array {
|
2021-04-20 07:19:02 +00:00
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for Array {
|
2021-04-20 07:19:02 +00:00
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let arr = (*value.to_glib_none().0).data[0].v_pointer as *const glib::ffi::GArray;
|
2022-02-07 10:21:13 +00:00
|
|
|
if arr.is_null() || (*arr).len == 0 {
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(Vec::new())
|
2017-07-28 13:52:35 +00:00
|
|
|
} else {
|
2019-02-28 08:32:13 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2021-11-05 20:38:38 +00:00
|
|
|
Self::from_values(
|
|
|
|
slice::from_raw_parts((*arr).data as *const glib::SendValue, (*arr).len as usize)
|
|
|
|
.iter()
|
|
|
|
.cloned(),
|
|
|
|
)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl glib::value::ToValue for Array {
|
2021-04-20 07:19:02 +00:00
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-11-05 20:38:38 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<Array>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
|
|
|
for v in self.as_slice() {
|
|
|
|
ffi::gst_value_array_append_value(value.to_glib_none_mut().0, v.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl glib::types::StaticType for Array {
|
2017-07-28 13:52:35 +00:00
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_value_array_get_type()) }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct ArrayRef<'a>(&'a [glib::SendValue]);
|
2017-07-28 13:52:35 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe impl<'a> Send for ArrayRef<'a> {}
|
|
|
|
unsafe impl<'a> Sync for ArrayRef<'a> {}
|
2017-11-15 17:18:58 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl<'a> ArrayRef<'a> {
|
|
|
|
pub fn new(values: &'a [glib::SendValue]) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
pub fn as_slice(&self) -> &'a [glib::SendValue] {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ops::Deref for ArrayRef<'a> {
|
|
|
|
type Target = [glib::SendValue];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> AsRef<[glib::SendValue]> for ArrayRef<'a> {
|
|
|
|
fn as_ref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for ArrayRef<'a> {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
2020-10-20 13:14:10 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let arr = (*value.to_glib_none().0).data[0].v_pointer as *const glib::ffi::GArray;
|
2022-02-07 10:21:13 +00:00
|
|
|
if arr.is_null() || (*arr).len == 0 {
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(&[])
|
|
|
|
} else {
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
Self(slice::from_raw_parts(
|
|
|
|
(*arr).data as *const glib::SendValue,
|
|
|
|
(*arr).len as usize,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> glib::value::ToValue for ArrayRef<'a> {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
|
|
|
let mut value = glib::Value::for_value_type::<Array>();
|
|
|
|
unsafe {
|
|
|
|
for v in self.0 {
|
|
|
|
ffi::gst_value_array_append_value(value.to_glib_none_mut().0, v.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2020-10-20 13:14:10 +00:00
|
|
|
}
|
2021-11-05 20:38:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> glib::types::StaticType for ArrayRef<'a> {
|
|
|
|
fn static_type() -> glib::types::Type {
|
|
|
|
unsafe { from_glib(ffi::gst_value_array_get_type()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct List(Vec<glib::SendValue>);
|
2020-10-20 13:14:10 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe impl Send for List {}
|
|
|
|
unsafe impl Sync for List {}
|
|
|
|
|
|
|
|
impl List {
|
2022-03-08 12:46:13 +00:00
|
|
|
pub fn new(values: impl IntoIterator<Item = impl ToSendValue + Send>) -> Self {
|
2018-07-16 19:46:10 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values.into_iter().map(|v| v.to_send_value()).collect())
|
2018-07-16 19:46:10 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
pub fn from_values(values: impl IntoIterator<Item = glib::SendValue>) -> Self {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
|
|
|
Self(values.into_iter().collect())
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2017-12-17 12:06:22 +00:00
|
|
|
pub fn as_slice(&self) -> &[glib::SendValue] {
|
2021-11-05 20:38:38 +00:00
|
|
|
self.0.as_slice()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl ops::Deref for List {
|
2021-10-12 08:24:54 +00:00
|
|
|
type Target = [glib::SendValue];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl AsRef<[glib::SendValue]> for List {
|
|
|
|
fn as_ref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
2017-08-30 11:39:09 +00:00
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl std::iter::FromIterator<glib::SendValue> for List {
|
|
|
|
fn from_iter<T: IntoIterator<Item = glib::SendValue>>(iter: T) -> Self {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
Self::from_values(iter)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl From<Vec<glib::SendValue>> for List {
|
|
|
|
fn from(values: Vec<glib::SendValue>) -> Self {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(values)
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl glib::value::ValueType for List {
|
2021-04-20 07:19:02 +00:00
|
|
|
type Type = Self;
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for List {
|
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let arr = (*value.to_glib_none().0).data[0].v_pointer as *const glib::ffi::GArray;
|
2022-02-07 10:21:13 +00:00
|
|
|
if arr.is_null() || (*arr).len == 0 {
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(Vec::new())
|
|
|
|
} else {
|
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
|
|
|
Self::from_values(
|
|
|
|
slice::from_raw_parts((*arr).data as *const glib::SendValue, (*arr).len as usize)
|
|
|
|
.iter()
|
|
|
|
.cloned(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::value::ToValue for List {
|
|
|
|
fn to_value(&self) -> glib::Value {
|
|
|
|
let mut value = glib::Value::for_value_type::<List>();
|
|
|
|
unsafe {
|
|
|
|
for v in self.as_slice() {
|
|
|
|
ffi::gst_value_list_append_value(value.to_glib_none_mut().0, v.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl glib::types::StaticType for List {
|
|
|
|
fn static_type() -> glib::types::Type {
|
|
|
|
unsafe { from_glib(ffi::gst_value_list_get_type()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct ListRef<'a>(&'a [glib::SendValue]);
|
|
|
|
|
|
|
|
unsafe impl<'a> Send for ListRef<'a> {}
|
|
|
|
unsafe impl<'a> Sync for ListRef<'a> {}
|
|
|
|
|
|
|
|
impl<'a> ListRef<'a> {
|
|
|
|
pub fn new(values: &'a [glib::SendValue]) -> Self {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
|
|
|
Self(values)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_slice(&self) -> &'a [glib::SendValue] {
|
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ops::Deref for ListRef<'a> {
|
|
|
|
type Target = [glib::SendValue];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> AsRef<[glib::SendValue]> for ListRef<'a> {
|
|
|
|
fn as_ref(&self) -> &[glib::SendValue] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe impl<'a> glib::value::FromValue<'a> for ListRef<'a> {
|
2021-04-20 07:19:02 +00:00
|
|
|
type Checker = glib::value::GenericValueTypeChecker<Self>;
|
|
|
|
|
|
|
|
unsafe fn from_value(value: &'a glib::Value) -> Self {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
let arr = (*value.to_glib_none().0).data[0].v_pointer as *const glib::ffi::GArray;
|
2022-02-07 10:21:13 +00:00
|
|
|
if arr.is_null() || (*arr).len == 0 {
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(&[])
|
2017-07-28 13:52:35 +00:00
|
|
|
} else {
|
2019-02-28 08:32:13 +00:00
|
|
|
#[allow(clippy::cast_ptr_alignment)]
|
2021-11-05 20:38:38 +00:00
|
|
|
Self(slice::from_raw_parts(
|
2017-12-17 12:06:22 +00:00
|
|
|
(*arr).data as *const glib::SendValue,
|
2017-07-31 11:16:42 +00:00
|
|
|
(*arr).len as usize,
|
2021-11-05 20:38:38 +00:00
|
|
|
))
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl<'a> glib::value::ToValue for ListRef<'a> {
|
2021-04-20 07:19:02 +00:00
|
|
|
fn to_value(&self) -> glib::Value {
|
2021-11-05 20:38:38 +00:00
|
|
|
let mut value = glib::Value::for_value_type::<List>();
|
2021-04-20 07:19:02 +00:00
|
|
|
unsafe {
|
2021-11-05 20:38:38 +00:00
|
|
|
for v in self.0 {
|
2021-04-20 07:19:02 +00:00
|
|
|
ffi::gst_value_list_append_value(value.to_glib_none_mut().0, v.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
value
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
|
2021-04-20 07:19:02 +00:00
|
|
|
fn value_type(&self) -> glib::Type {
|
|
|
|
Self::static_type()
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 20:38:38 +00:00
|
|
|
impl<'a> glib::types::StaticType for ListRef<'a> {
|
2017-07-28 13:52:35 +00:00
|
|
|
fn static_type() -> glib::types::Type {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_value_list_get_type()) }
|
2017-07-28 13:52:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:47:00 +00:00
|
|
|
pub trait GstValueExt: Sized {
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_can_compare")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn can_compare(&self, other: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_compare")]
|
2018-08-10 11:22:15 +00:00
|
|
|
fn compare(&self, other: &Self) -> Option<cmp::Ordering>;
|
|
|
|
fn eq(&self, other: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_can_intersect")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn can_intersect(&self, other: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_intersect")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn intersect(&self, other: &Self) -> Option<Self>;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_can_subtract")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn can_subtract(&self, other: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_subtract")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn subtract(&self, other: &Self) -> Option<Self>;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_can_union")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn can_union(&self, other: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_union")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn union(&self, other: &Self) -> Option<Self>;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_fixate")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn fixate(&self) -> Option<Self>;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_is_fixed")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn is_fixed(&self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_is_subset")]
|
2017-07-28 15:47:00 +00:00
|
|
|
fn is_subset(&self, superset: &Self) -> bool;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_serialize")]
|
2019-12-17 19:00:42 +00:00
|
|
|
fn serialize(&self) -> Result<glib::GString, glib::BoolError>;
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_value_deserialize")]
|
2021-11-05 15:33:14 +00:00
|
|
|
fn deserialize(s: &str, type_: glib::Type) -> Result<glib::Value, glib::BoolError>;
|
2021-08-17 05:47:26 +00:00
|
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
|
|
|
|
#[doc(alias = "gst_value_deserialize_with_pspec")]
|
2021-11-05 15:33:14 +00:00
|
|
|
fn deserialize_with_pspec(
|
|
|
|
s: &str,
|
2021-08-17 05:47:26 +00:00
|
|
|
pspec: &glib::ParamSpec,
|
|
|
|
) -> Result<glib::Value, glib::BoolError>;
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl GstValueExt for glib::Value {
|
|
|
|
fn can_compare(&self, other: &Self) -> bool {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib(ffi::gst_value_can_compare(
|
2017-07-31 11:16:42 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 11:22:15 +00:00
|
|
|
fn compare(&self, other: &Self) -> Option<cmp::Ordering> {
|
2017-07-28 15:47:00 +00:00
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
let val = ffi::gst_value_compare(self.to_glib_none().0, other.to_glib_none().0);
|
2018-08-10 11:22:15 +00:00
|
|
|
|
|
|
|
match val {
|
2020-11-21 13:46:48 +00:00
|
|
|
ffi::GST_VALUE_LESS_THAN => Some(cmp::Ordering::Less),
|
|
|
|
ffi::GST_VALUE_EQUAL => Some(cmp::Ordering::Equal),
|
|
|
|
ffi::GST_VALUE_GREATER_THAN => Some(cmp::Ordering::Greater),
|
2018-08-10 11:22:15 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-10 11:22:15 +00:00
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.compare(other) == Some(cmp::Ordering::Equal)
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:47:00 +00:00
|
|
|
fn can_intersect(&self, other: &Self) -> bool {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib(ffi::gst_value_can_intersect(
|
2017-07-31 11:16:42 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn intersect(&self, other: &Self) -> Option<Self> {
|
|
|
|
unsafe {
|
|
|
|
let mut value = glib::Value::uninitialized();
|
2020-11-21 13:46:48 +00:00
|
|
|
let ret: bool = from_glib(ffi::gst_value_intersect(
|
2017-07-31 11:16:42 +00:00
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
));
|
2017-07-28 15:47:00 +00:00
|
|
|
if ret {
|
|
|
|
Some(value)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn can_subtract(&self, other: &Self) -> bool {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib(ffi::gst_value_can_subtract(
|
2017-07-31 11:16:42 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn subtract(&self, other: &Self) -> Option<Self> {
|
|
|
|
unsafe {
|
|
|
|
let mut value = glib::Value::uninitialized();
|
2020-11-21 13:46:48 +00:00
|
|
|
let ret: bool = from_glib(ffi::gst_value_subtract(
|
2017-07-31 11:16:42 +00:00
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
));
|
2017-07-28 15:47:00 +00:00
|
|
|
if ret {
|
|
|
|
Some(value)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn can_union(&self, other: &Self) -> bool {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib(ffi::gst_value_can_union(
|
2017-07-31 11:16:42 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn union(&self, other: &Self) -> Option<Self> {
|
|
|
|
unsafe {
|
|
|
|
let mut value = glib::Value::uninitialized();
|
2020-11-21 13:46:48 +00:00
|
|
|
let ret: bool = from_glib(ffi::gst_value_union(
|
2017-07-31 11:16:42 +00:00
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.to_glib_none().0,
|
|
|
|
other.to_glib_none().0,
|
|
|
|
));
|
2017-07-28 15:47:00 +00:00
|
|
|
if ret {
|
|
|
|
Some(value)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fixate(&self) -> Option<Self> {
|
|
|
|
unsafe {
|
|
|
|
let mut value = glib::Value::uninitialized();
|
2020-11-21 13:46:48 +00:00
|
|
|
let ret: bool = from_glib(ffi::gst_value_fixate(
|
2017-07-31 11:16:42 +00:00
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
self.to_glib_none().0,
|
|
|
|
));
|
2017-07-28 15:47:00 +00:00
|
|
|
if ret {
|
|
|
|
Some(value)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_fixed(&self) -> bool {
|
2020-11-21 13:46:48 +00:00
|
|
|
unsafe { from_glib(ffi::gst_value_is_fixed(self.to_glib_none().0)) }
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_subset(&self, superset: &Self) -> bool {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib(ffi::gst_value_is_subset(
|
2017-07-31 11:16:42 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
superset.to_glib_none().0,
|
|
|
|
))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 19:00:42 +00:00
|
|
|
fn serialize(&self) -> Result<glib::GString, glib::BoolError> {
|
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
Option::<_>::from_glib_full(ffi::gst_value_serialize(self.to_glib_none().0))
|
2020-12-17 22:38:06 +00:00
|
|
|
.ok_or_else(|| glib::bool_error!("Failed to serialize value"))
|
2019-12-17 19:00:42 +00:00
|
|
|
}
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 15:33:14 +00:00
|
|
|
fn deserialize(s: &str, type_: glib::Type) -> Result<glib::Value, glib::BoolError> {
|
2017-08-30 11:39:09 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
2017-07-28 15:47:00 +00:00
|
|
|
unsafe {
|
2021-08-17 05:47:02 +00:00
|
|
|
let mut value = glib::Value::from_type(type_);
|
2020-11-21 13:46:48 +00:00
|
|
|
let ret: bool = from_glib(ffi::gst_value_deserialize(
|
2017-07-31 11:16:42 +00:00
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
s.to_glib_none().0,
|
|
|
|
));
|
2017-07-28 15:47:00 +00:00
|
|
|
if ret {
|
2019-12-17 19:00:42 +00:00
|
|
|
Ok(value)
|
2017-07-28 15:47:00 +00:00
|
|
|
} else {
|
2020-12-17 22:38:06 +00:00
|
|
|
Err(glib::bool_error!("Failed to deserialize value"))
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-17 05:47:26 +00:00
|
|
|
|
|
|
|
#[cfg(any(feature = "v1_20", feature = "dox"))]
|
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))]
|
2021-11-05 15:33:14 +00:00
|
|
|
fn deserialize_with_pspec(
|
|
|
|
s: &str,
|
2021-08-17 05:47:26 +00:00
|
|
|
pspec: &glib::ParamSpec,
|
|
|
|
) -> Result<glib::Value, glib::BoolError> {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
let mut value = glib::Value::from_type(pspec.value_type());
|
|
|
|
let ret: bool = from_glib(ffi::gst_value_deserialize_with_pspec(
|
|
|
|
value.to_glib_none_mut().0,
|
|
|
|
s.to_glib_none().0,
|
|
|
|
pspec.to_glib_none().0,
|
|
|
|
));
|
|
|
|
if ret {
|
|
|
|
Ok(value)
|
|
|
|
} else {
|
|
|
|
Err(glib::bool_error!("Failed to deserialize value"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-28 15:47:00 +00:00
|
|
|
}
|
2019-06-03 07:56:40 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-08-17 05:47:02 +00:00
|
|
|
use super::*;
|
|
|
|
|
2019-06-03 07:56:40 +00:00
|
|
|
#[test]
|
|
|
|
fn test_fraction() {
|
2020-11-21 13:46:48 +00:00
|
|
|
crate::init().unwrap();
|
2019-06-03 07:56:40 +00:00
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
let f1 = crate::Fraction::new(1, 2);
|
|
|
|
let f2 = crate::Fraction::new(2, 3);
|
2019-06-03 07:56:40 +00:00
|
|
|
let mut f3 = f1 * f2;
|
2019-12-22 07:59:23 +00:00
|
|
|
let f4 = f1 * f2;
|
2019-06-03 07:56:40 +00:00
|
|
|
f3 *= f2;
|
2019-12-22 07:59:23 +00:00
|
|
|
f3 *= f4;
|
2019-06-03 07:56:40 +00:00
|
|
|
|
2020-11-21 13:46:48 +00:00
|
|
|
assert_eq!(f3, crate::Fraction::new(2, 27));
|
2019-06-03 07:56:40 +00:00
|
|
|
}
|
2021-08-17 05:47:02 +00:00
|
|
|
|
2021-11-05 20:39:33 +00:00
|
|
|
#[test]
|
|
|
|
fn test_int_range_constructor() {
|
|
|
|
crate::init().unwrap();
|
|
|
|
|
|
|
|
// Type inference should figure out the type
|
|
|
|
let _r1 = crate::IntRange::new(1i32, 2i32);
|
|
|
|
let _r2 = crate::IntRange::with_step(2i64, 3i64, 4i64);
|
|
|
|
}
|
|
|
|
|
2021-08-17 05:47:02 +00:00
|
|
|
#[test]
|
|
|
|
fn test_deserialize() {
|
|
|
|
crate::init().unwrap();
|
|
|
|
|
|
|
|
let v = glib::Value::deserialize("123", i32::static_type()).unwrap();
|
|
|
|
assert_eq!(v.get::<i32>(), Ok(123));
|
|
|
|
}
|
2019-06-03 07:56:40 +00:00
|
|
|
}
|