GNU Radio Manual and C++ API Reference  3.8.1.0
The Free & Open Software Radio Ecosystem
file_source.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012, 2018 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING. If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef INCLUDED_BLOCKS_FILE_SOURCE_H
24 #define INCLUDED_BLOCKS_FILE_SOURCE_H
25 
26 #include <gnuradio/blocks/api.h>
27 #include <gnuradio/sync_block.h>
28 
29 namespace gr {
30 namespace blocks {
31 
32 /*!
33  * \brief Read stream from file
34  * \ingroup file_operators_blk
35  */
36 class BLOCKS_API file_source : virtual public sync_block
37 {
38 public:
39  // gr::blocks::file_source::sptr
40  typedef boost::shared_ptr<file_source> sptr;
41 
42  /*!
43  * \brief Create a file source.
44  *
45  * Opens \p filename as a source of items into a flowgraph. The
46  * data is expected to be in binary format, item after item. The
47  * \p itemsize of the block determines the conversion from bits
48  * to items. The first \p offset items (default 0) will be
49  * skipped.
50  *
51  * If \p repeat is turned on, the file will repeat the file after
52  * it's reached the end.
53  *
54  * If \p len is non-zero, only items (offset, offset+len) will
55  * be produced.
56  *
57  * \param itemsize the size of each item in the file, in bytes
58  * \param filename name of the file to source from
59  * \param repeat repeat file from start
60  * \param offset begin this many items into file
61  * \param len produce only items (offset, offset+len)
62  */
63  static sptr make(size_t itemsize,
64  const char* filename,
65  bool repeat = false,
66  uint64_t offset = 0,
67  uint64_t len = 0);
68 
69  /*!
70  * \brief seek file to \p seek_point relative to \p whence
71  *
72  * \param seek_point sample offset in file
73  * \param whence one of SEEK_SET, SEEK_CUR, SEEK_END (man fseek)
74  */
75  virtual bool seek(int64_t seek_point, int whence) = 0;
76 
77  /*!
78  * \brief Opens a new file.
79  *
80  * \param filename name of the file to source from
81  * \param repeat repeat file from start
82  * \param offset begin this many items into file
83  * \param len produce only items [offset, offset+len)
84  */
85  virtual void
86  open(const char* filename, bool repeat, uint64_t offset = 0, uint64_t len = 0) = 0;
87 
88  /*!
89  * \brief Close the file handle.
90  */
91  virtual void close() = 0;
92 
93  /*!
94  * \brief Add a stream tag to the first sample of the file if true
95  */
96  virtual void set_begin_tag(pmt::pmt_t val) = 0;
97 };
98 
99 } /* namespace blocks */
100 } /* namespace gr */
101 
102 #endif /* INCLUDED_BLOCKS_FILE_SOURCE_H */
Read stream from file.
Definition: file_source.h:36
boost::shared_ptr< file_source > sptr
Definition: file_source.h:40
boost::shared_ptr< pmt_base > pmt_t
typedef for shared pointer (transparent reference counting). See http://www.boost.org/libs/smart_ptr/smart_ptr.htm
Definition: pmt.h:96
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition: basic_block.h:43
#define BLOCKS_API
Definition: gr-blocks/include/gnuradio/blocks/api.h:30
synchronous 1:1 input to output with historyOverride work to provide the signal processing implementa...
Definition: sync_block.h:37
repeat each input repeat timesMessage Ports:
Definition: repeat.h:41
BLOCKS_API size_t itemsize(vector_type type)