Honour inter-frame spacing when reading from pcap file.

git-svn-id: http://op25.osmocom.org/svn/trunk@239 65a5c917-d112-43f1-993d-58c26a4786be
This commit is contained in:
stevie 2011-01-09 20:32:49 +00:00
parent c5fdb34ee1
commit 56893ae965
3 changed files with 117 additions and 49 deletions

View File

@ -29,6 +29,7 @@
#include <gr_io_signature.h>
#include <iostream>
#include <iomanip>
#include <math.h>
#include <op25_pcap_source.h>
#include <stdint.h>
#include <stdexcept>
@ -37,9 +38,9 @@
using namespace std;
op25_pcap_source_sptr
op25_make_pcap_source(const char *path)
op25_make_pcap_source(const char *path, float delay, bool repeat)
{
return op25_pcap_source_sptr(new op25_pcap_source(path));
return op25_pcap_source_sptr(new op25_pcap_source(path, delay, repeat));
}
op25_pcap_source::~op25_pcap_source()
@ -54,38 +55,16 @@ int
op25_pcap_source::work(int nof_output_items, gr_vector_const_void_star& input_items, gr_vector_void_star& output_items)
{
try {
char *out = reinterpret_cast<char*>(output_items[0]);
bzero(out, nof_output_items);
size_t nof_output_symbols = static_cast<size_t>(nof_output_items);
while(pcap_ && symbols_.size() < nof_output_symbols) {
struct pcap_pkthdr hdr;
const uint8_t *octets = pcap_next(pcap_, &hdr);
if(octets) {
const size_t ethernet_sz = 14;
for(size_t i = ethernet_sz; i < hdr.caplen; ++i) {
for(int16_t j = 6; j >= 0; j -= 2) {
dibit d = (octets[i] >> j) & 0x3;
symbols_.push_back(d);
}
}
} else {
pcap_close(pcap_);
pcap_ = NULL;
if(repeat_) {
char err[PCAP_ERRBUF_SIZE];
pcap_ = pcap_open_offline(path_.c_str(), err);
}
}
uint8_t *out = reinterpret_cast<uint8_t*>(output_items[0]);
const size_t SYMS_REQD = static_cast<size_t>(nof_output_items);
if(symbols_.size() < SYMS_REQD) {
read_at_least(SYMS_REQD);
}
// fill the output buffer and remove used symbols
size_t nof_symbols = min(symbols_.size(), nof_output_symbols);
copy(symbols_.begin(), symbols_.begin() + nof_symbols, out);
symbols_.erase(symbols_.begin(), symbols_.begin() + nof_symbols);
// ToDo: return -1 if pcap_ == NULL and symbols_.size() == 0
return nof_symbols;
const size_t SYMS_AVAIL = min(symbols_.size(), SYMS_REQD);
copy(symbols_.begin(), symbols_.begin() + SYMS_AVAIL, out);
symbols_.erase(symbols_.begin(), symbols_.begin() + SYMS_AVAIL);
fill(out + SYMS_AVAIL, out + SYMS_REQD, 0);
return(0 == SYMS_AVAIL ? -1 : SYMS_REQD);
} catch(const std::exception& x) {
cerr << x.what() << endl;
exit(1);
@ -95,14 +74,62 @@ op25_pcap_source::work(int nof_output_items, gr_vector_const_void_star& input_it
}
}
op25_pcap_source::op25_pcap_source(const char *path) :
op25_pcap_source::op25_pcap_source(const char *path, float delay, bool repeat) :
gr_sync_block ("pcap_source", gr_make_io_signature (0, 0, 0), gr_make_io_signature (1, 1, sizeof(uint8_t))),
path_(path),
delay_(3),
repeat_(true),
pcap_(NULL)
DELAY_(delay),
repeat_(repeat),
pcap_(NULL),
prev_is_present_(false),
SYMBOLS_PER_SEC_(4800.0)
{
char err[PCAP_ERRBUF_SIZE];
pcap_ = pcap_open_offline(path_.c_str(), err);
}
float
op25_pcap_source::ifs(const struct pcap_pkthdr& NOW, const struct pcap_pkthdr& PREV, const size_t HEADER_SZ) const
{
double t1 = (PREV.ts.tv_usec / 1e6);
double adj = (NOW.len - HEADER_SZ) * 4.0 / SYMBOLS_PER_SEC_;
double t2 = (NOW.ts.tv_sec - PREV.ts.tv_sec) + (NOW.ts.tv_usec / 1e6);
return static_cast<float>(t2 - adj - t1);
}
uint_least32_t
op25_pcap_source::read_at_least(const size_t NSYMS_REQD)
{
size_t n = 0;
struct pcap_pkthdr hdr;
const size_t ETHERNET_SZ = 14;
while(pcap_ && n < NSYMS_REQD) {
const uint8_t *octets = pcap_next(pcap_, &hdr);
if(octets) {
// push inter-frame silence symbols
const float N = (prev_is_present_ ? ifs(hdr, prev_, ETHERNET_SZ) : DELAY_);
const uint_least32_t NSYMS = roundl(N * (1 / SYMBOLS_PER_SEC_));
for(uint_least32_t i = 0; i < NSYMS; ++i, ++n) {
symbols_.push_back(0);
}
// push symbols from frame payload
for(size_t i = ETHERNET_SZ; i < hdr.caplen; ++i, ++n) {
for(int16_t j = 6; j >= 0; j -= 2) {
dibit d = (octets[i] >> j) & 0x3;
symbols_.push_back(d);
}
}
prev_ = hdr;
prev_is_present_ = true;
} else {
pcap_close(pcap_);
pcap_ = NULL;
if(repeat_) {
// re-open the file
char err[PCAP_ERRBUF_SIZE];
pcap_ = pcap_open_offline(path_.c_str(), err);
prev_is_present_ = false;
}
}
}
return n;
}

View File

@ -35,7 +35,7 @@
typedef boost::shared_ptr<class op25_pcap_source> op25_pcap_source_sptr;
op25_pcap_source_sptr op25_make_pcap_source(const char *path);
op25_pcap_source_sptr op25_make_pcap_source(const char *path, float delay, bool repeat);
/**
* op25_pcap_source is a GNU Radio block for reading from a
@ -61,13 +61,44 @@ private:
* Expose class to public ctor. Create a new instance of
* op25_pcap_source and wrap it in a shared_ptr. This is
* effectively the public constructor.
*
* \param path The path to the tcpdump-formatted input file.
* \param delay The number of seconds to delay before sending the first frame.
* \param repeat Loop back to beginning when EOF is encountered.
*/
friend op25_pcap_source_sptr op25_make_pcap_source(const char *path);
friend op25_pcap_source_sptr op25_make_pcap_source(const char *path, float delay, bool repeat);
/**
* op25_pcap_source protected constructor.
*
* \param path The path to the tcpdump-formatted input file.
* \param delay The number of seconds to delay before sending the first frame.
* \param repeat Loop back to beginning when EOF is encountered.
*/
op25_pcap_source(const char *path);
op25_pcap_source(const char *path, float delay, bool repeat);
/**
* Compute the interframe space between the frames NOW and PREV and
* taking care to ignore HEADER_SZ octets of the frame length. The
* timestamps are presumed to be taken at the end of the frame.
*
* \param NOW The pcap_pkthdr for the most recent frame.
* \param PREV The pcap_pkthdr for the previous frame.
* \param HEADER_SZ The number of octets in the packet header.
* \return The interframe space expressed in seconds.
*/
float ifs(const struct pcap_pkthdr& NOW, const struct pcap_pkthdr& PREV, const size_t HEADER_SZ) const;
/**
* Read at least NYSMS_REQD symbols from the tcpdump-formatted
* file. This method populates the symbols_ queue and may return
* less than NSYMS_REQD when at end-of-file. When there is no more
* data it returns zero.
*
* \param nsyms_reqd The number of symbols required.
* \return The actual number of symbols read.
*/
uint_least32_t read_at_least(size_t nsyms_reqd);
private:
@ -77,25 +108,30 @@ private:
std::string path_;
/**
* Delay before injecting.
* Delay (in seconds) before injecting first frame.
*/
const uint32_t delay_;
const float DELAY_;
/**
* Repeat the stream when at end?
*/
bool repeat_;
/**
* nof symbols produced so far.
*/
uint32_t nsyms_;
/**
* Handle to the pcap file.
*/
pcap_t *pcap_;
/**
* Details for previous frame.
*/
struct pcap_pkthdr prev_;
/**
* Is prev_ present?
*/
bool prev_is_present_;
/**
* Define dibit type
*/
@ -106,6 +142,11 @@ private:
*/
std::deque<dibit> symbols_;
/**
* The number of symbols/s produced by this block.
*/
const float SYMBOLS_PER_SEC_;
};
#endif /* INCLUDED_OP25_PCAP_SOURCE_H */

View File

@ -23,7 +23,7 @@ GR_SWIG_BLOCK_MAGIC(op25, pcap_source);
/*
* Publicly-accesible constuctor function for op25_pcap_source.
*/
op25_pcap_source_sptr op25_make_pcap_source(const char *path);
op25_pcap_source_sptr op25_make_pcap_source(const char *path, float delay, bool repeat);
/*
* The op25_pcap_source block. Reads symbols from a tcpdump-formatted