GNU Radio 3.4.0 C++ API
|
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 #ifndef INCLUDED_GR_SCHEDULER_STS_H 00022 #define INCLUDED_GR_SCHEDULER_STS_H 00023 00024 #include <gr_scheduler.h> 00025 #include <gruel/thread_group.h> 00026 00027 /*! 00028 * \brief Concrete scheduler that uses the single_threaded_scheduler 00029 */ 00030 class gr_scheduler_sts : public gr_scheduler 00031 { 00032 gruel::thread_group d_threads; 00033 00034 protected: 00035 /*! 00036 * \brief Construct a scheduler and begin evaluating the graph. 00037 * 00038 * The scheduler will continue running until all blocks until they 00039 * report that they are done or the stop method is called. 00040 */ 00041 gr_scheduler_sts(gr_flat_flowgraph_sptr ffg); 00042 00043 public: 00044 static gr_scheduler_sptr make(gr_flat_flowgraph_sptr ffg); 00045 00046 ~gr_scheduler_sts(); 00047 00048 /*! 00049 * \brief Tell the scheduler to stop executing. 00050 */ 00051 void stop(); 00052 00053 /*! 00054 * \brief Block until the graph is done. 00055 */ 00056 void wait(); 00057 }; 00058 00059 00060 00061 00062 #endif /* INCLUDED_GR_SCHEDULER_STS_H */