radio 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +202 -0
- data/README.md +67 -1
- data/bin/radio-server +8 -0
- data/lib/radio.rb +41 -1
- data/lib/radio/controls/null.rb +32 -0
- data/lib/radio/controls/si570avr.rb +77 -0
- data/lib/radio/filter.rb +69 -0
- data/lib/radio/filters/fir.rb +65 -0
- data/lib/radio/gif.rb +84 -0
- data/lib/radio/http/file.rb +88 -0
- data/lib/radio/http/script.rb +133 -0
- data/lib/radio/http/server.rb +94 -0
- data/lib/radio/http/session.rb +43 -0
- data/lib/radio/input.rb +62 -0
- data/lib/radio/inputs/alsa.rb +135 -0
- data/lib/radio/inputs/coreaudio.rb +102 -0
- data/lib/radio/inputs/file.rb +60 -0
- data/lib/radio/inputs/wav.rb +124 -0
- data/lib/radio/psk31/bit_detect.rb +19 -4
- data/lib/radio/psk31/decoder.rb +18 -3
- data/lib/radio/psk31/fir_coef.rb +6 -1
- data/lib/radio/psk31/rx.rb +27 -32
- data/lib/radio/psk31/varicode.rb +15 -0
- data/lib/radio/rig.rb +46 -0
- data/lib/radio/rig/lo.rb +57 -0
- data/lib/radio/rig/rx.rb +61 -0
- data/lib/radio/rig/spectrum.rb +96 -0
- data/lib/radio/version.rb +3 -0
- data/test/test.rb +76 -0
- data/test/wav/bpsk8k.wav +0 -0
- data/test/wav/qpsk8k.wav +0 -0
- data/test/wav/ssb.wav +0 -0
- data/www/index.erb +40 -0
- data/www/jquery-1.7.js +9300 -0
- data/www/lo.erb +21 -0
- data/www/setup/input.erb +64 -0
- data/www/setup/lo.erb +36 -0
- data/www/waterfall.erb +20 -0
- metadata +77 -9
- data/lib/radio/psk31/filters.rb +0 -220
data/LICENSE
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
#!text
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/README.md
CHANGED
@@ -1 +1,67 @@
|
|
1
|
-
Amateur
|
1
|
+
# Twenty-First Century Amateur Radio
|
2
|
+
|
3
|
+
An http server for interactive digital signal processing.
|
4
|
+
The mission is to find a solution that enables development of radios
|
5
|
+
using open and accessible technologies such as HTML and Javascript.
|
6
|
+
|
7
|
+
## Status
|
8
|
+
|
9
|
+
* HTTP Server: Working
|
10
|
+
* Spectrum Analyzer: Working
|
11
|
+
* Rig Control: current WIP
|
12
|
+
* PSK31: LPCM only, next WIP
|
13
|
+
* SSB: Not Started
|
14
|
+
* CW: Not Started
|
15
|
+
* User Interface: experimental, please contribute
|
16
|
+
* More drivers: always a WIP, please contribute
|
17
|
+
|
18
|
+
## Installation
|
19
|
+
|
20
|
+
Please use the wiki for verbose install directions: https://github.com/ham21/radio/wiki
|
21
|
+
|
22
|
+
### Dependencies
|
23
|
+
|
24
|
+
Ubuntu and Debian:
|
25
|
+
|
26
|
+
sudo apt-get install alsa-base libusb-1.0 build-essential libfftw3-dev libz-dev libssl-dev libreadline-dev
|
27
|
+
sudo usermod -a -G audio your_username
|
28
|
+
|
29
|
+
Apple OSX using ports:
|
30
|
+
|
31
|
+
port install fftw-3 libusb
|
32
|
+
|
33
|
+
Apple OSX using homebrew:
|
34
|
+
|
35
|
+
brew install fftw libusb
|
36
|
+
|
37
|
+
Windows does not have dependencies; begin with Ruby install.
|
38
|
+
|
39
|
+
### Ruby
|
40
|
+
|
41
|
+
This project requires Ruby 1.9. If your OS came with Ruby, it's likely 1.8
|
42
|
+
and not suitable. Your choice to install Ruby 1.9 directly or with the rvm
|
43
|
+
tool. Rubinius should work in 1.9 mode but JRuby will not.
|
44
|
+
|
45
|
+
http://www.ruby-lang.org/
|
46
|
+
or
|
47
|
+
http://beginrescueend.com/rvm/install/
|
48
|
+
|
49
|
+
### Ruby Gems
|
50
|
+
|
51
|
+
Install the radio software and operating system specifics for Ruby.
|
52
|
+
|
53
|
+
Linux:
|
54
|
+
|
55
|
+
gem install radio alsa
|
56
|
+
|
57
|
+
Apple OSX:
|
58
|
+
|
59
|
+
gem install radio coreaudio
|
60
|
+
|
61
|
+
Windows:
|
62
|
+
|
63
|
+
gem install radio win32-sound
|
64
|
+
|
65
|
+
## Operation
|
66
|
+
|
67
|
+
Execute ```radio-server``` then open your web browser to http://localhost:7373/
|
data/bin/radio-server
ADDED
data/lib/radio.rb
CHANGED
@@ -1,5 +1,26 @@
|
|
1
|
+
# Copyright 2012 The ham21/radio Authors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
|
16
|
+
require 'fftw3'
|
17
|
+
require 'thin'
|
18
|
+
|
19
|
+
# Suffer load order here
|
1
20
|
%w{
|
2
|
-
radio/
|
21
|
+
radio/rig/*.rb
|
22
|
+
radio/*.rb
|
23
|
+
radio/**/*.rb
|
3
24
|
}.each do |glob|
|
4
25
|
Dir.glob(File.expand_path(glob, File.dirname(__FILE__))).each do |filename|
|
5
26
|
require filename
|
@@ -11,4 +32,23 @@ class Radio
|
|
11
32
|
PI = Math::PI.freeze
|
12
33
|
PI2 = (8.0 * Math.atan(1.0)).freeze
|
13
34
|
|
35
|
+
def self.start
|
36
|
+
|
37
|
+
app = Rack::Builder.new do
|
38
|
+
use Rack::CommonLogger
|
39
|
+
use Rack::ShowExceptions
|
40
|
+
use Rack::Lint
|
41
|
+
run @radio = Radio::HTTP::Server.new
|
42
|
+
# Thin threading model
|
43
|
+
def deferred? env
|
44
|
+
@radio.deferred? env
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
EventMachine.run {
|
49
|
+
Rack::Handler::Thin.run app, :Port => 7373, :Host => '0.0.0.0'
|
50
|
+
}
|
51
|
+
|
52
|
+
end
|
53
|
+
|
14
54
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Copyright 2012 The ham21/radio Authors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
|
16
|
+
class Radio
|
17
|
+
module Controls
|
18
|
+
class Null
|
19
|
+
|
20
|
+
attr_accessor :lo
|
21
|
+
|
22
|
+
def initialize
|
23
|
+
@lo = 0.0
|
24
|
+
end
|
25
|
+
|
26
|
+
def stop
|
27
|
+
#noop
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# Copyright 2012 The ham21/radio Authors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
require 'libusb'
|
16
|
+
|
17
|
+
class Radio
|
18
|
+
module Controls
|
19
|
+
|
20
|
+
# Support for Silicon Labs Si570 using Atmel AVR USB device.
|
21
|
+
# see: http://pe0fko.nl/SR-V9-Si570/
|
22
|
+
# For SoftRock KB9YIG radio kits et al.
|
23
|
+
class Si570AVR
|
24
|
+
|
25
|
+
RT_IN = LIBUSB::REQUEST_TYPE_VENDOR | LIBUSB::RECIPIENT_DEVICE | LIBUSB::ENDPOINT_IN
|
26
|
+
RT_OUT = LIBUSB::REQUEST_TYPE_VENDOR | LIBUSB::RECIPIENT_DEVICE | LIBUSB::ENDPOINT_OUT
|
27
|
+
DWELL = 0.1 #seconds
|
28
|
+
|
29
|
+
def initialize options={}
|
30
|
+
@divisor = options.delete(:divisor) || 4
|
31
|
+
index = options.delete(:index) || 0
|
32
|
+
@options = options
|
33
|
+
if options.empty?
|
34
|
+
@options[:idVendor] ||= 0x16c0
|
35
|
+
@options[:idProduct] ||= 0x05dc
|
36
|
+
end
|
37
|
+
@device = LIBUSB::Context.new.devices(options)[index]
|
38
|
+
raise 'USB Device Not Found' unless @device
|
39
|
+
end
|
40
|
+
|
41
|
+
def lo= freq
|
42
|
+
data = [freq * (1<<21) * @divisor].pack('L')
|
43
|
+
@device.open do |handle|
|
44
|
+
handle.claim_interface(0)
|
45
|
+
handle.control_transfer(
|
46
|
+
:bmRequestType => RT_OUT, :bRequest => 0x32,
|
47
|
+
:wValue => 0, :wIndex => 0, :dataOut => data
|
48
|
+
)
|
49
|
+
handle.release_interface(0)
|
50
|
+
end
|
51
|
+
@lo = nil
|
52
|
+
end
|
53
|
+
|
54
|
+
def lo
|
55
|
+
return @lo if @lo and Time.now < @lo_expires
|
56
|
+
data = nil
|
57
|
+
@device.open do |handle|
|
58
|
+
handle.claim_interface 0
|
59
|
+
data = handle.control_transfer(
|
60
|
+
:bmRequestType => RT_IN, :bRequest => 0x3a,
|
61
|
+
:wValue => 0, :wIndex => 0, :dataIn => 4
|
62
|
+
)
|
63
|
+
handle.release_interface 0
|
64
|
+
end
|
65
|
+
@lo_expires = Time.now + DWELL
|
66
|
+
@lo = (data.unpack('L')[0].to_f / (1<<21) / @divisor).round 6
|
67
|
+
end
|
68
|
+
|
69
|
+
def stop
|
70
|
+
#noop
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
data/lib/radio/filter.rb
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
# Copyright 2012 The ham21/radio Authors
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
|
16
|
+
class Radio
|
17
|
+
|
18
|
+
# This generic Filter class will optimize by replacing its #call
|
19
|
+
# with an optimized version from a module. The type of data
|
20
|
+
# and initializer options determine the module name to load.
|
21
|
+
class Filter
|
22
|
+
|
23
|
+
# Filters are built with mixing first and fir last.
|
24
|
+
# Chain multiple filters to get other effects.
|
25
|
+
# Make sure unused options don't test true.
|
26
|
+
# Filter.new(:mix => phase_inc, :decimate => int, :fir => array)
|
27
|
+
def initialize options
|
28
|
+
@options = options
|
29
|
+
end
|
30
|
+
|
31
|
+
# The first call with data is when we decide which module is optimal.
|
32
|
+
def call data, &block
|
33
|
+
mod_name = 'Each'
|
34
|
+
if Enumerable === data
|
35
|
+
first = data.first
|
36
|
+
elsif NArray === data
|
37
|
+
first = data[0]
|
38
|
+
else
|
39
|
+
first = data
|
40
|
+
mod_name = ''
|
41
|
+
end
|
42
|
+
if Complex === first
|
43
|
+
mod_name = 'Complex' + mod_name
|
44
|
+
elsif Float === first
|
45
|
+
mod_name = 'Float' + mod_name
|
46
|
+
else
|
47
|
+
raise "Unknown data type: #{first.class}"
|
48
|
+
end
|
49
|
+
mod_name += 'Mix' if @options[:mix]
|
50
|
+
mod_name += 'Decimate' if @options[:decimate]
|
51
|
+
mod_name += 'Fir' if @options[:fir]
|
52
|
+
this_call = method :call
|
53
|
+
extend eval mod_name
|
54
|
+
if this_call == method(:call)
|
55
|
+
raise "#{mod_name} must override #call(data)"
|
56
|
+
end
|
57
|
+
setup data
|
58
|
+
call data, &block
|
59
|
+
end
|
60
|
+
|
61
|
+
# implement in modules, if you desire.
|
62
|
+
# have everything call super, this will catch.
|
63
|
+
def setup data
|
64
|
+
# noop
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|