/* * libdatachannel streamer example * Copyright (c) 2020 Filip Klembara (in2core) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; If not, see . */ #include "fileparser.hpp" #include using namespace std; FileParser::FileParser(string directory, string extension, uint32_t samplesPerSecond, bool loop) { this->directory = directory; this->extension = extension; this->loop = loop; this->sampleDuration_us = 1000 * 1000 / samplesPerSecond; } FileParser::~FileParser() { stop(); } void FileParser::start() { sampleTime_us = std::numeric_limits::max() - sampleDuration_us + 1; loadNextSample(); } void FileParser::stop() { sample = {}; sampleTime_us = 0; counter = -1; } void FileParser::loadNextSample() { string frame_id = to_string(++counter); string url = directory + "/sample-" + frame_id + extension; ifstream source(url, ios_base::binary); if (!source) { if (loop && counter > 0) { loopTimestampOffset = sampleTime_us; counter = -1; loadNextSample(); return; } sample = {}; return; } vector fileContents((std::istreambuf_iterator(source)), std::istreambuf_iterator()); sample = *reinterpret_cast *>(&fileContents); sampleTime_us += sampleDuration_us; } rtc::binary FileParser::getSample() { return sample; } uint64_t FileParser::getSampleTime_us() { return sampleTime_us; } uint64_t FileParser::getSampleDuration_us() { return sampleDuration_us; }