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.

985 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 byte_skip, 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, byte_skip);
  62. break;
  63. }
  64. case 24: {
  65. signed int *s32src = (signed int*)src;
  66. s32src += channel;
  67. sample_move_dS_s24(dst, (char*)s32src, nframes, byte_skip);
  68. break;
  69. }
  70. case 32: {
  71. signed int *s32src = (signed int*)src;
  72. s32src += channel;
  73. sample_move_dS_s32u24(dst, (char*)s32src, nframes, byte_skip);
  74. break;
  75. }
  76. }
  77. }
  78. static inline void CopyAndConvertOut(void *dst, jack_sample_t *src, size_t nframes, int channel, int byte_skip, 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, byte_skip, 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, byte_skip, NULL);
  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, byte_skip, 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 = 4;
  107. break;
  108. case 32: /* native-endian 32-bit integer */
  109. fSampleFormat = AFMT_S32_NE;
  110. fSampleSize = 4;
  111. break;
  112. case 16: /* native-endian 16-bit integer */
  113. default:
  114. fSampleFormat = AFMT_S16_NE;
  115. fSampleSize = 2;
  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),
  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. {
  344. // Generic JackAudioDriver Open
  345. if (JackAudioDriver::Open(nframes, samplerate, capturing, playing, inchannels, outchannels, monitor,
  346. capture_driver_uid, playback_driver_uid, capture_latency, playback_latency) != 0) {
  347. return -1;
  348. } else {
  349. if (!fEngineControl->fSyncMode) {
  350. jack_error("Cannot run in asynchronous mode, use the -S parameter for jackd");
  351. return -1;
  352. }
  353. fRWMode |= ((capturing) ? kRead : 0);
  354. fRWMode |= ((playing) ? kWrite : 0);
  355. fBits = bits;
  356. fExcl = excl;
  357. fNperiods = (user_nperiods == 0) ? 1 : user_nperiods ;
  358. #ifdef JACK_MONITOR
  359. // Force memory page in
  360. memset(&gCycleTable, 0, sizeof(gCycleTable));
  361. #endif
  362. if (OpenAux() < 0) {
  363. Close();
  364. return -1;
  365. } else {
  366. return 0;
  367. }
  368. }
  369. }
  370. int JackBoomerDriver::Close()
  371. {
  372. #ifdef JACK_MONITOR
  373. FILE* file = fopen("OSSProfiling.log", "w");
  374. if (file) {
  375. jack_info("Writing OSS driver timing data....");
  376. for (int i = 1; i < std::min(gCycleReadCount, gCycleWriteCount); i++) {
  377. int d1 = gCycleTable.fTable[i].fAfterRead - gCycleTable.fTable[i].fBeforeRead;
  378. int d2 = gCycleTable.fTable[i].fAfterReadConvert - gCycleTable.fTable[i].fAfterRead;
  379. int d3 = gCycleTable.fTable[i].fAfterWrite - gCycleTable.fTable[i].fBeforeWrite;
  380. int d4 = gCycleTable.fTable[i].fBeforeWrite - gCycleTable.fTable[i].fBeforeWriteConvert;
  381. fprintf(file, "%d \t %d \t %d \t %d \t \n", d1, d2, d3, d4);
  382. }
  383. fclose(file);
  384. } else {
  385. jack_error("JackBoomerDriver::Close : cannot open OSSProfiling.log file");
  386. }
  387. file = fopen("TimingOSS.plot", "w");
  388. if (file == NULL) {
  389. jack_error("JackBoomerDriver::Close cannot open TimingOSS.plot file");
  390. } else {
  391. fprintf(file, "set grid\n");
  392. fprintf(file, "set title \"OSS audio driver timing\"\n");
  393. fprintf(file, "set xlabel \"audio cycles\"\n");
  394. fprintf(file, "set ylabel \"usec\"\n");
  395. fprintf(file, "plot \"OSSProfiling.log\" using 1 title \"Driver read wait\" with lines, \
  396. \"OSSProfiling.log\" using 2 title \"Driver read convert duration\" with lines, \
  397. \"OSSProfiling.log\" using 3 title \"Driver write wait\" with lines, \
  398. \"OSSProfiling.log\" using 4 title \"Driver write convert duration\" with lines\n");
  399. fprintf(file, "set output 'TimingOSS.pdf\n");
  400. fprintf(file, "set terminal pdf\n");
  401. fprintf(file, "set grid\n");
  402. fprintf(file, "set title \"OSS audio driver timing\"\n");
  403. fprintf(file, "set xlabel \"audio cycles\"\n");
  404. fprintf(file, "set ylabel \"usec\"\n");
  405. fprintf(file, "plot \"OSSProfiling.log\" using 1 title \"Driver read wait\" with lines, \
  406. \"OSSProfiling.log\" using 2 title \"Driver read convert duration\" with lines, \
  407. \"OSSProfiling.log\" using 3 title \"Driver write wait\" with lines, \
  408. \"OSSProfiling.log\" using 4 title \"Driver write convert duration\" with lines\n");
  409. fclose(file);
  410. }
  411. #endif
  412. int res = JackAudioDriver::Close();
  413. CloseAux();
  414. return res;
  415. }
  416. int JackBoomerDriver::OpenAux()
  417. {
  418. SetSampleFormat();
  419. if ((fRWMode & kRead) && (OpenInput() < 0)) {
  420. return -1;
  421. }
  422. if ((fRWMode & kWrite) && (OpenOutput() < 0)) {
  423. return -1;
  424. }
  425. DisplayDeviceInfo();
  426. return 0;
  427. }
  428. void JackBoomerDriver::CloseAux()
  429. {
  430. if (fRWMode & kRead && fInFD >= 0) {
  431. close(fInFD);
  432. fInFD = -1;
  433. }
  434. if (fRWMode & kWrite && fOutFD >= 0) {
  435. close(fOutFD);
  436. fOutFD = -1;
  437. }
  438. if (fInputBuffer)
  439. free(fInputBuffer);
  440. fInputBuffer = NULL;
  441. if (fOutputBuffer)
  442. free(fOutputBuffer);
  443. fOutputBuffer = NULL;
  444. }
  445. int JackBoomerDriver::Start()
  446. {
  447. jack_log("JackBoomerDriver::Start");
  448. JackAudioDriver::Start();
  449. // Start input thread only when needed
  450. if (fInFD >= 0) {
  451. if (fInputThread.StartSync() < 0) {
  452. jack_error("Cannot start input thread");
  453. return -1;
  454. }
  455. }
  456. // Start output thread only when needed
  457. if (fOutFD >= 0) {
  458. if (fOutputThread.StartSync() < 0) {
  459. jack_error("Cannot start output thread");
  460. return -1;
  461. }
  462. }
  463. return 0;
  464. }
  465. int JackBoomerDriver::Stop()
  466. {
  467. // Stop input thread only when needed
  468. if (fInFD >= 0) {
  469. fInputThread.Kill();
  470. }
  471. // Stop output thread only when needed
  472. if (fOutFD >= 0) {
  473. fOutputThread.Kill();
  474. }
  475. return 0;
  476. }
  477. bool JackBoomerDriver::JackBoomerDriverInput::Init()
  478. {
  479. if (fDriver->IsRealTime()) {
  480. jack_log("JackBoomerDriverInput::Init IsRealTime");
  481. if (fDriver->fInputThread.AcquireRealTime(GetEngineControl()->fServerPriority) < 0) {
  482. jack_error("AcquireRealTime error");
  483. } else {
  484. set_threaded_log_function();
  485. }
  486. }
  487. return true;
  488. }
  489. bool JackBoomerDriver::JackBoomerDriverInput::Execute()
  490. {
  491. #ifdef JACK_MONITOR
  492. gCycleTable.fTable[gCycleReadCount].fBeforeRead = GetMicroSeconds();
  493. #endif
  494. audio_errinfo ei_in;
  495. ssize_t count = ::read(fDriver->fInFD, fDriver->fInputBuffer, fDriver->fInputBufferSize);
  496. #ifdef JACK_MONITOR
  497. if (count > 0 && count != (int)fDriver->fInputBufferSize)
  498. jack_log("JackBoomerDriverInput::Execute count = %ld", count / (fDriver->fSampleSize * fDriver->fCaptureChannels));
  499. gCycleTable.fTable[gCycleReadCount].fAfterRead = GetMicroSeconds();
  500. #endif
  501. // XRun detection
  502. if (ioctl(fDriver->fInFD, SNDCTL_DSP_GETERROR, &ei_in) == 0) {
  503. if (ei_in.rec_overruns > 0 ) {
  504. jack_error("JackBoomerDriverInput::Execute overruns");
  505. jack_time_t cur_time = GetMicroSeconds();
  506. fDriver->NotifyXRun(cur_time, float(cur_time - fDriver->fBeginDateUst)); // Better this value than nothing...
  507. }
  508. if (ei_in.rec_errorcount > 0 && ei_in.rec_lasterror != 0) {
  509. jack_error("%d OSS rec event(s), last=%05d:%d", ei_in.rec_errorcount, ei_in.rec_lasterror, ei_in.rec_errorparm);
  510. }
  511. }
  512. if (count < 0) {
  513. jack_log("JackBoomerDriverInput::Execute error = %s", strerror(errno));
  514. } else if (count < (int)fDriver->fInputBufferSize) {
  515. jack_error("JackBoomerDriverInput::Execute error bytes read = %ld", count);
  516. } else {
  517. // Keep begin cycle time
  518. fDriver->CycleTakeBeginTime();
  519. for (int i = 0; i < fDriver->fCaptureChannels; i++) {
  520. if (fDriver->fGraphManager->GetConnectionsNum(fDriver->fCapturePortList[i]) > 0) {
  521. CopyAndConvertIn(fDriver->GetInputBuffer(i),
  522. fDriver->fInputBuffer,
  523. fDriver->fEngineControl->fBufferSize,
  524. i,
  525. fDriver->fCaptureChannels * fDriver->fSampleSize,
  526. fDriver->fBits);
  527. }
  528. }
  529. #ifdef JACK_MONITOR
  530. gCycleTable.fTable[gCycleReadCount].fAfterReadConvert = GetMicroSeconds();
  531. gCycleReadCount = (gCycleReadCount == CYCLE_POINTS - 1) ? gCycleReadCount: gCycleReadCount + 1;
  532. #endif
  533. }
  534. // Duplex : sync with write thread
  535. if (fDriver->fInFD >= 0 && fDriver->fOutFD >= 0) {
  536. fDriver->SynchronizeRead();
  537. } else {
  538. // Otherwise direct process
  539. fDriver->Process();
  540. }
  541. return true;
  542. }
  543. bool JackBoomerDriver::JackBoomerDriverOutput::Init()
  544. {
  545. if (fDriver->IsRealTime()) {
  546. jack_log("JackBoomerDriverOutput::Init IsRealTime");
  547. if (fDriver->fOutputThread.AcquireRealTime(GetEngineControl()->fServerPriority) < 0) {
  548. jack_error("AcquireRealTime error");
  549. } else {
  550. set_threaded_log_function();
  551. }
  552. }
  553. // Maybe necessary to write an empty output buffer first time : see http://manuals.opensound.com/developer/fulldup.c.html
  554. memset(fDriver->fOutputBuffer, 0, fDriver->fOutputBufferSize);
  555. // Prefill ouput buffer
  556. for (int i = 0; i < fDriver->fNperiods; i++) {
  557. ssize_t count = ::write(fDriver->fOutFD, fDriver->fOutputBuffer, fDriver->fOutputBufferSize);
  558. if (count < (int)fDriver->fOutputBufferSize) {
  559. jack_error("JackBoomerDriverOutput::Init error bytes written = %ld", count);
  560. }
  561. }
  562. int delay;
  563. if (ioctl(fDriver->fOutFD, SNDCTL_DSP_GETODELAY, &delay) == -1) {
  564. jack_error("JackBoomerDriverOutput::Init error get out delay : %s@%i, errno = %d", __FILE__, __LINE__, errno);
  565. }
  566. delay /= fDriver->fSampleSize * fDriver->fPlaybackChannels;
  567. jack_info("JackBoomerDriverOutput::Init output latency frames = %ld", delay);
  568. return true;
  569. }
  570. bool JackBoomerDriver::JackBoomerDriverOutput::Execute()
  571. {
  572. memset(fDriver->fOutputBuffer, 0, fDriver->fOutputBufferSize);
  573. #ifdef JACK_MONITOR
  574. gCycleTable.fTable[gCycleWriteCount].fBeforeWriteConvert = GetMicroSeconds();
  575. #endif
  576. for (int i = 0; i < fDriver->fPlaybackChannels; i++) {
  577. if (fDriver->fGraphManager->GetConnectionsNum(fDriver->fPlaybackPortList[i]) > 0) {
  578. CopyAndConvertOut(fDriver->fOutputBuffer,
  579. fDriver->GetOutputBuffer(i),
  580. fDriver->fEngineControl->fBufferSize,
  581. i,
  582. fDriver->fPlaybackChannels * fDriver->fSampleSize,
  583. fDriver->fBits);
  584. }
  585. }
  586. #ifdef JACK_MONITOR
  587. gCycleTable.fTable[gCycleWriteCount].fBeforeWrite = GetMicroSeconds();
  588. #endif
  589. ssize_t count = ::write(fDriver->fOutFD, fDriver->fOutputBuffer, fDriver->fOutputBufferSize);
  590. #ifdef JACK_MONITOR
  591. if (count > 0 && count != (int)fDriver->fOutputBufferSize)
  592. jack_log("JackBoomerDriverOutput::Execute count = %ld", count / (fDriver->fSampleSize * fDriver->fPlaybackChannels));
  593. gCycleTable.fTable[gCycleWriteCount].fAfterWrite = GetMicroSeconds();
  594. gCycleWriteCount = (gCycleWriteCount == CYCLE_POINTS - 1) ? gCycleWriteCount: gCycleWriteCount + 1;
  595. #endif
  596. // XRun detection
  597. audio_errinfo ei_out;
  598. if (ioctl(fDriver->fOutFD, SNDCTL_DSP_GETERROR, &ei_out) == 0) {
  599. if (ei_out.play_underruns > 0) {
  600. jack_error("JackBoomerDriverOutput::Execute underruns");
  601. jack_time_t cur_time = GetMicroSeconds();
  602. fDriver->NotifyXRun(cur_time, float(cur_time - fDriver->fBeginDateUst)); // Better this value than nothing...
  603. }
  604. if (ei_out.play_errorcount > 0 && ei_out.play_lasterror != 0) {
  605. jack_error("%d OSS play event(s), last=%05d:%d",ei_out.play_errorcount, ei_out.play_lasterror, ei_out.play_errorparm);
  606. }
  607. }
  608. if (count < 0) {
  609. jack_log("JackBoomerDriverOutput::Execute error = %s", strerror(errno));
  610. } else if (count < (int)fDriver->fOutputBufferSize) {
  611. jack_error("JackBoomerDriverOutput::Execute error bytes written = %ld", count);
  612. }
  613. // Duplex : sync with read thread
  614. if (fDriver->fInFD >= 0 && fDriver->fOutFD >= 0) {
  615. fDriver->SynchronizeWrite();
  616. } else {
  617. // Otherwise direct process
  618. fDriver->CycleTakeBeginTime();
  619. fDriver->Process();
  620. }
  621. return true;
  622. }
  623. void JackBoomerDriver::SynchronizeRead()
  624. {
  625. sem_wait(&fWriteSema);
  626. Process();
  627. sem_post(&fReadSema);
  628. }
  629. void JackBoomerDriver::SynchronizeWrite()
  630. {
  631. sem_post(&fWriteSema);
  632. sem_wait(&fReadSema);
  633. }
  634. int JackBoomerDriver::SetBufferSize(jack_nframes_t buffer_size)
  635. {
  636. CloseAux();
  637. JackAudioDriver::SetBufferSize(buffer_size); // never fails
  638. return OpenAux();
  639. }
  640. } // end of namespace
  641. #ifdef __cplusplus
  642. extern "C"
  643. {
  644. #endif
  645. SERVER_EXPORT jack_driver_desc_t* driver_get_descriptor()
  646. {
  647. jack_driver_desc_t *desc;
  648. unsigned int i;
  649. desc = (jack_driver_desc_t*)calloc(1, sizeof(jack_driver_desc_t));
  650. strcpy(desc->name, "boomer"); // size MUST be less then JACK_DRIVER_NAME_MAX + 1
  651. strcpy(desc->desc, "Boomer/OSS API based audio backend"); // size MUST be less then JACK_DRIVER_PARAM_DESC + 1
  652. desc->nparams = OSS_DRIVER_N_PARAMS;
  653. desc->params = (jack_driver_param_desc_t*)calloc(desc->nparams, sizeof(jack_driver_param_desc_t));
  654. i = 0;
  655. strcpy(desc->params[i].name, "rate");
  656. desc->params[i].character = 'r';
  657. desc->params[i].type = JackDriverParamUInt;
  658. desc->params[i].value.ui = OSS_DRIVER_DEF_FS;
  659. strcpy(desc->params[i].short_desc, "Sample rate");
  660. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  661. i++;
  662. strcpy(desc->params[i].name, "period");
  663. desc->params[i].character = 'p';
  664. desc->params[i].type = JackDriverParamUInt;
  665. desc->params[i].value.ui = OSS_DRIVER_DEF_BLKSIZE;
  666. strcpy(desc->params[i].short_desc, "Frames per period");
  667. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  668. i++;
  669. strcpy(desc->params[i].name, "nperiods");
  670. desc->params[i].character = 'n';
  671. desc->params[i].type = JackDriverParamUInt;
  672. desc->params[i].value.ui = OSS_DRIVER_DEF_NPERIODS;
  673. strcpy(desc->params[i].short_desc, "Number of periods to prefill output buffer");
  674. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  675. i++;
  676. strcpy(desc->params[i].name, "wordlength");
  677. desc->params[i].character = 'w';
  678. desc->params[i].type = JackDriverParamInt;
  679. desc->params[i].value.i = OSS_DRIVER_DEF_BITS;
  680. strcpy(desc->params[i].short_desc, "Word length");
  681. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  682. i++;
  683. strcpy(desc->params[i].name, "inchannels");
  684. desc->params[i].character = 'i';
  685. desc->params[i].type = JackDriverParamUInt;
  686. desc->params[i].value.ui = OSS_DRIVER_DEF_INS;
  687. strcpy(desc->params[i].short_desc, "Capture channels");
  688. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  689. i++;
  690. strcpy(desc->params[i].name, "outchannels");
  691. desc->params[i].character = 'o';
  692. desc->params[i].type = JackDriverParamUInt;
  693. desc->params[i].value.ui = OSS_DRIVER_DEF_OUTS;
  694. strcpy(desc->params[i].short_desc, "Playback channels");
  695. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  696. i++;
  697. strcpy(desc->params[i].name, "excl");
  698. desc->params[i].character = 'e';
  699. desc->params[i].type = JackDriverParamBool;
  700. desc->params[i].value.i = false;
  701. strcpy(desc->params[i].short_desc, "Exclusif (O_EXCL) access mode");
  702. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  703. i++;
  704. strcpy(desc->params[i].name, "capture");
  705. desc->params[i].character = 'C';
  706. desc->params[i].type = JackDriverParamString;
  707. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  708. strcpy(desc->params[i].short_desc, "Input device");
  709. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  710. i++;
  711. strcpy(desc->params[i].name, "playback");
  712. desc->params[i].character = 'P';
  713. desc->params[i].type = JackDriverParamString;
  714. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  715. strcpy(desc->params[i].short_desc, "Output device");
  716. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  717. i++;
  718. strcpy (desc->params[i].name, "device");
  719. desc->params[i].character = 'd';
  720. desc->params[i].type = JackDriverParamString;
  721. strcpy(desc->params[i].value.str, OSS_DRIVER_DEF_DEV);
  722. strcpy(desc->params[i].short_desc, "OSS device name");
  723. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  724. i++;
  725. strcpy(desc->params[i].name, "input-latency");
  726. desc->params[i].character = 'I';
  727. desc->params[i].type = JackDriverParamUInt;
  728. desc->params[i].value.i = 0;
  729. strcpy(desc->params[i].short_desc, "Extra input latency");
  730. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  731. i++;
  732. strcpy(desc->params[i].name, "output-latency");
  733. desc->params[i].character = 'O';
  734. desc->params[i].type = JackDriverParamUInt;
  735. desc->params[i].value.i = 0;
  736. strcpy(desc->params[i].short_desc, "Extra output latency");
  737. strcpy(desc->params[i].long_desc, desc->params[i].short_desc);
  738. return desc;
  739. }
  740. EXPORT Jack::JackDriverClientInterface* driver_initialize(Jack::JackLockedEngine* engine, Jack::JackSynchro* table, const JSList* params)
  741. {
  742. int bits = OSS_DRIVER_DEF_BITS;
  743. jack_nframes_t srate = OSS_DRIVER_DEF_FS;
  744. jack_nframes_t frames_per_interrupt = OSS_DRIVER_DEF_BLKSIZE;
  745. const char* capture_pcm_name = OSS_DRIVER_DEF_DEV;
  746. const char* playback_pcm_name = OSS_DRIVER_DEF_DEV;
  747. bool capture = false;
  748. bool playback = false;
  749. int chan_in = 0;
  750. int chan_out = 0;
  751. bool monitor = false;
  752. bool excl = false;
  753. unsigned int nperiods = OSS_DRIVER_DEF_NPERIODS;
  754. const JSList *node;
  755. const jack_driver_param_t *param;
  756. jack_nframes_t systemic_input_latency = 0;
  757. jack_nframes_t systemic_output_latency = 0;
  758. for (node = params; node; node = jack_slist_next(node)) {
  759. param = (const jack_driver_param_t *)node->data;
  760. switch (param->character) {
  761. case 'r':
  762. srate = param->value.ui;
  763. break;
  764. case 'p':
  765. frames_per_interrupt = (unsigned int)param->value.ui;
  766. break;
  767. case 'n':
  768. nperiods = (unsigned int)param->value.ui;
  769. break;
  770. case 'w':
  771. bits = param->value.i;
  772. break;
  773. case 'i':
  774. chan_in = (int)param->value.ui;
  775. break;
  776. case 'o':
  777. chan_out = (int)param->value.ui;
  778. break;
  779. case 'C':
  780. capture = true;
  781. if (strcmp(param->value.str, "none") != 0) {
  782. capture_pcm_name = strdup(param->value.str);
  783. }
  784. break;
  785. case 'P':
  786. playback = true;
  787. if (strcmp(param->value.str, "none") != 0) {
  788. playback_pcm_name = strdup(param->value.str);
  789. }
  790. break;
  791. case 'd':
  792. playback_pcm_name = strdup (param->value.str);
  793. capture_pcm_name = strdup (param->value.str);
  794. break;
  795. case 'e':
  796. excl = true;
  797. break;
  798. case 'I':
  799. systemic_input_latency = param->value.ui;
  800. break;
  801. case 'O':
  802. systemic_output_latency = param->value.ui;
  803. break;
  804. }
  805. }
  806. // duplex is the default
  807. if (!capture && !playback) {
  808. capture = true;
  809. playback = true;
  810. }
  811. Jack::JackBoomerDriver* boomer_driver = new Jack::JackBoomerDriver("system", "boomer", engine, table);
  812. // Special open for Boomer driver...
  813. if (boomer_driver->Open(frames_per_interrupt, nperiods, srate, capture, playback, chan_in, chan_out, excl,
  814. monitor, capture_pcm_name, playback_pcm_name, systemic_input_latency, systemic_output_latency, bits) == 0) {
  815. return boomer_driver;
  816. } else {
  817. delete boomer_driver; // Delete the driver
  818. return NULL;
  819. }
  820. }
  821. #ifdef __cplusplus
  822. }
  823. #endif