GNU Radio 3.4.2 C++ API
gr_scheduler.h
Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2008 Free Software Foundation, Inc.
00004  * 
00005  * This file is part of GNU Radio
00006  * 
00007  * GNU Radio is free software; you can redistribute it and/or modify
00008  * it under the terms of the GNU General Public License as published by
00009  * the Free Software Foundation; either version 3, or (at your option)
00010  * any later version.
00011  * 
00012  * GNU Radio is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016  * 
00017  * You should have received a copy of the GNU General Public License along
00018  * with this program; if not, write to the Free Software Foundation, Inc.,
00019  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
00020  */
00021 
00022 #ifndef INCLUDED_GR_SCHEDULER_H
00023 #define INCLUDED_GR_SCHEDULER_H
00024 
00025 #include <boost/utility.hpp>
00026 #include <gr_block.h>
00027 #include <gr_flat_flowgraph.h>
00028 
00029 
00030 class gr_scheduler;
00031 typedef boost::shared_ptr<gr_scheduler> gr_scheduler_sptr;
00032 
00033 
00034 /*!
00035  * \brief Abstract scheduler that takes a flattened flow graph and runs it.
00036  *
00037  * Preconditions: details, buffers and buffer readers have been assigned.
00038  */
00039 class gr_scheduler : boost::noncopyable
00040 {
00041 
00042 public:
00043   /*!
00044    * \brief Construct a scheduler and begin evaluating the graph.
00045    *
00046    * The scheduler will continue running until all blocks until they
00047    * report that they are done or the stop method is called.
00048    */
00049   gr_scheduler(gr_flat_flowgraph_sptr ffg);
00050 
00051   virtual ~gr_scheduler();
00052 
00053   /*!
00054    * \brief Tell the scheduler to stop executing.
00055    */
00056   virtual void stop() = 0;
00057 
00058   /*!
00059    * \brief Block until the graph is done.
00060    */
00061   virtual void wait() = 0;
00062 };
00063 
00064 #endif /* INCLUDED_GR_SCHEDULER_H */