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.

934 lines
35KB

  1. /*
  2. Copyright (C) 2008 Romain Moret at 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 "JackNetTool.h"
  16. #ifdef __APPLE__
  17. #include <mach/mach_time.h>
  18. class HardwareClock
  19. {
  20. public:
  21. HardwareClock();
  22. void Reset();
  23. void Update();
  24. float GetDeltaTime() const;
  25. double GetTime() const;
  26. private:
  27. double m_clockToSeconds;
  28. uint64_t m_startAbsTime;
  29. uint64_t m_lastAbsTime;
  30. double m_time;
  31. float m_deltaTime;
  32. };
  33. HardwareClock::HardwareClock()
  34. {
  35. mach_timebase_info_data_t info;
  36. mach_timebase_info(&info);
  37. m_clockToSeconds = (double)info.numer/info.denom/1000000000.0;
  38. Reset();
  39. }
  40. void HardwareClock::Reset()
  41. {
  42. m_startAbsTime = mach_absolute_time();
  43. m_lastAbsTime = m_startAbsTime;
  44. m_time = m_startAbsTime*m_clockToSeconds;
  45. m_deltaTime = 1.0f/60.0f;
  46. }
  47. void HardwareClock::Update()
  48. {
  49. const uint64_t currentTime = mach_absolute_time();
  50. const uint64_t dt = currentTime - m_lastAbsTime;
  51. m_time = currentTime*m_clockToSeconds;
  52. m_deltaTime = (double)dt*m_clockToSeconds;
  53. m_lastAbsTime = currentTime;
  54. }
  55. float HardwareClock::GetDeltaTime() const
  56. {
  57. return m_deltaTime;
  58. }
  59. double HardwareClock::GetTime() const
  60. {
  61. return m_time;
  62. }
  63. #endif
  64. using namespace std;
  65. namespace Jack
  66. {
  67. // NetMidiBuffer**********************************************************************************
  68. NetMidiBuffer::NetMidiBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  69. {
  70. fNPorts = nports;
  71. fMaxBufsize = fNPorts * sizeof ( sample_t ) * params->fPeriodSize ;
  72. fMaxPcktSize = params->fMtu - sizeof ( packet_header_t );
  73. fBuffer = new char[fMaxBufsize];
  74. fPortBuffer = new JackMidiBuffer* [fNPorts];
  75. for ( int port_index = 0; port_index < fNPorts; port_index++ )
  76. fPortBuffer[port_index] = NULL;
  77. fNetBuffer = net_buffer;
  78. fCycleSize = params->fMtu * (max(params->fSendMidiChannels, params->fReturnMidiChannels) *
  79. params->fPeriodSize * sizeof(sample_t) / (params->fMtu - sizeof(packet_header_t)));
  80. }
  81. NetMidiBuffer::~NetMidiBuffer()
  82. {
  83. delete[] fBuffer;
  84. delete[] fPortBuffer;
  85. }
  86. size_t NetMidiBuffer::GetCycleSize()
  87. {
  88. return fCycleSize;
  89. }
  90. int NetMidiBuffer::GetNumPackets()
  91. {
  92. /*
  93. return (data_size % PACKET_AVAILABLE_SIZE)
  94. ? (data_size / PACKET_AVAILABLE_SIZE + 1)
  95. : data_size / PACKET_AVAILABLE_SIZE;
  96. */
  97. //TODO
  98. return 0;
  99. }
  100. void NetMidiBuffer::SetBuffer ( int index, JackMidiBuffer* buffer )
  101. {
  102. fPortBuffer[index] = buffer;
  103. }
  104. JackMidiBuffer* NetMidiBuffer::GetBuffer ( int index )
  105. {
  106. return fPortBuffer[index];
  107. }
  108. void NetMidiBuffer::DisplayEvents()
  109. {
  110. for ( int port_index = 0; port_index < fNPorts; port_index++ )
  111. {
  112. for ( uint event = 0; event < fPortBuffer[port_index]->event_count; event++ )
  113. if ( fPortBuffer[port_index]->IsValid() )
  114. jack_info ( "port %d : midi event %u/%u -> time : %u, size : %u",
  115. port_index + 1, event + 1, fPortBuffer[port_index]->event_count,
  116. fPortBuffer[port_index]->events[event].time, fPortBuffer[port_index]->events[event].size );
  117. }
  118. }
  119. int NetMidiBuffer::RenderFromJackPorts()
  120. {
  121. int pos = 0;
  122. size_t copy_size;
  123. for ( int port_index = 0; port_index < fNPorts; port_index++ )
  124. {
  125. char* write_pos = fBuffer + pos;
  126. copy_size = sizeof ( JackMidiBuffer ) + fPortBuffer[port_index]->event_count * sizeof ( JackMidiEvent );
  127. memcpy ( fBuffer + pos, fPortBuffer[port_index], copy_size );
  128. pos += copy_size;
  129. memcpy ( fBuffer + pos, fPortBuffer[port_index] + ( fPortBuffer[port_index]->buffer_size - fPortBuffer[port_index]->write_pos ),
  130. fPortBuffer[port_index]->write_pos );
  131. pos += fPortBuffer[port_index]->write_pos;
  132. JackMidiBuffer* midi_buffer = reinterpret_cast<JackMidiBuffer*>(write_pos);
  133. MidiBufferHToN(midi_buffer, midi_buffer);
  134. }
  135. return pos;
  136. }
  137. int NetMidiBuffer::RenderToJackPorts()
  138. {
  139. int pos = 0;
  140. int copy_size;
  141. for ( int port_index = 0; port_index < fNPorts; port_index++ )
  142. {
  143. JackMidiBuffer* midi_buffer = reinterpret_cast<JackMidiBuffer*>(fBuffer + pos);
  144. MidiBufferNToH(midi_buffer, midi_buffer);
  145. copy_size = sizeof ( JackMidiBuffer ) + reinterpret_cast<JackMidiBuffer*> ( fBuffer + pos )->event_count * sizeof ( JackMidiEvent );
  146. memcpy ( fPortBuffer[port_index], fBuffer + pos, copy_size );
  147. pos += copy_size;
  148. memcpy ( fPortBuffer[port_index] + ( fPortBuffer[port_index]->buffer_size - fPortBuffer[port_index]->write_pos ),
  149. fBuffer + pos, fPortBuffer[port_index]->write_pos );
  150. pos += fPortBuffer[port_index]->write_pos;
  151. }
  152. return pos;
  153. }
  154. int NetMidiBuffer::RenderFromNetwork ( int subcycle, size_t copy_size )
  155. {
  156. memcpy ( fBuffer + subcycle * fMaxPcktSize, fNetBuffer, copy_size );
  157. return copy_size;
  158. }
  159. int NetMidiBuffer::RenderToNetwork ( int subcycle, size_t total_size )
  160. {
  161. int size = total_size - subcycle * fMaxPcktSize;
  162. int copy_size = ( size <= fMaxPcktSize ) ? size : fMaxPcktSize;
  163. memcpy ( fNetBuffer, fBuffer + subcycle * fMaxPcktSize, copy_size );
  164. return copy_size;
  165. }
  166. // net audio buffer *********************************************************************************
  167. NetFloatAudioBuffer::NetFloatAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  168. : fPortBuffer(params, nports), fNetBuffer(net_buffer)
  169. {}
  170. NetFloatAudioBuffer::~NetFloatAudioBuffer()
  171. {}
  172. size_t NetFloatAudioBuffer::GetCycleSize()
  173. {
  174. return fPortBuffer.GetCycleSize();
  175. }
  176. void NetFloatAudioBuffer::SetBuffer ( int index, sample_t* buffer )
  177. {
  178. fPortBuffer.SetBuffer(index, buffer);
  179. }
  180. sample_t* NetFloatAudioBuffer::GetBuffer ( int index )
  181. {
  182. return fPortBuffer.GetBuffer(index);
  183. }
  184. int NetFloatAudioBuffer::RenderFromJackPorts ()
  185. {
  186. return fPortBuffer.RenderFromJackPorts();
  187. }
  188. int NetFloatAudioBuffer::RenderToJackPorts ()
  189. {
  190. return fPortBuffer.RenderToJackPorts();
  191. }
  192. //network<->buffer
  193. int NetFloatAudioBuffer::RenderFromNetwork ( int cycle, int subcycle, size_t copy_size )
  194. {
  195. return fPortBuffer.RenderFromNetwork(fNetBuffer, cycle, subcycle, copy_size);
  196. }
  197. int NetFloatAudioBuffer::RenderToNetwork (int subcycle, size_t total_size )
  198. {
  199. return fPortBuffer.RenderToNetwork(fNetBuffer, subcycle, total_size);
  200. }
  201. // Celt audio buffer *********************************************************************************
  202. #ifdef CELT
  203. #define KPS 32
  204. #define KPS_DIV 8
  205. NetCeltAudioBuffer::NetCeltAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  206. : fNetBuffer(net_buffer)
  207. {
  208. int res1, res2;
  209. fNPorts = nports;
  210. fPeriodSize = params->fPeriodSize;
  211. fCeltMode = new CELTMode *[fNPorts];
  212. fCeltEncoder = new CELTEncoder *[fNPorts];
  213. fCeltDecoder = new CELTDecoder *[fNPorts];
  214. memset(fCeltMode, 0, fNPorts * sizeof(CELTMode*));
  215. memset(fCeltEncoder, 0, fNPorts * sizeof(CELTEncoder*));
  216. memset(fCeltDecoder, 0, fNPorts * sizeof(CELTDecoder*));
  217. int error = CELT_OK;
  218. for (int i = 0; i < fNPorts; i++) {
  219. fCeltMode[i] = celt_mode_create(params->fSampleRate, params->fPeriodSize, &error);
  220. if (error != CELT_OK)
  221. goto error;
  222. fCeltEncoder[i] = celt_encoder_create(fCeltMode[i], 1, &error);
  223. if (error != CELT_OK)
  224. goto error;
  225. celt_encoder_ctl(fCeltEncoder[i], CELT_SET_COMPLEXITY(1));
  226. fCeltDecoder[i] = celt_decoder_create(fCeltMode[i], 1, &error);
  227. if (error != CELT_OK)
  228. goto error;
  229. celt_decoder_ctl(fCeltDecoder[i], CELT_SET_COMPLEXITY(1));
  230. }
  231. fPortBuffer = new sample_t* [fNPorts];
  232. for (int port_index = 0; port_index < fNPorts; port_index++)
  233. fPortBuffer[port_index] = NULL;
  234. /*
  235. celt_int32 lookahead;
  236. celt_mode_info( celt_mode, CELT_GET_LOOKAHEAD, &lookahead );
  237. */
  238. //fCompressedSizeByte = (KPS * params->fPeriodSize * 1024 / params->fSampleRate / 8)&(~1);
  239. fCompressedSizeByte = (params->fPeriodSize * sizeof(sample_t)) / KPS_DIV; // TODO
  240. fCompressedBuffer = new unsigned char* [fNPorts];
  241. for (int port_index = 0; port_index < fNPorts; port_index++)
  242. fCompressedBuffer[port_index] = new unsigned char[fCompressedSizeByte];
  243. jack_log("fCompressedSizeByte %d", fCompressedSizeByte);
  244. res1 = (fNPorts * fCompressedSizeByte) % (params->fMtu - sizeof(packet_header_t));
  245. res2 = (fNPorts * fCompressedSizeByte) / (params->fMtu - sizeof(packet_header_t));
  246. jack_log("res1 = %d res2 = %d", res1, res2);
  247. fNumPackets = (res1) ? (res2 + 1) : res2;
  248. fSubPeriodBytesSize = fCompressedSizeByte / fNumPackets;
  249. fLastSubPeriodBytesSize = fSubPeriodBytesSize + fCompressedSizeByte % fNumPackets;
  250. jack_log("fNumPackets = %d fSubPeriodBytesSize = %d, fLastSubPeriodBytesSize = %d", fNumPackets, fSubPeriodBytesSize, fLastSubPeriodBytesSize);
  251. fCycleDuration = float(fSubPeriodBytesSize / sizeof(sample_t)) / float(params->fSampleRate);
  252. fCycleSize = params->fMtu * fNumPackets;
  253. fLastSubCycle = -1;
  254. return;
  255. error:
  256. FreeCelt();
  257. throw std::bad_alloc();
  258. }
  259. NetCeltAudioBuffer::~NetCeltAudioBuffer()
  260. {
  261. FreeCelt();
  262. for (int port_index = 0; port_index < fNPorts; port_index++)
  263. delete [] fCompressedBuffer[port_index];
  264. delete [] fCompressedBuffer;
  265. delete [] fPortBuffer;
  266. }
  267. void NetCeltAudioBuffer::FreeCelt()
  268. {
  269. for (int i = 0; i < fNPorts; i++) {
  270. if (fCeltEncoder[i])
  271. celt_encoder_destroy(fCeltEncoder[i]);
  272. if (fCeltDecoder[i])
  273. celt_decoder_destroy(fCeltDecoder[i]);
  274. if (fCeltMode[i])
  275. celt_mode_destroy(fCeltMode[i]);
  276. }
  277. delete [] fCeltMode;
  278. delete [] fCeltEncoder;
  279. delete [] fCeltDecoder;
  280. }
  281. size_t NetCeltAudioBuffer::GetCycleSize()
  282. {
  283. return fCycleSize;
  284. }
  285. float NetCeltAudioBuffer::GetCycleDuration()
  286. {
  287. return fCycleDuration;
  288. }
  289. int NetCeltAudioBuffer::GetNumPackets()
  290. {
  291. return fNumPackets;
  292. }
  293. void NetCeltAudioBuffer::SetBuffer(int index, sample_t* buffer)
  294. {
  295. fPortBuffer[index] = buffer;
  296. }
  297. sample_t* NetCeltAudioBuffer::GetBuffer(int index)
  298. {
  299. return fPortBuffer[index];
  300. }
  301. int NetCeltAudioBuffer::RenderFromJackPorts()
  302. {
  303. float floatbuf[fPeriodSize];
  304. for (int port_index = 0; port_index < fNPorts; port_index++) {
  305. memcpy(floatbuf, fPortBuffer[port_index], fPeriodSize * sizeof(float));
  306. int res = celt_encode_float(fCeltEncoder[port_index], floatbuf, NULL, fCompressedBuffer[port_index], fCompressedSizeByte);
  307. if (res != fCompressedSizeByte) {
  308. jack_error("celt_encode_float error fCompressedSizeByte = %d res = %d", fCompressedSizeByte, res);
  309. }
  310. }
  311. return fNPorts * fCompressedSizeByte; // in bytes
  312. }
  313. int NetCeltAudioBuffer::RenderToJackPorts()
  314. {
  315. for (int port_index = 0; port_index < fNPorts; port_index++) {
  316. int res = celt_decode_float(fCeltDecoder[port_index], fCompressedBuffer[port_index], fCompressedSizeByte, fPortBuffer[port_index]);
  317. if (res != CELT_OK) {
  318. jack_error("celt_decode_float error res = %d", fCompressedSizeByte, res);
  319. }
  320. }
  321. fLastSubCycle = -1;
  322. //return fPeriodSize * sizeof(sample_t); // in bytes; TODO
  323. return 0;
  324. }
  325. HardwareClock clock;
  326. //network<->buffer
  327. int NetCeltAudioBuffer::RenderFromNetwork(int cycle, int subcycle, size_t copy_size)
  328. {
  329. //clock.Update();
  330. if (subcycle == fNumPackets - 1) {
  331. for (int port_index = 0; port_index < fNPorts; port_index++)
  332. memcpy(fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fNetBuffer + port_index * fLastSubPeriodBytesSize, fLastSubPeriodBytesSize);
  333. } else {
  334. for (int port_index = 0; port_index < fNPorts; port_index++)
  335. memcpy(fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fNetBuffer + port_index * fSubPeriodBytesSize, fSubPeriodBytesSize);
  336. }
  337. if (subcycle != fLastSubCycle + 1)
  338. jack_error("Packet(s) missing from... %d %d", fLastSubCycle, subcycle);
  339. fLastSubCycle = subcycle;
  340. //clock.Update();
  341. //const float dt = clock.GetDeltaTime();
  342. //printf("Delta: %f s\n", dt);
  343. return copy_size;
  344. }
  345. int NetCeltAudioBuffer::RenderToNetwork(int subcycle, size_t total_size)
  346. {
  347. if (subcycle == fNumPackets - 1) {
  348. for (int port_index = 0; port_index < fNPorts; port_index++)
  349. memcpy(fNetBuffer + port_index * fLastSubPeriodBytesSize, fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fLastSubPeriodBytesSize);
  350. return fNPorts * fLastSubPeriodBytesSize;
  351. } else {
  352. for (int port_index = 0; port_index < fNPorts; port_index++)
  353. memcpy(fNetBuffer + port_index * fSubPeriodBytesSize, fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fSubPeriodBytesSize);
  354. return fNPorts * fSubPeriodBytesSize;
  355. }
  356. return fNPorts * fSubPeriodBytesSize;
  357. }
  358. #endif
  359. NetIntAudioBuffer::NetIntAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  360. : fNetBuffer(net_buffer)
  361. {
  362. int res1, res2;
  363. fNPorts = nports;
  364. fPeriodSize = params->fPeriodSize;
  365. fPortBuffer = new sample_t* [fNPorts];
  366. for (int port_index = 0; port_index < fNPorts; port_index++)
  367. fPortBuffer[port_index] = NULL;
  368. fIntBuffer = new short* [fNPorts];
  369. for (int port_index = 0; port_index < fNPorts; port_index++)
  370. fIntBuffer[port_index] = new short[fPeriodSize];
  371. fCompressedSizeByte = (params->fPeriodSize * sizeof(short));
  372. jack_log("fCompressedSizeByte %d", fCompressedSizeByte);
  373. res1 = (fNPorts * fCompressedSizeByte) % (params->fMtu - sizeof(packet_header_t));
  374. res2 = (fNPorts * fCompressedSizeByte) / (params->fMtu - sizeof(packet_header_t));
  375. jack_log("res1 = %d res2 = %d", res1, res2);
  376. fNumPackets = (res1) ? (res2 + 1) : res2;
  377. fSubPeriodBytesSize = fCompressedSizeByte / fNumPackets;
  378. fSubPeriodSize = fSubPeriodBytesSize / sizeof(short);
  379. //fLastSubPeriodBytesSize = fSubPeriodBytesSize + (fCompressedSizeByte - (fSubPeriodBytesSize * fNumPackets));
  380. fLastSubPeriodBytesSize = fSubPeriodBytesSize + fCompressedSizeByte % fNumPackets;
  381. fLastSubPeriodSize = fLastSubPeriodBytesSize / sizeof(short);
  382. jack_log("fNumPackets = %d fSubPeriodBytesSize = %d, fLastSubPeriodBytesSize = %d", fNumPackets, fSubPeriodBytesSize, fLastSubPeriodBytesSize);
  383. fCycleDuration = float(fSubPeriodBytesSize / sizeof(sample_t)) / float(params->fSampleRate);
  384. fCycleSize = params->fMtu * fNumPackets;
  385. fLastSubCycle = -1;
  386. return;
  387. }
  388. NetIntAudioBuffer::~NetIntAudioBuffer()
  389. {
  390. for (int port_index = 0; port_index < fNPorts; port_index++)
  391. delete [] fIntBuffer[port_index];
  392. delete [] fIntBuffer;
  393. delete [] fPortBuffer;
  394. }
  395. size_t NetIntAudioBuffer::GetCycleSize()
  396. {
  397. return fCycleSize;
  398. }
  399. float NetIntAudioBuffer::GetCycleDuration()
  400. {
  401. return fCycleDuration;
  402. }
  403. int NetIntAudioBuffer::GetNumPackets()
  404. {
  405. return fNumPackets;
  406. }
  407. void NetIntAudioBuffer::SetBuffer(int index, sample_t* buffer)
  408. {
  409. fPortBuffer[index] = buffer;
  410. }
  411. sample_t* NetIntAudioBuffer::GetBuffer(int index)
  412. {
  413. return fPortBuffer[index];
  414. }
  415. int NetIntAudioBuffer::RenderFromJackPorts()
  416. {
  417. for (int port_index = 0; port_index < fNPorts; port_index++) {
  418. for (unsigned int frame = 0; frame < fPeriodSize; frame++)
  419. fIntBuffer[port_index][frame] = short(fPortBuffer[port_index][frame] * 32768.f);
  420. }
  421. return fNPorts * fCompressedSizeByte; // in bytes
  422. }
  423. int NetIntAudioBuffer::RenderToJackPorts()
  424. {
  425. for (int port_index = 0; port_index < fNPorts; port_index++) {
  426. float coef = 1.f / 32768.f;
  427. for (unsigned int frame = 0; frame < fPeriodSize; frame++)
  428. fPortBuffer[port_index][frame] = float(fIntBuffer[port_index][frame] * coef);
  429. }
  430. fLastSubCycle = -1;
  431. //return fPeriodSize * sizeof(sample_t); // in bytes; TODO
  432. return 0;
  433. }
  434. //network<->buffer
  435. int NetIntAudioBuffer::RenderFromNetwork(int cycle, int subcycle, size_t copy_size)
  436. {
  437. if (subcycle == fNumPackets - 1) {
  438. for (int port_index = 0; port_index < fNPorts; port_index++)
  439. memcpy(fIntBuffer[port_index] + subcycle * fSubPeriodSize, fNetBuffer + port_index * fLastSubPeriodBytesSize, fLastSubPeriodBytesSize);
  440. } else {
  441. for (int port_index = 0; port_index < fNPorts; port_index++)
  442. memcpy(fIntBuffer[port_index] + subcycle * fSubPeriodSize, fNetBuffer + port_index * fSubPeriodBytesSize, fSubPeriodBytesSize);
  443. }
  444. if (subcycle != fLastSubCycle + 1)
  445. jack_error("Packet(s) missing from... %d %d", fLastSubCycle, subcycle);
  446. fLastSubCycle = subcycle;
  447. return copy_size;
  448. }
  449. int NetIntAudioBuffer::RenderToNetwork(int subcycle, size_t total_size)
  450. {
  451. if (subcycle == fNumPackets - 1) {
  452. for (int port_index = 0; port_index < fNPorts; port_index++)
  453. memcpy(fNetBuffer + port_index * fLastSubPeriodBytesSize, fIntBuffer[port_index] + subcycle * fSubPeriodSize, fLastSubPeriodBytesSize);
  454. return fNPorts * fLastSubPeriodBytesSize;
  455. } else {
  456. for (int port_index = 0; port_index < fNPorts; port_index++)
  457. memcpy(fNetBuffer + port_index * fSubPeriodBytesSize, fIntBuffer[port_index] + subcycle * fSubPeriodSize, fSubPeriodBytesSize);
  458. return fNPorts * fSubPeriodBytesSize;
  459. }
  460. }
  461. // Buffered
  462. /*
  463. NetBufferedAudioBuffer::NetBufferedAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  464. {
  465. fMaxCycle = 0;
  466. fNetBuffer = net_buffer;
  467. for (int i = 0; i < AUDIO_BUFFER_SIZE; i++) {
  468. fPortBuffer[i].Init(params, nports);
  469. }
  470. fJackPortBuffer = new sample_t* [nports];
  471. for ( uint32_t port_index = 0; port_index < nports; port_index++ )
  472. fJackPortBuffer[port_index] = NULL;
  473. }
  474. NetBufferedAudioBuffer::~NetBufferedAudioBuffer()
  475. {
  476. delete [] fJackPortBuffer;
  477. }
  478. size_t NetBufferedAudioBuffer::GetCycleSize()
  479. {
  480. return fPortBuffer[0].GetCycleSize();
  481. }
  482. void NetBufferedAudioBuffer::SetBuffer ( int index, sample_t* buffer )
  483. {
  484. fJackPortBuffer[index] = buffer;
  485. }
  486. sample_t* NetBufferedAudioBuffer::GetBuffer ( int index )
  487. {
  488. return fJackPortBuffer[index];
  489. }
  490. void NetBufferedAudioBuffer::RenderFromJackPorts (int subcycle )
  491. {
  492. fPortBuffer[0].RenderFromJackPorts(fNetBuffer, subcycle); // Always use first buffer...
  493. }
  494. void NetBufferedAudioBuffer::RenderToJackPorts (int cycle, int subcycle)
  495. {
  496. if (cycle < fMaxCycle) {
  497. jack_info("Wrong order fCycle %d subcycle %d fMaxCycle %d", cycle, subcycle, fMaxCycle);
  498. }
  499. fPortBuffer[cycle % AUDIO_BUFFER_SIZE].RenderToJackPorts(fNetBuffer, subcycle);
  500. }
  501. void NetBufferedAudioBuffer::FinishRenderToJackPorts (int cycle)
  502. {
  503. fMaxCycle = std::max(fMaxCycle, cycle);
  504. fPortBuffer[(cycle + 1) % AUDIO_BUFFER_SIZE].Copy(fJackPortBuffer); // Copy internal buffer in JACK ports
  505. }
  506. */
  507. // SessionParams ************************************************************************************
  508. SERVER_EXPORT void SessionParamsHToN ( session_params_t* src_params, session_params_t* dst_params )
  509. {
  510. memcpy(dst_params, src_params, sizeof(session_params_t));
  511. dst_params->fPacketID = htonl ( src_params->fPacketID );
  512. dst_params->fMtu = htonl ( src_params->fMtu );
  513. dst_params->fID = htonl ( src_params->fID );
  514. dst_params->fTransportSync = htonl ( src_params->fTransportSync );
  515. dst_params->fSendAudioChannels = htonl ( src_params->fSendAudioChannels );
  516. dst_params->fReturnAudioChannels = htonl ( src_params->fReturnAudioChannels );
  517. dst_params->fSendMidiChannels = htonl ( src_params->fSendMidiChannels );
  518. dst_params->fReturnMidiChannels = htonl ( src_params->fReturnMidiChannels );
  519. dst_params->fSampleRate = htonl ( src_params->fSampleRate );
  520. dst_params->fPeriodSize = htonl ( src_params->fPeriodSize );
  521. dst_params->fBitdepth = htonl ( src_params->fBitdepth );
  522. dst_params->fSlaveSyncMode = htonl ( src_params->fSlaveSyncMode );
  523. }
  524. SERVER_EXPORT void SessionParamsNToH ( session_params_t* src_params, session_params_t* dst_params )
  525. {
  526. memcpy(dst_params, src_params, sizeof(session_params_t));
  527. dst_params->fPacketID = ntohl ( src_params->fPacketID );
  528. dst_params->fMtu = ntohl ( src_params->fMtu );
  529. dst_params->fID = ntohl ( src_params->fID );
  530. dst_params->fTransportSync = ntohl ( src_params->fTransportSync );
  531. dst_params->fSendAudioChannels = ntohl ( src_params->fSendAudioChannels );
  532. dst_params->fReturnAudioChannels = ntohl ( src_params->fReturnAudioChannels );
  533. dst_params->fSendMidiChannels = ntohl ( src_params->fSendMidiChannels );
  534. dst_params->fReturnMidiChannels = ntohl ( src_params->fReturnMidiChannels );
  535. dst_params->fSampleRate = ntohl ( src_params->fSampleRate );
  536. dst_params->fPeriodSize = ntohl ( src_params->fPeriodSize );
  537. dst_params->fBitdepth = ntohl ( src_params->fBitdepth );
  538. dst_params->fSlaveSyncMode = ntohl ( src_params->fSlaveSyncMode );
  539. }
  540. SERVER_EXPORT void SessionParamsDisplay ( session_params_t* params )
  541. {
  542. char bitdepth[16];
  543. ( params->fBitdepth ) ? sprintf ( bitdepth, "%u", params->fBitdepth ) : sprintf ( bitdepth, "%s", "float" );
  544. char mode[8];
  545. switch ( params->fNetworkMode )
  546. {
  547. case 's' :
  548. strcpy ( mode, "slow" );
  549. break;
  550. case 'n' :
  551. strcpy ( mode, "normal" );
  552. break;
  553. case 'f' :
  554. strcpy ( mode, "fast" );
  555. break;
  556. }
  557. jack_info ( "**************** Network parameters ****************" );
  558. jack_info ( "Name : %s", params->fName );
  559. jack_info ( "Protocol revision : %d", params->fProtocolVersion );
  560. jack_info ( "MTU : %u", params->fMtu );
  561. jack_info ( "Master name : %s", params->fMasterNetName );
  562. jack_info ( "Slave name : %s", params->fSlaveNetName );
  563. jack_info ( "ID : %u", params->fID );
  564. jack_info ( "Transport Sync : %s", ( params->fTransportSync ) ? "yes" : "no" );
  565. jack_info ( "Send channels (audio - midi) : %d - %d", params->fSendAudioChannels, params->fSendMidiChannels );
  566. jack_info ( "Return channels (audio - midi) : %d - %d", params->fReturnAudioChannels, params->fReturnMidiChannels );
  567. jack_info ( "Sample rate : %u frames per second", params->fSampleRate );
  568. jack_info ( "Period size : %u frames per period", params->fPeriodSize );
  569. jack_info ( "Bitdepth : %s", bitdepth );
  570. jack_info ( "Slave mode : %s", ( params->fSlaveSyncMode ) ? "sync" : "async" );
  571. jack_info ( "Network mode : %s", mode );
  572. jack_info ( "****************************************************" );
  573. }
  574. SERVER_EXPORT sync_packet_type_t GetPacketType ( session_params_t* params )
  575. {
  576. switch ( params->fPacketID )
  577. {
  578. case 0:
  579. return SLAVE_AVAILABLE;
  580. case 1:
  581. return SLAVE_SETUP;
  582. case 2:
  583. return START_MASTER;
  584. case 3:
  585. return START_SLAVE;
  586. case 4:
  587. return KILL_MASTER;
  588. }
  589. return INVALID;
  590. }
  591. SERVER_EXPORT int SetPacketType ( session_params_t* params, sync_packet_type_t packet_type )
  592. {
  593. switch ( packet_type )
  594. {
  595. case INVALID:
  596. return -1;
  597. case SLAVE_AVAILABLE:
  598. params->fPacketID = 0;
  599. break;
  600. case SLAVE_SETUP:
  601. params->fPacketID = 1;
  602. break;
  603. case START_MASTER:
  604. params->fPacketID = 2;
  605. break;
  606. case START_SLAVE:
  607. params->fPacketID = 3;
  608. break;
  609. case KILL_MASTER:
  610. params->fPacketID = 4;
  611. }
  612. return 0;
  613. }
  614. // Packet header **********************************************************************************
  615. SERVER_EXPORT void PacketHeaderHToN ( packet_header_t* src_header, packet_header_t* dst_header )
  616. {
  617. memcpy(dst_header, src_header, sizeof(packet_header_t));
  618. dst_header->fID = htonl ( src_header->fID );
  619. dst_header->fBitdepth = htonl ( src_header->fBitdepth );
  620. dst_header->fNumPacket = htonl ( src_header->fNumPacket );
  621. dst_header->fPacketSize = htonl ( src_header->fPacketSize );
  622. dst_header->fCycle = htonl ( src_header->fCycle );
  623. dst_header->fSubCycle = htonl ( src_header->fSubCycle );
  624. dst_header->fIsLastPckt = htonl ( src_header->fIsLastPckt );
  625. }
  626. SERVER_EXPORT void PacketHeaderNToH ( packet_header_t* src_header, packet_header_t* dst_header )
  627. {
  628. memcpy(dst_header, src_header, sizeof(packet_header_t));
  629. dst_header->fID = ntohl ( src_header->fID );
  630. dst_header->fBitdepth = ntohl ( src_header->fBitdepth );
  631. dst_header->fNumPacket = ntohl ( src_header->fNumPacket );
  632. dst_header->fPacketSize = ntohl ( src_header->fPacketSize );
  633. dst_header->fCycle = ntohl ( src_header->fCycle );
  634. dst_header->fSubCycle = ntohl ( src_header->fSubCycle );
  635. dst_header->fIsLastPckt = ntohl ( src_header->fIsLastPckt );
  636. }
  637. SERVER_EXPORT void PacketHeaderDisplay ( packet_header_t* header )
  638. {
  639. char bitdepth[16];
  640. ( header->fBitdepth ) ? sprintf ( bitdepth, "%u", header->fBitdepth ) : sprintf ( bitdepth, "%s", "float" );
  641. jack_info ( "********************Header********************" );
  642. jack_info ( "Data type : %c", header->fDataType );
  643. jack_info ( "Data stream : %c", header->fDataStream );
  644. jack_info ( "ID : %u", header->fID );
  645. jack_info ( "Cycle : %u", header->fCycle );
  646. jack_info ( "SubCycle : %u", header->fSubCycle );
  647. jack_info ( "Midi packets : %u", header->fNumPacket );
  648. jack_info ( "Last packet : '%s'", ( header->fIsLastPckt ) ? "yes" : "no" );
  649. jack_info ( "Bitdepth : %s", bitdepth );
  650. jack_info ( "**********************************************" );
  651. }
  652. SERVER_EXPORT void NetTransportDataDisplay ( net_transport_data_t* data )
  653. {
  654. jack_info ( "********************Network Transport********************" );
  655. jack_info ( "Transport new state : %u", data->fNewState );
  656. jack_info ( "Transport timebase master : %u", data->fTimebaseMaster );
  657. jack_info ( "Transport cycle state : %u", data->fState );
  658. jack_info ( "**********************************************" );
  659. }
  660. SERVER_EXPORT void MidiBufferHToN ( JackMidiBuffer* src_buffer, JackMidiBuffer* dst_buffer )
  661. {
  662. dst_buffer->magic = htonl(src_buffer->magic);
  663. dst_buffer->buffer_size = htonl(src_buffer->buffer_size);
  664. dst_buffer->nframes = htonl(src_buffer->nframes);
  665. dst_buffer->write_pos = htonl(src_buffer->write_pos);
  666. dst_buffer->event_count = htonl(src_buffer->event_count);
  667. dst_buffer->lost_events = htonl(src_buffer->lost_events);
  668. dst_buffer->mix_index = htonl(src_buffer->mix_index);
  669. }
  670. SERVER_EXPORT void MidiBufferNToH ( JackMidiBuffer* src_buffer, JackMidiBuffer* dst_buffer )
  671. {
  672. dst_buffer->magic = ntohl(src_buffer->magic);
  673. dst_buffer->buffer_size = ntohl(src_buffer->buffer_size);
  674. dst_buffer->nframes = ntohl(src_buffer->nframes);
  675. dst_buffer->write_pos = ntohl(src_buffer->write_pos);
  676. dst_buffer->event_count = ntohl(src_buffer->event_count);
  677. dst_buffer->lost_events = ntohl(src_buffer->lost_events);
  678. dst_buffer->mix_index = ntohl(src_buffer->mix_index);
  679. }
  680. SERVER_EXPORT void TransportDataHToN ( net_transport_data_t* src_params, net_transport_data_t* dst_params )
  681. {
  682. dst_params->fNewState = htonl(src_params->fNewState);
  683. dst_params->fTimebaseMaster = htonl(src_params->fTimebaseMaster);
  684. dst_params->fState = htonl(src_params->fState);
  685. dst_params->fPosition.unique_1 = htonll(src_params->fPosition.unique_1);
  686. dst_params->fPosition.usecs = htonl(src_params->fPosition.usecs);
  687. dst_params->fPosition.frame_rate = htonl(src_params->fPosition.frame_rate);
  688. dst_params->fPosition.frame = htonl(src_params->fPosition.frame);
  689. dst_params->fPosition.valid = (jack_position_bits_t)htonl((uint32_t)src_params->fPosition.valid);
  690. dst_params->fPosition.bar = htonl(src_params->fPosition.bar);
  691. dst_params->fPosition.beat = htonl(src_params->fPosition.beat);
  692. dst_params->fPosition.tick = htonl(src_params->fPosition.tick);
  693. dst_params->fPosition.bar_start_tick = htonll((uint64_t)src_params->fPosition.bar_start_tick);
  694. dst_params->fPosition.beats_per_bar = htonl((uint32_t)src_params->fPosition.beats_per_bar);
  695. dst_params->fPosition.beat_type = htonl((uint32_t)src_params->fPosition.beat_type);
  696. dst_params->fPosition.ticks_per_beat = htonll((uint64_t)src_params->fPosition.ticks_per_beat);
  697. dst_params->fPosition.beats_per_minute = htonll((uint64_t)src_params->fPosition.beats_per_minute);
  698. dst_params->fPosition.frame_time = htonll((uint64_t)src_params->fPosition.frame_time);
  699. dst_params->fPosition.next_time = htonll((uint64_t)src_params->fPosition.next_time);
  700. dst_params->fPosition.bbt_offset = htonl(src_params->fPosition.bbt_offset);
  701. dst_params->fPosition.audio_frames_per_video_frame = htonl((uint32_t)src_params->fPosition.audio_frames_per_video_frame);
  702. dst_params->fPosition.video_offset = htonl(src_params->fPosition.video_offset);
  703. dst_params->fPosition.unique_2 = htonll(src_params->fPosition.unique_2);
  704. }
  705. SERVER_EXPORT void TransportDataNToH ( net_transport_data_t* src_params, net_transport_data_t* dst_params )
  706. {
  707. dst_params->fNewState = ntohl(src_params->fNewState);
  708. dst_params->fTimebaseMaster = ntohl(src_params->fTimebaseMaster);
  709. dst_params->fState = ntohl(src_params->fState);
  710. dst_params->fPosition.unique_1 = ntohll(src_params->fPosition.unique_1);
  711. dst_params->fPosition.usecs = ntohl(src_params->fPosition.usecs);
  712. dst_params->fPosition.frame_rate = ntohl(src_params->fPosition.frame_rate);
  713. dst_params->fPosition.frame = ntohl(src_params->fPosition.frame);
  714. dst_params->fPosition.valid = (jack_position_bits_t)ntohl((uint32_t)src_params->fPosition.valid);
  715. dst_params->fPosition.bar = ntohl(src_params->fPosition.bar);
  716. dst_params->fPosition.beat = ntohl(src_params->fPosition.beat);
  717. dst_params->fPosition.tick = ntohl(src_params->fPosition.tick);
  718. dst_params->fPosition.bar_start_tick = ntohll((uint64_t)src_params->fPosition.bar_start_tick);
  719. dst_params->fPosition.beats_per_bar = ntohl((uint32_t)src_params->fPosition.beats_per_bar);
  720. dst_params->fPosition.beat_type = ntohl((uint32_t)src_params->fPosition.beat_type);
  721. dst_params->fPosition.ticks_per_beat = ntohll((uint64_t)src_params->fPosition.ticks_per_beat);
  722. dst_params->fPosition.beats_per_minute = ntohll((uint64_t)src_params->fPosition.beats_per_minute);
  723. dst_params->fPosition.frame_time = ntohll((uint64_t)src_params->fPosition.frame_time);
  724. dst_params->fPosition.next_time = ntohll((uint64_t)src_params->fPosition.next_time);
  725. dst_params->fPosition.bbt_offset = ntohl(src_params->fPosition.bbt_offset);
  726. dst_params->fPosition.audio_frames_per_video_frame = ntohl((uint32_t)src_params->fPosition.audio_frames_per_video_frame);
  727. dst_params->fPosition.video_offset = ntohl(src_params->fPosition.video_offset);
  728. dst_params->fPosition.unique_2 = ntohll(src_params->fPosition.unique_2);
  729. }
  730. // Utility *******************************************************************************************************
  731. SERVER_EXPORT int SocketAPIInit()
  732. {
  733. #ifdef WIN32
  734. WORD wVersionRequested = MAKEWORD ( 2, 2 );
  735. WSADATA wsaData;
  736. if ( WSAStartup ( wVersionRequested, &wsaData ) != 0 )
  737. {
  738. jack_error ( "WSAStartup error : %s", strerror ( NET_ERROR_CODE ) );
  739. return -1;
  740. }
  741. if ( LOBYTE ( wsaData.wVersion ) != 2 || HIBYTE ( wsaData.wVersion ) != 2 )
  742. {
  743. jack_error ( "Could not find a useable version of Winsock.dll\n" );
  744. WSACleanup();
  745. return -1;
  746. }
  747. #endif
  748. return 0;
  749. }
  750. SERVER_EXPORT int SocketAPIEnd()
  751. {
  752. #ifdef WIN32
  753. return WSACleanup();
  754. #endif
  755. return 0;
  756. }
  757. SERVER_EXPORT const char* GetTransportState ( int transport_state )
  758. {
  759. switch ( transport_state )
  760. {
  761. case JackTransportRolling:
  762. return "rolling";
  763. case JackTransportStarting:
  764. return "starting";
  765. case JackTransportStopped:
  766. return "stopped";
  767. case JackTransportNetStarting:
  768. return "netstarting";
  769. }
  770. return NULL;
  771. }
  772. }