jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

992 lines
34KB

  1. /*
  2. Copyright (C) 2009 Grame
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14. */
  15. #include "driver_interface.h"
  16. #include "JackThreadedDriver.h"
  17. #include "JackDriverLoader.h"
  18. #include "JackBoomerDriver.h"
  19. #include "JackEngineControl.h"
  20. #include "JackGraphManager.h"
  21. #include "JackError.h"
  22. #include "JackTime.h"
  23. #include "JackShmMem.h"
  24. #include "JackGlobals.h"
  25. #include "memops.h"
  26. #include <sys/ioctl.h>
  27. #include <sys/soundcard.h>
  28. #include <fcntl.h>
  29. #include <iostream>
  30. #include <assert.h>
  31. #include <stdio.h>
  32. using namespace std;
  33. namespace Jack
  34. {
  35. #ifdef JACK_MONITOR
  36. #define CYCLE_POINTS 500000
  37. struct OSSCycle {
  38. jack_time_t fBeforeRead;
  39. jack_time_t fAfterRead;
  40. jack_time_t fAfterReadConvert;
  41. jack_time_t fBeforeWrite;
  42. jack_time_t fAfterWrite;
  43. jack_time_t fBeforeWriteConvert;
  44. };
  45. struct OSSCycleTable {
  46. jack_time_t fBeforeFirstWrite;
  47. jack_time_t fAfterFirstWrite;
  48. OSSCycle fTable[CYCLE_POINTS];
  49. };
  50. OSSCycleTable gCycleTable;
  51. int gCycleReadCount = 0;
  52. int gCycleWriteCount = 0;
  53. #endif
  54. inline int int2pow2(int x) { int r = 0; while ((1 << r) < x) r++; return r; }
  55. static inline void CopyAndConvertIn(jack_sample_t *dst, void *src, size_t nframes, int channel, int chcount, int bits)
  56. {
  57. switch (bits) {
  58. case 16: {
  59. signed short *s16src = (signed short*)src;
  60. s16src += channel;
  61. sample_move_dS_s16(dst, (char*)s16src, nframes, chcount<<1);
  62. break;
  63. }
  64. case 24: {
  65. signed short *s32src = (signed short*)src;
  66. s32src += channel;
  67. sample_move_dS_s24(dst, (char*)s32src, nframes, chcount<<2);
  68. break;
  69. }
  70. case 32: {
  71. signed short *s32src = (signed short*)src;
  72. s32src += channel;
  73. sample_move_dS_s32u24(dst, (char*)s32src, nframes, chcount<<2);
  74. break;
  75. }
  76. }
  77. }
  78. static inline void CopyAndConvertOut(void *dst, jack_sample_t *src, size_t nframes, int channel, int chcount, int bits)
  79. {
  80. switch (bits) {
  81. case 16: {
  82. signed short *s16dst = (signed short*)dst;
  83. s16dst += channel;
  84. sample_move_d16_sS((char*)s16dst, src, nframes, chcount<<1, NULL); // No dithering for now...
  85. break;
  86. }
  87. case 24: {
  88. signed int *s32dst = (signed int*)dst;
  89. s32dst += channel;
  90. sample_move_d24_sS((char*)s32dst, src, nframes, chcount<<2, NULL); // No dithering for now...
  91. break;
  92. }
  93. case 32: {
  94. signed int *s32dst = (signed int*)dst;
  95. s32dst += channel;
  96. sample_move_d32u24_sS((char*)s32dst, src, nframes, chcount<<2, NULL);
  97. break;
  98. }
  99. }
  100. }
  101. void JackBoomerDriver::SetSampleFormat()
  102. {
  103. switch (fBits) {
  104. case 24: /* native-endian LSB aligned 24-bits in 32-bits integer */
  105. fSampleFormat = AFMT_S24_NE;
  106. fSampleSize = sizeof(int);
  107. break;
  108. case 32: /* native-endian 32-bit integer */
  109. fSampleFormat = AFMT_S32_NE;
  110. fSampleSize = sizeof(int);
  111. break;
  112. case 16: /* native-endian 16-bit integer */
  113. default:
  114. fSampleFormat = AFMT_S16_NE;
  115. fSampleSize = sizeof(short);
  116. break;
  117. }
  118. }
  119. void JackBoomerDriver::DisplayDeviceInfo()
  120. {
  121. audio_buf_info info;
  122. oss_audioinfo ai_in, ai_out;
  123. memset(&info, 0, sizeof(audio_buf_info));
  124. int cap = 0;
  125. // Duplex cards : http://manuals.opensound.com/developer/full_duplex.html
  126. jack_info("Audio Interface Description :");
  127. jack_info("Sampling Frequency : %d, Sample Format : %d, Mode : %d", fEngineControl->fSampleRate, fSampleFormat, fRWMode);
  128. if (fRWMode & kWrite) {
  129. oss_sysinfo si;
  130. if (ioctl(fOutFD, OSS_SYSINFO, &si) == -1) {
  131. jack_error("JackBoomerDriver::DisplayDeviceInfo OSS_SYSINFO failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  132. } else {
  133. jack_info("OSS product %s", si.product);
  134. jack_info("OSS version %s", si.version);
  135. jack_info("OSS version num %d", si.versionnum);
  136. jack_info("OSS numaudios %d", si.numaudios);
  137. jack_info("OSS numaudioengines %d", si.numaudioengines);
  138. jack_info("OSS numcards %d", si.numcards);
  139. }
  140. jack_info("Output capabilities - %d channels : ", fPlaybackChannels);
  141. jack_info("Output block size = %d", fOutputBufferSize);
  142. if (ioctl(fOutFD, SNDCTL_DSP_GETOSPACE, &info) == -1) {
  143. jack_error("JackBoomerDriver::DisplayDeviceInfo SNDCTL_DSP_GETOSPACE failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  144. } else {
  145. jack_info("output space info: fragments = %d, fragstotal = %d, fragsize = %d, bytes = %d",
  146. info.fragments, info.fragstotal, info.fragsize, info.bytes);
  147. }
  148. if (ioctl(fOutFD, SNDCTL_DSP_GETCAPS, &cap) == -1) {
  149. jack_error("JackBoomerDriver::DisplayDeviceInfo SNDCTL_DSP_GETCAPS failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  150. } else {
  151. if (cap & DSP_CAP_DUPLEX) jack_info(" DSP_CAP_DUPLEX");
  152. if (cap & DSP_CAP_REALTIME) jack_info(" DSP_CAP_REALTIME");
  153. if (cap & DSP_CAP_BATCH) jack_info(" DSP_CAP_BATCH");
  154. if (cap & DSP_CAP_COPROC) jack_info(" DSP_CAP_COPROC");
  155. if (cap & DSP_CAP_TRIGGER) jack_info(" DSP_CAP_TRIGGER");
  156. if (cap & DSP_CAP_MMAP) jack_info(" DSP_CAP_MMAP");
  157. if (cap & DSP_CAP_MULTI) jack_info(" DSP_CAP_MULTI");
  158. if (cap & DSP_CAP_BIND) jack_info(" DSP_CAP_BIND");
  159. }
  160. }
  161. if (fRWMode & kRead) {
  162. oss_sysinfo si;
  163. if (ioctl(fInFD, OSS_SYSINFO, &si) == -1) {
  164. jack_error("JackBoomerDriver::DisplayDeviceInfo OSS_SYSINFO failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  165. } else {
  166. jack_info("OSS product %s", si.product);
  167. jack_info("OSS version %s", si.version);
  168. jack_info("OSS version num %d", si.versionnum);
  169. jack_info("OSS numaudios %d", si.numaudios);
  170. jack_info("OSS numaudioengines %d", si.numaudioengines);
  171. jack_info("OSS numcards %d", si.numcards);
  172. }
  173. jack_info("Input capabilities - %d channels : ", fCaptureChannels);
  174. jack_info("Input block size = %d", fInputBufferSize);
  175. if (ioctl(fInFD, SNDCTL_DSP_GETISPACE, &info) == -1) {
  176. jack_error("JackBoomerDriver::DisplayDeviceInfo SNDCTL_DSP_GETOSPACE failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  177. } else {
  178. jack_info("input space info: fragments = %d, fragstotal = %d, fragsize = %d, bytes = %d",
  179. info.fragments, info.fragstotal, info.fragsize, info.bytes);
  180. }
  181. if (ioctl(fInFD, SNDCTL_DSP_GETCAPS, &cap) == -1) {
  182. jack_error("JackBoomerDriver::DisplayDeviceInfo SNDCTL_DSP_GETCAPS failed : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  183. } else {
  184. if (cap & DSP_CAP_DUPLEX) jack_info(" DSP_CAP_DUPLEX");
  185. if (cap & DSP_CAP_REALTIME) jack_info(" DSP_CAP_REALTIME");
  186. if (cap & DSP_CAP_BATCH) jack_info(" DSP_CAP_BATCH");
  187. if (cap & DSP_CAP_COPROC) jack_info(" DSP_CAP_COPROC");
  188. if (cap & DSP_CAP_TRIGGER) jack_info(" DSP_CAP_TRIGGER");
  189. if (cap & DSP_CAP_MMAP) jack_info(" DSP_CAP_MMAP");
  190. if (cap & DSP_CAP_MULTI) jack_info(" DSP_CAP_MULTI");
  191. if (cap & DSP_CAP_BIND) jack_info(" DSP_CAP_BIND");
  192. }
  193. }
  194. if (ai_in.rate_source != ai_out.rate_source) {
  195. jack_info("Warning : input and output are not necessarily driven by the same clock!");
  196. }
  197. }
  198. JackBoomerDriver::JackBoomerDriver(const char* name, const char* alias, JackLockedEngine* engine, JackSynchro* table)
  199. : JackAudioDriver(name, alias, engine, table),
  200. fInFD(-1), fOutFD(-1), fBits(0),
  201. fSampleFormat(0), fNperiods(0), fRWMode(0), fExcl(false), fIgnoreHW(true),
  202. fInputBufferSize(0), fOutputBufferSize(0),
  203. fInputBuffer(NULL), fOutputBuffer(NULL),
  204. fInputThread(&fInputHandler), fOutputThread(&fOutputHandler),
  205. fInputHandler(this), fOutputHandler(this)
  206. {
  207. sem_init(&fReadSema, 0, 0);
  208. sem_init(&fWriteSema, 0, 0);
  209. }
  210. JackBoomerDriver::~JackBoomerDriver()
  211. {
  212. sem_destroy(&fReadSema);
  213. sem_destroy(&fWriteSema);
  214. }
  215. int JackBoomerDriver::OpenInput()
  216. {
  217. int flags = 0;
  218. int gFragFormat;
  219. int cur_capture_channels;
  220. int cur_sample_format;
  221. jack_nframes_t cur_sample_rate;
  222. if (fCaptureChannels == 0) fCaptureChannels = 2;
  223. if ((fInFD = open(fCaptureDriverName, O_RDONLY | ((fExcl) ? O_EXCL : 0))) < 0) {
  224. jack_error("JackBoomerDriver::OpenInput failed to open device : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  225. return -1;
  226. }
  227. jack_log("JackBoomerDriver::OpenInput input fInFD = %d", fInFD);
  228. if (fExcl) {
  229. if (ioctl(fInFD, SNDCTL_DSP_COOKEDMODE, &flags) == -1) {
  230. jack_error("JackBoomerDriver::OpenInput failed to set cooked mode : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  231. goto error;
  232. }
  233. }
  234. gFragFormat = (2 << 16) + int2pow2(fEngineControl->fBufferSize * fSampleSize * fCaptureChannels);
  235. if (ioctl(fInFD, SNDCTL_DSP_SETFRAGMENT, &gFragFormat) == -1) {
  236. jack_error("JackBoomerDriver::OpenInput failed to set fragments : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  237. goto error;
  238. }
  239. cur_sample_format = fSampleFormat;
  240. if (ioctl(fInFD, SNDCTL_DSP_SETFMT, &fSampleFormat) == -1) {
  241. jack_error("JackBoomerDriver::OpenInput failed to set format : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  242. goto error;
  243. }
  244. if (cur_sample_format != fSampleFormat) {
  245. jack_info("JackBoomerDriver::OpenInput driver forced the sample format %ld", fSampleFormat);
  246. }
  247. cur_capture_channels = fCaptureChannels;
  248. if (ioctl(fInFD, SNDCTL_DSP_CHANNELS, &fCaptureChannels) == -1) {
  249. jack_error("JackBoomerDriver::OpenInput failed to set channels : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  250. goto error;
  251. }
  252. if (cur_capture_channels != fCaptureChannels) {
  253. jack_info("JackBoomerDriver::OpenInput driver forced the number of capture channels %ld", fCaptureChannels);
  254. }
  255. cur_sample_rate = fEngineControl->fSampleRate;
  256. if (ioctl(fInFD, SNDCTL_DSP_SPEED, &fEngineControl->fSampleRate) == -1) {
  257. jack_error("JackBoomerDriver::OpenInput failed to set sample rate : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  258. goto error;
  259. }
  260. if (cur_sample_rate != fEngineControl->fSampleRate) {
  261. jack_info("JackBoomerDriver::OpenInput driver forced the sample rate %ld", fEngineControl->fSampleRate);
  262. }
  263. // Just set the read size to the value we want...
  264. fInputBufferSize = fEngineControl->fBufferSize * fSampleSize * fCaptureChannels;
  265. fInputBuffer = (void*)calloc(fInputBufferSize, 1);
  266. assert(fInputBuffer);
  267. return 0;
  268. error:
  269. ::close(fInFD);
  270. return -1;
  271. }
  272. int JackBoomerDriver::OpenOutput()
  273. {
  274. int flags = 0;
  275. int gFragFormat;
  276. int cur_sample_format;
  277. int cur_playback_channels;
  278. jack_nframes_t cur_sample_rate;
  279. if (fPlaybackChannels == 0) fPlaybackChannels = 2;
  280. if ((fOutFD = open(fPlaybackDriverName, O_WRONLY | ((fExcl) ? O_EXCL : 0))) < 0) {
  281. jack_error("JackBoomerDriver::OpenOutput failed to open device : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  282. return -1;
  283. }
  284. jack_log("JackBoomerDriver::OpenOutput output fOutFD = %d", fOutFD);
  285. if (fExcl) {
  286. if (ioctl(fOutFD, SNDCTL_DSP_COOKEDMODE, &flags) == -1) {
  287. jack_error("JackBoomerDriver::OpenOutput failed to set cooked mode : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  288. goto error;
  289. }
  290. }
  291. gFragFormat = (2 << 16) + int2pow2(fEngineControl->fBufferSize * fSampleSize * fPlaybackChannels);
  292. if (ioctl(fOutFD, SNDCTL_DSP_SETFRAGMENT, &gFragFormat) == -1) {
  293. jack_error("JackBoomerDriver::OpenOutput failed to set fragments : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  294. goto error;
  295. }
  296. cur_sample_format = fSampleFormat;
  297. if (ioctl(fOutFD, SNDCTL_DSP_SETFMT, &fSampleFormat) == -1) {
  298. jack_error("JackBoomerDriver::OpenOutput failed to set format : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  299. goto error;
  300. }
  301. if (cur_sample_format != fSampleFormat) {
  302. jack_info("JackBoomerDriver::OpenOutput driver forced the sample format %ld", fSampleFormat);
  303. }
  304. cur_playback_channels = fPlaybackChannels;
  305. if (ioctl(fOutFD, SNDCTL_DSP_CHANNELS, &fPlaybackChannels) == -1) {
  306. jack_error("JackBoomerDriver::OpenOutput failed to set channels : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  307. goto error;
  308. }
  309. if (cur_playback_channels != fPlaybackChannels) {
  310. jack_info("JackBoomerDriver::OpenOutput driver forced the number of playback channels %ld", fPlaybackChannels);
  311. }
  312. cur_sample_rate = fEngineControl->fSampleRate;
  313. if (ioctl(fOutFD, SNDCTL_DSP_SPEED, &fEngineControl->fSampleRate) == -1) {
  314. jack_error("JackBoomerDriver::OpenOutput failed to set sample rate : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  315. goto error;
  316. }
  317. if (cur_sample_rate != fEngineControl->fSampleRate) {
  318. jack_info("JackBoomerDriver::OpenInput driver forced the sample rate %ld", fEngineControl->fSampleRate);
  319. }
  320. // Just set the write size to the value we want...
  321. fOutputBufferSize = fEngineControl->fBufferSize * fSampleSize * fPlaybackChannels;
  322. fOutputBuffer = (void*)calloc(fOutputBufferSize, 1);
  323. assert(fOutputBuffer);
  324. return 0;
  325. error:
  326. ::close(fOutFD);
  327. return -1;
  328. }
  329. int JackBoomerDriver::Open(jack_nframes_t nframes,
  330. int user_nperiods,
  331. jack_nframes_t samplerate,
  332. bool capturing,
  333. bool playing,
  334. int inchannels,
  335. int outchannels,
  336. bool excl,
  337. bool monitor,
  338. const char* capture_driver_uid,
  339. const char* playback_driver_uid,
  340. jack_nframes_t capture_latency,
  341. jack_nframes_t playback_latency,
  342. int bits,
  343. bool ignorehwbuf)
  344. {
  345. // Generic JackAudioDriver Open
  346. if (JackAudioDriver::Open(nframes, samplerate, capturing, playing, inchannels, outchannels, monitor,
  347. capture_driver_uid, playback_driver_uid, capture_latency, playback_latency) != 0) {
  348. return -1;
  349. } else {
  350. if (!fEngineControl->fSyncMode) {
  351. jack_error("Cannot run in asynchronous mode, use the -S parameter for jackd");
  352. return -1;
  353. }
  354. fRWMode |= ((capturing) ? kRead : 0);
  355. fRWMode |= ((playing) ? kWrite : 0);
  356. fBits = bits;
  357. fIgnoreHW = ignorehwbuf;
  358. fNperiods = user_nperiods;
  359. fExcl = excl;
  360. #ifdef JACK_MONITOR
  361. // Force memory page in
  362. memset(&gCycleTable, 0, sizeof(gCycleTable));
  363. #endif
  364. if (OpenAux() < 0) {
  365. Close();
  366. return -1;
  367. } else {
  368. return 0;
  369. }
  370. }
  371. }
  372. int JackBoomerDriver::Close()
  373. {
  374. #ifdef JACK_MONITOR
  375. FILE* file = fopen("OSSProfiling.log", "w");
  376. if (file) {
  377. jack_info("Writing OSS driver timing data....");
  378. for (int i = 1; i < std::min(gCycleReadCount, gCycleWriteCount); i++) {
  379. int d1 = gCycleTable.fTable[i].fAfterRead - gCycleTable.fTable[i].fBeforeRead;
  380. int d2 = gCycleTable.fTable[i].fAfterReadConvert - gCycleTable.fTable[i].fAfterRead;
  381. int d3 = gCycleTable.fTable[i].fAfterWrite - gCycleTable.fTable[i].fBeforeWrite;
  382. int d4 = gCycleTable.fTable[i].fBeforeWrite - gCycleTable.fTable[i].fBeforeWriteConvert;
  383. fprintf(file, "%d \t %d \t %d \t %d \t \n", d1, d2, d3, d4);
  384. }
  385. fclose(file);
  386. } else {
  387. jack_error("JackBoomerDriver::Close : cannot open OSSProfiling.log file");
  388. }
  389. file = fopen("TimingOSS.plot", "w");
  390. if (file == NULL) {
  391. jack_error("JackBoomerDriver::Close cannot open TimingOSS.plot file");
  392. } else {
  393. fprintf(file, "set grid\n");
  394. fprintf(file, "set title \"OSS audio driver timing\"\n");
  395. fprintf(file, "set xlabel \"audio cycles\"\n");
  396. fprintf(file, "set ylabel \"usec\"\n");
  397. fprintf(file, "plot \"OSSProfiling.log\" using 1 title \"Driver read wait\" with lines, \
  398. \"OSSProfiling.log\" using 2 title \"Driver read convert duration\" with lines, \
  399. \"OSSProfiling.log\" using 3 title \"Driver write wait\" with lines, \
  400. \"OSSProfiling.log\" using 4 title \"Driver write convert duration\" with lines\n");
  401. fprintf(file, "set output 'TimingOSS.pdf\n");
  402. fprintf(file, "set terminal pdf\n");
  403. fprintf(file, "set grid\n");
  404. fprintf(file, "set title \"OSS audio driver timing\"\n");
  405. fprintf(file, "set xlabel \"audio cycles\"\n");
  406. fprintf(file, "set ylabel \"usec\"\n");
  407. fprintf(file, "plot \"OSSProfiling.log\" using 1 title \"Driver read wait\" with lines, \
  408. \"OSSProfiling.log\" using 2 title \"Driver read convert duration\" with lines, \
  409. \"OSSProfiling.log\" using 3 title \"Driver write wait\" with lines, \
  410. \"OSSProfiling.log\" using 4 title \"Driver write convert duration\" with lines\n");
  411. fclose(file);
  412. }
  413. #endif
  414. int res = JackAudioDriver::Close();
  415. CloseAux();
  416. return res;
  417. }
  418. int JackBoomerDriver::OpenAux()
  419. {
  420. SetSampleFormat();
  421. if ((fRWMode & kRead) && (OpenInput() < 0)) {
  422. return -1;
  423. }
  424. if ((fRWMode & kWrite) && (OpenOutput() < 0)) {
  425. return -1;
  426. }
  427. DisplayDeviceInfo();
  428. return 0;
  429. }
  430. void JackBoomerDriver::CloseAux()
  431. {
  432. if (fRWMode & kRead && fInFD > 0) {
  433. close(fInFD);
  434. fInFD = -1;
  435. }
  436. if (fRWMode & kWrite && fOutFD > 0) {
  437. close(fOutFD);
  438. fOutFD = -1;
  439. }
  440. if (fInputBuffer)
  441. free(fInputBuffer);
  442. fInputBuffer = NULL;
  443. if (fOutputBuffer)
  444. free(fOutputBuffer);
  445. fOutputBuffer = NULL;
  446. }
  447. int JackBoomerDriver::Start()
  448. {
  449. jack_log("JackBoomerDriver::Start");
  450. JackAudioDriver::Start();
  451. // Start input thread only when needed
  452. if (fInFD > 0) {
  453. if (fInputThread.StartSync() < 0) {
  454. jack_error("Cannot start input thread");
  455. return -1;
  456. }
  457. }
  458. // Start output thread only when needed
  459. if (fOutFD > 0) {
  460. if (fOutputThread.StartSync() < 0) {
  461. jack_error("Cannot start output thread");
  462. return -1;
  463. }
  464. }
  465. return 0;
  466. }
  467. int JackBoomerDriver::Stop()
  468. {
  469. // Stop input thread only when needed
  470. if (fInFD > 0) {
  471. fInputThread.Kill();
  472. }
  473. // Stop output thread only when needed
  474. if (fOutFD > 0) {
  475. fOutputThread.Kill();
  476. }
  477. return 0;
  478. }
  479. bool JackBoomerDriver::JackBoomerDriverInput::Init()
  480. {
  481. if (fDriver->IsRealTime()) {
  482. jack_log("JackBoomerDriverInput::Init IsRealTime");
  483. if (fDriver->fInputThread.AcquireRealTime(GetEngineControl()->fServerPriority) < 0) {
  484. jack_error("AcquireRealTime error");
  485. } else {
  486. set_threaded_log_function();
  487. }
  488. }
  489. return true;
  490. }
  491. bool JackBoomerDriver::JackBoomerDriverInput::Execute()
  492. {
  493. #ifdef JACK_MONITOR
  494. gCycleTable.fTable[gCycleReadCount].fBeforeRead = GetMicroSeconds();
  495. #endif
  496. audio_errinfo ei_in;
  497. ssize_t count = ::read(fDriver->fInFD, fDriver->fInputBuffer, fDriver->fInputBufferSize);
  498. #ifdef JACK_MONITOR
  499. if (count > 0 && count != (int)fDriver->fInputBufferSize)
  500. jack_log("JackBoomerDriverInput::Execute count = %ld", count / (fDriver->fSampleSize * fDriver->fCaptureChannels));
  501. gCycleTable.fTable[gCycleReadCount].fAfterRead = GetMicroSeconds();
  502. #endif
  503. // XRun detection
  504. if (ioctl(fDriver->fInFD, SNDCTL_DSP_GETERROR, &ei_in) == 0) {
  505. if (ei_in.rec_overruns > 0 ) {
  506. jack_error("JackBoomerDriverInput::Execute overruns");
  507. jack_time_t cur_time = GetMicroSeconds();
  508. fDriver->NotifyXRun(cur_time, float(cur_time - fDriver->fBeginDateUst)); // Better this value than nothing...
  509. }
  510. if (ei_in.rec_errorcount > 0 && ei_in.rec_lasterror != 0) {
  511. jack_error("%d OSS rec event(s), last=%05d:%d", ei_in.rec_errorcount, ei_in.rec_lasterror, ei_in.rec_errorparm);
  512. }
  513. }
  514. if (count < 0) {
  515. jack_log("JackBoomerDriverInput::Execute error = %s", strerror(errno));
  516. } else if (count < (int)fDriver->fInputBufferSize) {
  517. jack_error("JackBoomerDriverInput::Execute error bytes read = %ld", count);
  518. } else {
  519. // Keep begin cycle time
  520. fDriver->CycleTakeBeginTime();
  521. for (int i = 0; i < fDriver->fCaptureChannels; i++) {
  522. if (fDriver->fGraphManager->GetConnectionsNum(fDriver->fCapturePortList[i]) > 0) {
  523. CopyAndConvertIn(fDriver->GetInputBuffer(i), fDriver->fInputBuffer, fDriver->fEngineControl->fBufferSize, i, fDriver->fCaptureChannels, fDriver->fBits);
  524. }
  525. }
  526. #ifdef JACK_MONITOR
  527. gCycleTable.fTable[gCycleReadCount].fAfterReadConvert = GetMicroSeconds();
  528. gCycleReadCount = (gCycleReadCount == CYCLE_POINTS - 1) ? gCycleReadCount: gCycleReadCount + 1;
  529. #endif
  530. }
  531. // Duplex : sync with write thread
  532. if (fDriver->fInFD > 0 && fDriver->fOutFD > 0) {
  533. fDriver->SynchronizeRead();
  534. } else {
  535. // Otherwise direct process
  536. fDriver->Process();
  537. }
  538. return true;
  539. }
  540. bool JackBoomerDriver::JackBoomerDriverOutput::Init()
  541. {
  542. if (fDriver->IsRealTime()) {
  543. jack_log("JackBoomerDriverOutput::Init IsRealTime");
  544. if (fDriver->fOutputThread.AcquireRealTime(GetEngineControl()->fServerPriority) < 0) {
  545. jack_error("AcquireRealTime error");
  546. } else {
  547. set_threaded_log_function();
  548. }
  549. }
  550. // Maybe necessary to write an empty output buffer first time : see http://manuals.opensound.com/developer/fulldup.c.html
  551. memset(fDriver->fOutputBuffer, 0, fDriver->fOutputBufferSize);
  552. // Prefill ouput buffer
  553. if (fDriver->fOutFD > 0) {
  554. for (int i = 0; i < fDriver->fNperiods; i++) {
  555. ssize_t count = ::write(fDriver->fOutFD, fDriver->fOutputBuffer, fDriver->fOutputBufferSize);
  556. if (count < (int)fDriver->fOutputBufferSize) {
  557. jack_error("JackBoomerDriver::Write error bytes written = %ld", count);
  558. }
  559. }
  560. int delay;
  561. if (ioctl(fDriver->fOutFD, SNDCTL_DSP_GETODELAY, &delay) == -1) {
  562. jack_error("JackBoomerDriver::Write error get out delay : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  563. }
  564. delay /= fDriver->fSampleSize * fDriver->fPlaybackChannels;
  565. jack_info("JackBoomerDriver::Write output latency frames = %ld", delay);
  566. }
  567. return true;
  568. }
  569. bool JackBoomerDriver::JackBoomerDriverOutput::Execute()
  570. {
  571. memset(fDriver->fOutputBuffer, 0, fDriver->fOutputBufferSize);
  572. #ifdef JACK_MONITOR
  573. gCycleTable.fTable[gCycleWriteCount].fBeforeWriteConvert = GetMicroSeconds();
  574. #endif
  575. for (int i = 0; i < fDriver->fPlaybackChannels; i++) {
  576. if (fDriver->fGraphManager->GetConnectionsNum(fDriver->fPlaybackPortList[i]) > 0) {
  577. CopyAndConvertOut(fDriver->fOutputBuffer, fDriver->GetOutputBuffer(i), fDriver->fEngineControl->fBufferSize, i, fDriver->fPlaybackChannels, fDriver->fBits);
  578. }
  579. }
  580. #ifdef JACK_MONITOR
  581. gCycleTable.fTable[gCycleWriteCount].fBeforeWrite = GetMicroSeconds();
  582. #endif
  583. ssize_t count = ::write(fDriver->fOutFD, fDriver->fOutputBuffer, fDriver->fOutputBufferSize);
  584. #ifdef JACK_MONITOR
  585. if (count > 0 && count != (int)fDriver->fOutputBufferSize)
  586. jack_log("JackBoomerDriverOutput::Execute count = %ld", count / (fDriver->fSampleSize * fDriver->fPlaybackChannels));
  587. gCycleTable.fTable[gCycleWriteCount].fAfterWrite = GetMicroSeconds();
  588. gCycleWriteCount = (gCycleWriteCount == CYCLE_POINTS - 1) ? gCycleWriteCount: gCycleWriteCount + 1;
  589. #endif
  590. // XRun detection
  591. audio_errinfo ei_out;
  592. if (ioctl(fDriver->fOutFD, SNDCTL_DSP_GETERROR, &ei_out) == 0) {
  593. if (ei_out.play_underruns > 0) {
  594. jack_error("JackBoomerDriverOutput::Execute underruns");
  595. jack_time_t cur_time = GetMicroSeconds();
  596. fDriver->NotifyXRun(cur_time, float(cur_time - fDriver->fBeginDateUst)); // Better this value than nothing...
  597. }
  598. if (ei_out.play_errorcount > 0 && ei_out.play_lasterror != 0) {
  599. jack_error("%d OSS play event(s), last=%05d:%d",ei_out.play_errorcount, ei_out.play_lasterror, ei_out.play_errorparm);
  600. }
  601. }
  602. if (count < 0) {
  603. jack_log("JackBoomerDriverOutput::Execute error = %s", strerror(errno));
  604. } else if (count < (int)fDriver->fOutputBufferSize) {
  605. jack_error("JackBoomerDriverOutput::Execute error bytes written = %ld", count);
  606. }
  607. // Duplex : sync with read thread
  608. if (fDriver->fInFD > 0 && fDriver->fOutFD > 0) {
  609. fDriver->SynchronizeWrite();
  610. } else {
  611. // Otherwise direct process
  612. fDriver->CycleTakeBeginTime();
  613. fDriver->Process();
  614. }
  615. return true;
  616. }
  617. void JackBoomerDriver::SynchronizeRead()
  618. {
  619. sem_wait(&fWriteSema);
  620. Process();
  621. sem_post(&fReadSema);
  622. }
  623. void JackBoomerDriver::SynchronizeWrite()
  624. {
  625. sem_post(&fWriteSema);
  626. sem_wait(&fReadSema);
  627. }
  628. int JackBoomerDriver::SetBufferSize(jack_nframes_t buffer_size)
  629. {
  630. CloseAux();
  631. JackAudioDriver::SetBufferSize(buffer_size); // never fails
  632. return OpenAux();
  633. }
  634. } // end of namespace
  635. #ifdef __cplusplus
  636. extern "C"
  637. {
  638. #endif
  639. SERVER_EXPORT jack_driver_desc_t* driver_get_descriptor()
  640. {
  641. jack_driver_desc_t *desc;
  642. unsigned int i;
  643. desc = (jack_driver_desc_t*)calloc(1, sizeof(jack_driver_desc_t));
  644. strcpy(desc->name, "boomer"); // size MUST be less then JACK_DRIVER_NAME_MAX + 1
  645. strcpy(desc->desc, "Boomer/OSS API based audio backend"); // size MUST be less then JACK_DRIVER_PARAM_DESC + 1
  646. desc->nparams = OSS_DRIVER_N_PARAMS;
  647. desc->params = (jack_driver_param_desc_t*)calloc(desc->nparams, sizeof(jack_driver_param_desc_t));
  648. i = 0;
  649. strcpy(desc->params[i].name, "rate");
  650. desc->params[i].character = 'r';
  651. desc->params[i].type = JackDriverParamUInt;
  652. desc->params[i].value.ui = OSS_DRIVER_DEF_FS;
  653. strcpy(desc->params[i].short_desc, "Sample rate");
  654. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  655. i++;
  656. strcpy(desc->params[i].name, "period");
  657. desc->params[i].character = 'p';
  658. desc->params[i].type = JackDriverParamUInt;
  659. desc->params[i].value.ui = OSS_DRIVER_DEF_BLKSIZE;
  660. strcpy(desc->params[i].short_desc, "Frames per period");
  661. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  662. i++;
  663. strcpy(desc->params[i].name, "nperiods");
  664. desc->params[i].character = 'n';
  665. desc->params[i].type = JackDriverParamUInt;
  666. desc->params[i].value.ui = OSS_DRIVER_DEF_NPERIODS;
  667. strcpy(desc->params[i].short_desc, "Number of periods to prefill output buffer");
  668. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  669. i++;
  670. strcpy(desc->params[i].name, "wordlength");
  671. desc->params[i].character = 'w';
  672. desc->params[i].type = JackDriverParamInt;
  673. desc->params[i].value.i = OSS_DRIVER_DEF_BITS;
  674. strcpy(desc->params[i].short_desc, "Word length");
  675. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  676. i++;
  677. strcpy(desc->params[i].name, "inchannels");
  678. desc->params[i].character = 'i';
  679. desc->params[i].type = JackDriverParamUInt;
  680. desc->params[i].value.ui = OSS_DRIVER_DEF_INS;
  681. strcpy(desc->params[i].short_desc, "Capture channels");
  682. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  683. i++;
  684. strcpy(desc->params[i].name, "outchannels");
  685. desc->params[i].character = 'o';
  686. desc->params[i].type = JackDriverParamUInt;
  687. desc->params[i].value.ui = OSS_DRIVER_DEF_OUTS;
  688. strcpy(desc->params[i].short_desc, "Playback channels");
  689. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  690. i++;
  691. strcpy(desc->params[i].name, "excl");
  692. desc->params[i].character = 'e';
  693. desc->params[i].type = JackDriverParamBool;
  694. desc->params[i].value.i = false;
  695. strcpy(desc->params[i].short_desc, "Exclusif (O_EXCL) access mode");
  696. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  697. i++;
  698. strcpy(desc->params[i].name, "capture");
  699. desc->params[i].character = 'C';
  700. desc->params[i].type = JackDriverParamString;
  701. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  702. strcpy(desc->params[i].short_desc, "Input device");
  703. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  704. i++;
  705. strcpy(desc->params[i].name, "playback");
  706. desc->params[i].character = 'P';
  707. desc->params[i].type = JackDriverParamString;
  708. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  709. strcpy(desc->params[i].short_desc, "Output device");
  710. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  711. i++;
  712. strcpy (desc->params[i].name, "device");
  713. desc->params[i].character = 'd';
  714. desc->params[i].type = JackDriverParamString;
  715. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  716. strcpy(desc->params[i].short_desc, "OSS device name");
  717. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  718. i++;
  719. strcpy(desc->params[i].name, "ignorehwbuf");
  720. desc->params[i].character = 'b';
  721. desc->params[i].type = JackDriverParamBool;
  722. desc->params[i].value.i = false;
  723. strcpy(desc->params[i].short_desc, "Ignore hardware period size");
  724. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  725. i++;
  726. strcpy(desc->params[i].name, "input-latency");
  727. desc->params[i].character = 'I';
  728. desc->params[i].type = JackDriverParamUInt;
  729. desc->params[i].value.i = 0;
  730. strcpy(desc->params[i].short_desc, "Extra input latency");
  731. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  732. i++;
  733. strcpy(desc->params[i].name, "output-latency");
  734. desc->params[i].character = 'O';
  735. desc->params[i].type = JackDriverParamUInt;
  736. desc->params[i].value.i = 0;
  737. strcpy(desc->params[i].short_desc, "Extra output latency");
  738. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  739. return desc;
  740. }
  741. EXPORT Jack::JackDriverClientInterface* driver_initialize(Jack::JackLockedEngine* engine, Jack::JackSynchro* table, const JSList* params)
  742. {
  743. int bits = OSS_DRIVER_DEF_BITS;
  744. jack_nframes_t srate = OSS_DRIVER_DEF_FS;
  745. jack_nframes_t frames_per_interrupt = OSS_DRIVER_DEF_BLKSIZE;
  746. const char* capture_pcm_name = OSS_DRIVER_DEF_DEV;
  747. const char* playback_pcm_name = OSS_DRIVER_DEF_DEV;
  748. bool capture = false;
  749. bool playback = false;
  750. int chan_in = 0;
  751. int chan_out = 0;
  752. bool monitor = false;
  753. bool excl = false;
  754. unsigned int nperiods = OSS_DRIVER_DEF_NPERIODS;
  755. const JSList *node;
  756. const jack_driver_param_t *param;
  757. bool ignorehwbuf = false;
  758. jack_nframes_t systemic_input_latency = 0;
  759. jack_nframes_t systemic_output_latency = 0;
  760. for (node = params; node; node = jack_slist_next(node)) {
  761. param = (const jack_driver_param_t *)node->data;
  762. switch (param->character) {
  763. case 'r':
  764. srate = param->value.ui;
  765. break;
  766. case 'p':
  767. frames_per_interrupt = (unsigned int)param->value.ui;
  768. break;
  769. case 'n':
  770. nperiods = (unsigned int)param->value.ui;
  771. break;
  772. case 'w':
  773. bits = param->value.i;
  774. break;
  775. case 'i':
  776. chan_in = (int)param->value.ui;
  777. break;
  778. case 'o':
  779. chan_out = (int)param->value.ui;
  780. break;
  781. case 'C':
  782. capture = true;
  783. if (strcmp(param->value.str, "none") != 0) {
  784. capture_pcm_name = strdup(param->value.str);
  785. }
  786. break;
  787. case 'P':
  788. playback = true;
  789. if (strcmp(param->value.str, "none") != 0) {
  790. playback_pcm_name = strdup(param->value.str);
  791. }
  792. break;
  793. case 'd':
  794. playback_pcm_name = strdup (param->value.str);
  795. capture_pcm_name = strdup (param->value.str);
  796. break;
  797. case 'b':
  798. ignorehwbuf = true;
  799. break;
  800. case 'e':
  801. excl = true;
  802. break;
  803. case 'I':
  804. systemic_input_latency = param->value.ui;
  805. break;
  806. case 'O':
  807. systemic_output_latency = param->value.ui;
  808. break;
  809. }
  810. }
  811. // duplex is the default
  812. if (!capture && !playback) {
  813. capture = true;
  814. playback = true;
  815. }
  816. Jack::JackBoomerDriver* boomer_driver = new Jack::JackBoomerDriver("system", "boomer", engine, table);
  817. // Special open for Boomer driver...
  818. if (boomer_driver->Open(frames_per_interrupt, nperiods, srate, capture, playback, chan_in, chan_out,
  819. excl, monitor, capture_pcm_name, playback_pcm_name, systemic_input_latency, systemic_output_latency, bits, ignorehwbuf) == 0) {
  820. return boomer_driver;
  821. } else {
  822. delete boomer_driver; // Delete the driver
  823. return NULL;
  824. }
  825. }
  826. #ifdef __cplusplus
  827. }
  828. #endif