2018-07-06 07:32:24 +00:00
|
|
|
// Copyright (C) 2018 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
// Copyright (C) 2018 LEE Dongjun <redongjun@gmail.com>
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Library General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Library General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Library General Public
|
|
|
|
// License along with this library; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 51 Franklin Street, Suite 500,
|
|
|
|
// Boston, MA 02110-1335, USA.
|
2022-01-15 19:18:47 +00:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
2018-07-06 07:32:24 +00:00
|
|
|
|
|
|
|
use gst::prelude::*;
|
|
|
|
|
|
|
|
use std::io::Write;
|
2020-04-28 18:29:14 +00:00
|
|
|
use std::sync::mpsc;
|
2018-07-06 07:32:24 +00:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
use std::{thread, time};
|
|
|
|
|
|
|
|
fn init() {
|
2019-07-11 13:41:42 +00:00
|
|
|
use std::sync::Once;
|
|
|
|
static INIT: Once = Once::new();
|
2018-07-06 07:32:24 +00:00
|
|
|
|
|
|
|
INIT.call_once(|| {
|
|
|
|
gst::init().unwrap();
|
2019-01-17 18:30:46 +00:00
|
|
|
gstthreadshare::plugin_register_static().expect("gstthreadshare tcpclientsrc test");
|
2018-07-06 07:32:24 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_push() {
|
|
|
|
init();
|
|
|
|
|
2020-04-28 18:29:14 +00:00
|
|
|
let (listening_tx, listening_rx) = mpsc::channel();
|
2018-07-06 07:32:24 +00:00
|
|
|
let handler = thread::spawn(move || {
|
|
|
|
use std::net;
|
|
|
|
|
|
|
|
let listener = net::TcpListener::bind("0.0.0.0:5000").unwrap();
|
2020-04-28 18:29:14 +00:00
|
|
|
listening_tx.send(()).unwrap();
|
2019-12-22 09:18:30 +00:00
|
|
|
let stream = listener.incoming().next().unwrap();
|
|
|
|
let buffer = [0; 160];
|
|
|
|
let mut socket = stream.unwrap();
|
|
|
|
for _ in 0..3 {
|
|
|
|
let _ = socket.write(&buffer);
|
|
|
|
thread::sleep(time::Duration::from_millis(20));
|
2018-07-06 07:32:24 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-10-22 16:06:29 +00:00
|
|
|
let pipeline = gst::Pipeline::default();
|
2018-07-06 07:32:24 +00:00
|
|
|
|
2022-10-19 16:18:43 +00:00
|
|
|
let caps = gst::Caps::builder("foo/bar").build();
|
|
|
|
let tcpclientsrc = gst::ElementFactory::make("ts-tcpclientsrc")
|
|
|
|
.property("caps", &caps)
|
|
|
|
.property("port", 5000i32)
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
2022-10-22 16:06:29 +00:00
|
|
|
let appsink = gst_app::AppSink::builder()
|
|
|
|
.sync(false)
|
|
|
|
.async_(false)
|
|
|
|
.build();
|
2018-07-06 07:32:24 +00:00
|
|
|
|
2022-10-22 16:06:29 +00:00
|
|
|
pipeline
|
|
|
|
.add_many(&[&tcpclientsrc, appsink.upcast_ref()])
|
|
|
|
.unwrap();
|
2018-07-06 07:32:24 +00:00
|
|
|
tcpclientsrc.link(&appsink).unwrap();
|
|
|
|
|
|
|
|
let samples = Arc::new(Mutex::new(Vec::new()));
|
|
|
|
|
|
|
|
let samples_clone = samples.clone();
|
2021-05-31 07:33:50 +00:00
|
|
|
appsink.set_callbacks(
|
|
|
|
gst_app::AppSinkCallbacks::builder()
|
|
|
|
.new_sample(move |appsink| {
|
2021-11-21 16:15:04 +00:00
|
|
|
let sample = appsink.pull_sample().unwrap();
|
2021-05-31 07:33:50 +00:00
|
|
|
|
|
|
|
let mut samples = samples_clone.lock().unwrap();
|
|
|
|
samples.push(sample);
|
|
|
|
Ok(gst::FlowSuccess::Ok)
|
|
|
|
})
|
|
|
|
.build(),
|
|
|
|
);
|
2019-01-11 23:45:05 +00:00
|
|
|
|
2020-04-28 18:29:14 +00:00
|
|
|
// Wait for the server to listen
|
|
|
|
listening_rx.recv().unwrap();
|
2019-01-11 23:45:05 +00:00
|
|
|
pipeline.set_state(gst::State::Playing).unwrap();
|
2018-07-06 07:32:24 +00:00
|
|
|
|
|
|
|
let mut eos = false;
|
2021-04-12 12:49:54 +00:00
|
|
|
let bus = pipeline.bus().unwrap();
|
2022-10-17 17:48:43 +00:00
|
|
|
while let Some(msg) = bus.timed_pop(5.seconds()) {
|
2018-07-06 07:32:24 +00:00
|
|
|
use gst::MessageView;
|
|
|
|
match msg.view() {
|
|
|
|
MessageView::Eos(..) => {
|
|
|
|
eos = true;
|
|
|
|
break;
|
|
|
|
}
|
2023-01-25 08:23:46 +00:00
|
|
|
MessageView::Error(err) => panic!("{err:?}"),
|
2018-07-06 07:32:24 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert!(eos);
|
|
|
|
let samples = samples.lock().unwrap();
|
|
|
|
for sample in samples.iter() {
|
2021-04-12 12:49:54 +00:00
|
|
|
assert_eq!(Some(caps.as_ref()), sample.caps());
|
2018-07-06 07:32:24 +00:00
|
|
|
}
|
|
|
|
|
2021-04-12 12:49:54 +00:00
|
|
|
let total_received_size = samples
|
|
|
|
.iter()
|
|
|
|
.fold(0, |acc, sample| acc + sample.buffer().unwrap().size());
|
2018-07-06 07:32:24 +00:00
|
|
|
assert_eq!(total_received_size, 3 * 160);
|
|
|
|
|
2019-01-11 23:45:05 +00:00
|
|
|
pipeline.set_state(gst::State::Null).unwrap();
|
2018-07-06 07:32:24 +00:00
|
|
|
|
|
|
|
handler.join().unwrap();
|
|
|
|
}
|