File: oss.cpp

package info (click to toggle)
ares 147%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,244 kB
  • sloc: cpp: 334,263; ansic: 98,696; sh: 123; makefile: 31
file content (200 lines) | stat: -rw-r--r-- 5,863 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/soundcard.h>

//OSSv4 features: define fallbacks for OSSv3 (where these ioctls are ignored)

#ifndef SNDCTL_DSP_COOKEDMODE
  #define SNDCTL_DSP_COOKEDMODE _IOW('P', 30, int)
#endif

#ifndef SNDCTL_DSP_POLICY
  #define SNDCTL_DSP_POLICY _IOW('P', 45, int)
#endif

struct AudioOSS : AudioDriver {
  AudioOSS& self = *this;
  AudioOSS(Audio& super) : AudioDriver(super) {}
  ~AudioOSS() { terminate(); }

  auto create() -> bool override {
    super.setDevice("/dev/dsp");
    super.setChannels(2);
    super.setFrequency(48000);
    super.setLatency(3);
    return initialize();
  }

  auto driver() -> string override { return "OSS"; }
  auto ready() -> bool override { return _fd >= 0; }

  auto hasBlocking() -> bool override { return true; }
  auto hasDynamic() -> bool override { return true; }

  auto hasDevices() -> std::vector<string> override {
    std::vector<string> devices;
    devices.push_back("/dev/dsp");
    for(auto& device : directory::files("/dev/", "dsp?*")) devices.push_back(string{"/dev/", device});
    return devices;
  }

  auto hasChannels() -> std::vector<u32> override {
    return {1, 2, 3, 4, 5, 6, 7, 8};
  }

  auto hasFrequencies() -> std::vector<u32> override {
    return {22050, 44100, 48000, 96000, 192000};
  }

  auto hasLatencies() -> std::vector<u32> override {
    return {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
  }

  auto setDevice(string device) -> bool override { return initialize(); }
  auto setBlocking(bool blocking) -> bool override { return updateBlocking(); }
  auto setChannels(u32 channels) -> bool override { return initialize(); }
  auto setFrequency(u32 frequency) -> bool override { return initialize(); }
  auto setLatency(u32 latency) -> bool override { return initialize(); }

  auto clear() -> void override {
    if(_buffer) {
      memory::fill(_buffer, _bufferSize);
      _offset = 0;
    }
  }

  auto level() -> double override {
    audio_buf_info info;
    ioctl(_fd, SNDCTL_DSP_GETOSPACE, &info);
    return (double)(_nonBlockBytes - info.bytes) / _nonBlockBytes;
  }

  auto output(const double samples[]) -> void override {
    if(!_buffer) return;
    for(u32 n : range(self.channels)) {
      switch(_format) {
        case AFMT_S8: *(s8*)(&_buffer[_offset]) = sclamp<8>(samples[n] * 127.0); break;
        case AFMT_S16_LE: *(s16*)(&_buffer[_offset]) = sclamp<16>(samples[n] * 32767.0); break;
#if defined(AFMT_S24_LE)
        case AFMT_S24_LE: *(s32*)(&_buffer[_offset]) = sclamp<24>(samples[n] * 8388607.0); break;
#endif
#if defined(AFMT_S32_LE)
        case AFMT_S32_LE: *(s32*)(&_buffer[_offset]) = sclamp<32>(samples[n] * 2147483647.0); break;
#endif
        default: return;
      }
      _offset += _formatSize;
      if(_offset >= _bufferSize) {
        write(_fd, _buffer, _bufferSize);
        _offset = 0;
      }
    }
  }

private:
  auto initialize() -> bool {
    terminate();

    auto devices = hasDevices();
    if(std::ranges::find(devices, self.device) == devices.end()) {
      if(!devices.empty()) self.device = devices.front();
    }

    _fd = open(self.device, O_WRONLY | O_NONBLOCK);
    if(_fd < 0) return false;

    int cooked = 1;
    ioctl(_fd, SNDCTL_DSP_COOKEDMODE, &cooked);
    //policy: 0 = minimum latency (higher CPU usage); 10 = maximum latency (lower CPU usage)
    int policy = min(10, self.latency);
    ioctl(_fd, SNDCTL_DSP_POLICY, &policy);
    if(!updateChannels()) return terminate(), false;
    if(!updateFormat()) return terminate(), false;
    if(!updateFrequency()) return terminate(), false;
    if(!updateBlocking()) return terminate(), false;
    if(!updateNonBlockBytes()) return terminate(), false;

    _bufferSize = _frames * self.channels * _formatSize;
    _buffer = memory::allocate(_bufferSize);
    if(!_buffer) return terminate(), false;
    _offset = 0;

    return true;
  }

  auto terminate() -> void {
    if(!ready()) return;

    if(_buffer) {
      memory::free(_buffer);
      _buffer = nullptr;
      _bufferSize = 0;
      _offset = 0;
    }

    close(_fd);
    _fd = -1;
  }

  auto updateChannels() -> bool {
    int channels = self.channels;
    if(ioctl(_fd, SNDCTL_DSP_CHANNELS, &channels) == -1) return false;
    if(!super.hasChannels(channels)) return false;
    super.updateResampleChannels(channels);
    self.channels = channels;
    return true;
  }

  auto updateFormat() -> bool {
    if(ioctl(_fd, SNDCTL_DSP_SETFMT, &_format) == -1) return false;
    switch(_format) {
      case AFMT_S8: _formatSize = sizeof(s8); break;
      case AFMT_S16_LE: _formatSize = sizeof(s16); break;
#if defined(AFMT_S24_LE)
      case AFMT_S24_LE: _formatSize = sizeof(s32); break; // OSS uses 32 bits for 24bit
#endif
#if defined(AFMT_S32_LE)
      case AFMT_S32_LE: _formatSize = sizeof(s32); break;
#endif
      default: return false;
    }
    return true;
  }

  auto updateFrequency() -> bool {
    int frequency = self.frequency;
    if(ioctl(_fd, SNDCTL_DSP_SPEED, &frequency) == -1) return false;
    if(!super.hasFrequency(frequency)) return false;
    super.updateResampleFrequency(frequency);
    self.frequency = frequency;
    return true;
  }

  auto updateBlocking() -> bool {
    if(!ready()) return false;
    auto flags = fcntl(_fd, F_GETFL);
    if(flags < 0) return false;
    self.blocking ? flags &=~ O_NONBLOCK : flags |= O_NONBLOCK;
    fcntl(_fd, F_SETFL, flags);
    return true;
  }

  auto updateNonBlockBytes() -> bool {
    audio_buf_info info;
    if(ioctl(_fd, SNDCTL_DSP_GETOSPACE, &info) == -1) return false;
    if(info.bytes < 1) return false;
    _nonBlockBytes = info.bytes;
    return true;
  }

  s32 _fd = -1;
  s32 _format = AFMT_S16_LE;
  u32 _formatSize = 0;
  static constexpr u32 _frames = 32;
  s32 _nonBlockBytes = 1;

  u8* _buffer = nullptr;
  u32 _bufferSize = 0;
  u32 _offset = 0;
};