/*
Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty
the Queen in Right of Canada (Communications Research Center Canada)
Copyright (C) 2018
Matthias P. Braendli, matthias.braendli@mpb.li
http://opendigitalradio.org
*/
/*
This file is part of ODR-DabMod.
ODR-DabMod 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 3 of the
License, or (at your option) any later version.
ODR-DabMod 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 ODR-DabMod. If not, see .
*/
#pragma once
#ifdef HAVE_CONFIG_H
# include
#endif
#include "ModPlugin.h"
#include
#include
#include
#include
#include
using Metadata_vec_sptr = std::shared_ptr >;
class Node
{
public:
Node(std::shared_ptr plugin);
~Node();
Node(const Node&) = delete;
Node& operator=(const Node&) = delete;
std::shared_ptr plugin() { return myPlugin; }
int process();
time_t processTime() const;
void addProcessTime(time_t time);
void addOutputBuffer(Buffer::sptr& buffer, Metadata_vec_sptr& md);
void removeOutputBuffer(Buffer::sptr& buffer, Metadata_vec_sptr& md);
void addInputBuffer(Buffer::sptr& buffer, Metadata_vec_sptr& md);
void removeInputBuffer(Buffer::sptr& buffer, Metadata_vec_sptr& md);
protected:
std::list myInputBuffers;
std::list myOutputBuffers;
std::list myInputMetadata;
std::list myOutputMetadata;
#if TRACE
std::list myDebugFiles;
#endif
std::shared_ptr myPlugin;
time_t myProcessTime = 0;
};
class Edge
{
public:
Edge(std::shared_ptr& src, std::shared_ptr& dst);
~Edge();
Edge(const Edge&) = delete;
Edge& operator=(const Edge&) = delete;
protected:
std::shared_ptr mySrcNode;
std::shared_ptr myDstNode;
std::shared_ptr myBuffer;
std::shared_ptr > myMetadata;
};
class Flowgraph
{
public:
Flowgraph(bool showProcessTime);
virtual ~Flowgraph();
Flowgraph(const Flowgraph&) = delete;
Flowgraph& operator=(const Flowgraph&) = delete;
void connect(std::shared_ptr input,
std::shared_ptr output);
bool run();
protected:
std::vector > nodes;
std::vector > edges;
time_t myProcessTime = 0;
bool myShowProcessTime;
};