Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

loging improvements #5

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#RUST_LOG="info"
TARGET_IP="127.0.0.1"
TARGET_PORT=5556
SOURCE_DEVICE="en0"
SOURCE_DEVICE_IP="0.0.0.0"
SOURCE_IP="224.0.0.200"
SOURCE_PORT=10000
#DEBUG=true
#SILENT=true
OUTPUT_FILE=output.ts
44 changes: 33 additions & 11 deletions src/bin/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,48 +12,70 @@
*/

extern crate zmq;
use log::{error};
use log::{error, debug, info};
use tokio;
use std::fs::File;
use std::io::Write;
use std::env;
//use ffmpeg_next as ffmpeg; // You might need to configure FFmpeg flags

const SOURCE_PORT: i32 = 5556; // TODO: change to your target port
const SOURCE_IP: &str = "127.0.0.1";
const OUTPUT_FILE: &str = "output.ts";

#[tokio::main]
async fn main() {
env_logger::Builder::new()
.filter_level(log::LevelFilter::Debug)
.init();
async fn main() {
dotenv::dotenv().ok(); // read .env file

// Get environment variables or use default values, set in .env file
let source_port: i32 = env::var("TARGET_PORT").unwrap_or("5556".to_string()).parse().expect(&format!("Invalid format for TARGET_PORT"));
let source_ip: &str = &env::var("TARGET_IP").unwrap_or("127.0.0.1".to_string());
let debug_on: bool = env::var("DEBUG").unwrap_or("false".to_string()).parse().expect(&format!("Invalid format for DEBUG"));
let silent: bool = env::var("SILENT").unwrap_or("false".to_string()).parse().expect(&format!("Invalid format for SILENT"));
let output_file: &str = &env::var("OUTPUT_FILE").unwrap_or("output.ts".to_string());

info!("Starting rscap client");

if !silent {
let mut log_level: log::LevelFilter = log::LevelFilter::Info;
if debug_on {
log_level = log::LevelFilter::Debug;
}
env_logger::Builder::new()
.filter_level(log_level)
.init();
}

// Setup ZeroMQ subscriber
let context = zmq::Context::new();
let zmq_sub = context.socket(zmq::SUB).unwrap();
let source_port_ip = format!("tcp://{}:{}", SOURCE_IP, SOURCE_PORT);
let source_port_ip = format!("tcp://{}:{}", source_ip, source_port);
if let Err(e) = zmq_sub.connect(&source_port_ip) {
error!("Failed to connect ZeroMQ subscriber: {:?}", e);
return;
}

zmq_sub.set_subscribe(b"").unwrap();

let mut file = File::create(OUTPUT_FILE).unwrap();
let mut file = File::create(output_file).unwrap();

let mut total_bytes = 0;
let mut count = 0;
while let Ok(msg) = zmq_sub.recv_bytes(0) {
total_bytes += msg.len();
count += 1;
println!("#{} Received {}/{} bytes", count, msg.len(), total_bytes);
if debug_on {
debug!("#{} Received {}/{} bytes", count, msg.len(), total_bytes);
} else if !silent {
print!(".");
std::io::stdout().flush().unwrap();
}
// write to file, appending if not first chunk
file.write_all(&msg).unwrap();
}

// Now check the file with FFmpeg for MPEG-TS integrity
// ... FFmpeg checking logic goes here ...
//check_mpegts_integrity("output.ts");

info!("Finished rscap client");
}

/*
Expand Down
8 changes: 4 additions & 4 deletions src/bin/probe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async fn main() {
let source_port: i32 = env::var("SOURCE_PORT").unwrap_or("10000".to_string()).parse().expect(&format!("Invalid format for SOURCE_PORT"));
let source_ip: &str = &env::var("SOURCE_IP").unwrap_or("224.0.0.200".to_string());

let debug: bool = env::var("DEBUG").unwrap_or("false".to_string()).parse().expect(&format!("Invalid format for DEBUG"));
let debug_on: bool = env::var("DEBUG").unwrap_or("false".to_string()).parse().expect(&format!("Invalid format for DEBUG"));
let silent: bool = env::var("SILENT").unwrap_or("false".to_string()).parse().expect(&format!("Invalid format for SILENT"));

// Initialize logging
Expand Down Expand Up @@ -126,13 +126,13 @@ async fn main() {
let mut count = 0;
let mut batch = Vec::new();
while let Ok(packet) = cap.next_packet() {
if debug{
if debug_on{
debug!("Received packet! {:?}", packet.header);
}
let chunks = process_packet(&packet);

for chunk in chunks {
if debug {
if debug_on {
hexdump(&chunk);
}

Expand All @@ -159,7 +159,7 @@ async fn main() {
count += 1;
publisher.send(batched_data, 0).unwrap();

if !debug {
if !debug_on {
print!(".");
// flush stdout
std::io::stdout().flush().unwrap();
Expand Down