merged changeset r4281:4292 on trondeau/ethernet into trunk
[debian/gnuradio] / gnuradio-examples / python / hier / networking / dial_tone_sink.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2006 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 2, 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 from gnuradio import gr, audio
24 from gnuradio.eng_option import eng_option
25 from optparse import OptionParser
26
27 class dial_tone_sink(gr.hier_block2):
28     def __init__(self, local_ipaddress, port, mtu, sample_rate):
29         gr.hier_block2.__init__(self, 
30                                 "dial_tone_sink",       # Block type 
31                                 gr.io_signature(0,0,0), # Input signature
32                                 gr.io_signature(0,0,0)) # Output signature
33
34
35         self.define_component("src",  gr.udp_source(gr.sizeof_float,
36                                                     local_ipaddress, port,
37                                                     mtu))
38         self.define_component("dst",  audio.sink(sample_rate))
39
40         self.connect("src", 0, "dst", 0)        
41         
42 if __name__ == '__main__':
43     parser = OptionParser(option_class=eng_option)
44     parser.add_option("", "--local-ipaddr", type="string", default="127.0.0.1",
45                       help="local IP address")
46     parser.add_option("", "--local-port", type="int", default=65500,
47                       help="port value to listen to for connection")
48     parser.add_option("", "--mtu", type="int", default=540,
49                      help="packet size.")
50     parser.add_option("-r", "--sample-rate", type="int", default=8000,
51                       help="audio signal sample rate [default=%default]")
52     (options, args) = parser.parse_args()
53     if len(args) != 0:
54         parser.print_help()
55         raise SystemExit, 1
56
57     # Create an instance of a hierarchical block
58     top_block = dial_tone_sink(options.local_ipaddr, options.local_port,
59                                options.mtu, options.sample_rate)
60     
61     # Create an instance of a runtime, passing it the top block
62     runtime = gr.runtime(top_block)
63     
64     try:    
65         # Run forever
66         runtime.run()
67     except KeyboardInterrupt:
68         # Ctrl-C exits
69         pass
70