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.

941 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, int kbps )
  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 = (kbps * params->fPeriodSize * 1024) / (params->fSampleRate * 8);
  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("NetCeltAudioBuffer 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("NetCeltAudioBuffer res1 = %d res2 = %d", res1, res2);
  247. fNumPackets = (res1) ? (res2 + 1) : res2;
  248. fSubPeriodBytesSize = fCompressedSizeByte / fNumPackets;
  249. fLastSubPeriodBytesSize = fSubPeriodBytesSize + fCompressedSizeByte % fNumPackets;
  250. jack_log("NetCeltAudioBuffer 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. //network<->buffer
  326. int NetCeltAudioBuffer::RenderFromNetwork(int cycle, int subcycle, size_t copy_size)
  327. {
  328. if (subcycle == fNumPackets - 1) {
  329. for (int port_index = 0; port_index < fNPorts; port_index++)
  330. memcpy(fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fNetBuffer + port_index * fLastSubPeriodBytesSize, fLastSubPeriodBytesSize);
  331. } else {
  332. for (int port_index = 0; port_index < fNPorts; port_index++)
  333. memcpy(fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fNetBuffer + port_index * fSubPeriodBytesSize, fSubPeriodBytesSize);
  334. }
  335. if (subcycle != fLastSubCycle + 1)
  336. jack_error("Packet(s) missing from... %d %d", fLastSubCycle, subcycle);
  337. fLastSubCycle = subcycle;
  338. return copy_size;
  339. }
  340. int NetCeltAudioBuffer::RenderToNetwork(int subcycle, size_t total_size)
  341. {
  342. if (subcycle == fNumPackets - 1) {
  343. for (int port_index = 0; port_index < fNPorts; port_index++)
  344. memcpy(fNetBuffer + port_index * fLastSubPeriodBytesSize, fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fLastSubPeriodBytesSize);
  345. return fNPorts * fLastSubPeriodBytesSize;
  346. } else {
  347. for (int port_index = 0; port_index < fNPorts; port_index++)
  348. memcpy(fNetBuffer + port_index * fSubPeriodBytesSize, fCompressedBuffer[port_index] + subcycle * fSubPeriodBytesSize, fSubPeriodBytesSize);
  349. return fNPorts * fSubPeriodBytesSize;
  350. }
  351. return fNPorts * fSubPeriodBytesSize;
  352. }
  353. #endif
  354. NetIntAudioBuffer::NetIntAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  355. : fNetBuffer(net_buffer)
  356. {
  357. int res1, res2;
  358. fNPorts = nports;
  359. fPeriodSize = params->fPeriodSize;
  360. fPortBuffer = new sample_t* [fNPorts];
  361. for (int port_index = 0; port_index < fNPorts; port_index++)
  362. fPortBuffer[port_index] = NULL;
  363. fIntBuffer = new short* [fNPorts];
  364. for (int port_index = 0; port_index < fNPorts; port_index++)
  365. fIntBuffer[port_index] = new short[fPeriodSize];
  366. fCompressedSizeByte = (params->fPeriodSize * sizeof(short));
  367. jack_log("fCompressedSizeByte %d", fCompressedSizeByte);
  368. res1 = (fNPorts * fCompressedSizeByte) % (params->fMtu - sizeof(packet_header_t));
  369. res2 = (fNPorts * fCompressedSizeByte) / (params->fMtu - sizeof(packet_header_t));
  370. jack_log("res1 = %d res2 = %d", res1, res2);
  371. fNumPackets = (res1) ? (res2 + 1) : res2;
  372. fSubPeriodBytesSize = fCompressedSizeByte / fNumPackets;
  373. fSubPeriodSize = fSubPeriodBytesSize / sizeof(short);
  374. fLastSubPeriodBytesSize = fSubPeriodBytesSize + fCompressedSizeByte % fNumPackets;
  375. fLastSubPeriodSize = fLastSubPeriodBytesSize / sizeof(short);
  376. jack_log("fNumPackets = %d fSubPeriodBytesSize = %d, fLastSubPeriodBytesSize = %d", fNumPackets, fSubPeriodBytesSize, fLastSubPeriodBytesSize);
  377. fCycleDuration = float(fSubPeriodBytesSize / sizeof(sample_t)) / float(params->fSampleRate);
  378. fCycleSize = params->fMtu * fNumPackets;
  379. fLastSubCycle = -1;
  380. return;
  381. }
  382. NetIntAudioBuffer::~NetIntAudioBuffer()
  383. {
  384. for (int port_index = 0; port_index < fNPorts; port_index++)
  385. delete [] fIntBuffer[port_index];
  386. delete [] fIntBuffer;
  387. delete [] fPortBuffer;
  388. }
  389. size_t NetIntAudioBuffer::GetCycleSize()
  390. {
  391. return fCycleSize;
  392. }
  393. float NetIntAudioBuffer::GetCycleDuration()
  394. {
  395. return fCycleDuration;
  396. }
  397. int NetIntAudioBuffer::GetNumPackets()
  398. {
  399. return fNumPackets;
  400. }
  401. void NetIntAudioBuffer::SetBuffer(int index, sample_t* buffer)
  402. {
  403. fPortBuffer[index] = buffer;
  404. }
  405. sample_t* NetIntAudioBuffer::GetBuffer(int index)
  406. {
  407. return fPortBuffer[index];
  408. }
  409. int NetIntAudioBuffer::RenderFromJackPorts()
  410. {
  411. for (int port_index = 0; port_index < fNPorts; port_index++) {
  412. for (unsigned int frame = 0; frame < fPeriodSize; frame++)
  413. fIntBuffer[port_index][frame] = short(fPortBuffer[port_index][frame] * 32768.f);
  414. }
  415. return fNPorts * fCompressedSizeByte; // in bytes
  416. }
  417. int NetIntAudioBuffer::RenderToJackPorts()
  418. {
  419. for (int port_index = 0; port_index < fNPorts; port_index++) {
  420. float coef = 1.f / 32768.f;
  421. for (unsigned int frame = 0; frame < fPeriodSize; frame++)
  422. fPortBuffer[port_index][frame] = float(fIntBuffer[port_index][frame] * coef);
  423. }
  424. fLastSubCycle = -1;
  425. //return fPeriodSize * sizeof(sample_t); // in bytes; TODO
  426. return 0;
  427. }
  428. //network<->buffer
  429. int NetIntAudioBuffer::RenderFromNetwork(int cycle, int subcycle, size_t copy_size)
  430. {
  431. if (subcycle == fNumPackets - 1) {
  432. for (int port_index = 0; port_index < fNPorts; port_index++)
  433. memcpy(fIntBuffer[port_index] + subcycle * fSubPeriodSize, fNetBuffer + port_index * fLastSubPeriodBytesSize, fLastSubPeriodBytesSize);
  434. } else {
  435. for (int port_index = 0; port_index < fNPorts; port_index++)
  436. memcpy(fIntBuffer[port_index] + subcycle * fSubPeriodSize, fNetBuffer + port_index * fSubPeriodBytesSize, fSubPeriodBytesSize);
  437. }
  438. if (subcycle != fLastSubCycle + 1)
  439. jack_error("Packet(s) missing from... %d %d", fLastSubCycle, subcycle);
  440. fLastSubCycle = subcycle;
  441. return copy_size;
  442. }
  443. int NetIntAudioBuffer::RenderToNetwork(int subcycle, size_t total_size)
  444. {
  445. if (subcycle == fNumPackets - 1) {
  446. for (int port_index = 0; port_index < fNPorts; port_index++)
  447. memcpy(fNetBuffer + port_index * fLastSubPeriodBytesSize, fIntBuffer[port_index] + subcycle * fSubPeriodSize, fLastSubPeriodBytesSize);
  448. return fNPorts * fLastSubPeriodBytesSize;
  449. } else {
  450. for (int port_index = 0; port_index < fNPorts; port_index++)
  451. memcpy(fNetBuffer + port_index * fSubPeriodBytesSize, fIntBuffer[port_index] + subcycle * fSubPeriodSize, fSubPeriodBytesSize);
  452. return fNPorts * fSubPeriodBytesSize;
  453. }
  454. }
  455. // Buffered
  456. /*
  457. NetBufferedAudioBuffer::NetBufferedAudioBuffer ( session_params_t* params, uint32_t nports, char* net_buffer )
  458. {
  459. fMaxCycle = 0;
  460. fNetBuffer = net_buffer;
  461. for (int i = 0; i < AUDIO_BUFFER_SIZE; i++) {
  462. fPortBuffer[i].Init(params, nports);
  463. }
  464. fJackPortBuffer = new sample_t* [nports];
  465. for ( uint32_t port_index = 0; port_index < nports; port_index++ )
  466. fJackPortBuffer[port_index] = NULL;
  467. }
  468. NetBufferedAudioBuffer::~NetBufferedAudioBuffer()
  469. {
  470. delete [] fJackPortBuffer;
  471. }
  472. size_t NetBufferedAudioBuffer::GetCycleSize()
  473. {
  474. return fPortBuffer[0].GetCycleSize();
  475. }
  476. void NetBufferedAudioBuffer::SetBuffer ( int index, sample_t* buffer )
  477. {
  478. fJackPortBuffer[index] = buffer;
  479. }
  480. sample_t* NetBufferedAudioBuffer::GetBuffer ( int index )
  481. {
  482. return fJackPortBuffer[index];
  483. }
  484. void NetBufferedAudioBuffer::RenderFromJackPorts (int subcycle )
  485. {
  486. fPortBuffer[0].RenderFromJackPorts(fNetBuffer, subcycle); // Always use first buffer...
  487. }
  488. void NetBufferedAudioBuffer::RenderToJackPorts (int cycle, int subcycle)
  489. {
  490. if (cycle < fMaxCycle) {
  491. jack_info("Wrong order fCycle %d subcycle %d fMaxCycle %d", cycle, subcycle, fMaxCycle);
  492. }
  493. fPortBuffer[cycle % AUDIO_BUFFER_SIZE].RenderToJackPorts(fNetBuffer, subcycle);
  494. }
  495. void NetBufferedAudioBuffer::FinishRenderToJackPorts (int cycle)
  496. {
  497. fMaxCycle = std::max(fMaxCycle, cycle);
  498. fPortBuffer[(cycle + 1) % AUDIO_BUFFER_SIZE].Copy(fJackPortBuffer); // Copy internal buffer in JACK ports
  499. }
  500. */
  501. // SessionParams ************************************************************************************
  502. SERVER_EXPORT void SessionParamsHToN ( session_params_t* src_params, session_params_t* dst_params )
  503. {
  504. memcpy(dst_params, src_params, sizeof(session_params_t));
  505. dst_params->fPacketID = htonl ( src_params->fPacketID );
  506. dst_params->fMtu = htonl ( src_params->fMtu );
  507. dst_params->fID = htonl ( src_params->fID );
  508. dst_params->fTransportSync = htonl ( src_params->fTransportSync );
  509. dst_params->fSendAudioChannels = htonl ( src_params->fSendAudioChannels );
  510. dst_params->fReturnAudioChannels = htonl ( src_params->fReturnAudioChannels );
  511. dst_params->fSendMidiChannels = htonl ( src_params->fSendMidiChannels );
  512. dst_params->fReturnMidiChannels = htonl ( src_params->fReturnMidiChannels );
  513. dst_params->fSampleRate = htonl ( src_params->fSampleRate );
  514. dst_params->fPeriodSize = htonl ( src_params->fPeriodSize );
  515. dst_params->fSampleEncoder = htonl ( src_params->fSampleEncoder );
  516. dst_params->fSlaveSyncMode = htonl ( src_params->fSlaveSyncMode );
  517. }
  518. SERVER_EXPORT void SessionParamsNToH ( session_params_t* src_params, session_params_t* dst_params )
  519. {
  520. memcpy(dst_params, src_params, sizeof(session_params_t));
  521. dst_params->fPacketID = ntohl ( src_params->fPacketID );
  522. dst_params->fMtu = ntohl ( src_params->fMtu );
  523. dst_params->fID = ntohl ( src_params->fID );
  524. dst_params->fTransportSync = ntohl ( src_params->fTransportSync );
  525. dst_params->fSendAudioChannels = ntohl ( src_params->fSendAudioChannels );
  526. dst_params->fReturnAudioChannels = ntohl ( src_params->fReturnAudioChannels );
  527. dst_params->fSendMidiChannels = ntohl ( src_params->fSendMidiChannels );
  528. dst_params->fReturnMidiChannels = ntohl ( src_params->fReturnMidiChannels );
  529. dst_params->fSampleRate = ntohl ( src_params->fSampleRate );
  530. dst_params->fPeriodSize = ntohl ( src_params->fPeriodSize );
  531. dst_params->fSampleEncoder = ntohl ( src_params->fSampleEncoder );
  532. dst_params->fSlaveSyncMode = ntohl ( src_params->fSlaveSyncMode );
  533. }
  534. SERVER_EXPORT void SessionParamsDisplay ( session_params_t* params )
  535. {
  536. char encoder[16];
  537. switch ( params->fSampleEncoder )
  538. {
  539. case JackFloatEncoder:
  540. strcpy ( encoder, "float" );
  541. break;
  542. case JackIntEncoder:
  543. strcpy ( encoder, "integer" );
  544. break;
  545. case JackCeltEncoder:
  546. strcpy ( encoder, "CELT" );
  547. break;
  548. }
  549. char mode[8];
  550. switch ( params->fNetworkMode )
  551. {
  552. case 's' :
  553. strcpy ( mode, "slow" );
  554. break;
  555. case 'n' :
  556. strcpy ( mode, "normal" );
  557. break;
  558. case 'f' :
  559. strcpy ( mode, "fast" );
  560. break;
  561. }
  562. jack_info ( "**************** Network parameters ****************" );
  563. jack_info ( "Name : %s", params->fName );
  564. jack_info ( "Protocol revision : %d", params->fProtocolVersion );
  565. jack_info ( "MTU : %u", params->fMtu );
  566. jack_info ( "Master name : %s", params->fMasterNetName );
  567. jack_info ( "Slave name : %s", params->fSlaveNetName );
  568. jack_info ( "ID : %u", params->fID );
  569. jack_info ( "Transport Sync : %s", ( params->fTransportSync ) ? "yes" : "no" );
  570. jack_info ( "Send channels (audio - midi) : %d - %d", params->fSendAudioChannels, params->fSendMidiChannels );
  571. jack_info ( "Return channels (audio - midi) : %d - %d", params->fReturnAudioChannels, params->fReturnMidiChannels );
  572. jack_info ( "Sample rate : %u frames per second", params->fSampleRate );
  573. jack_info ( "Period size : %u frames per period", params->fPeriodSize );
  574. switch (params->fSampleEncoder) {
  575. case (JackFloatEncoder):
  576. jack_info ( "SampleEncoder : %s", "Float" );
  577. break;
  578. case (JackIntEncoder):
  579. jack_info ( "SampleEncoder : %s", "16 bits integer");
  580. break;
  581. case (JackCeltEncoder):
  582. jack_info ( "SampleEncoder : %s", "CELT");
  583. break;
  584. };
  585. jack_info ( "Slave mode : %s", ( params->fSlaveSyncMode ) ? "sync" : "async" );
  586. jack_info ( "Network mode : %s", mode );
  587. jack_info ( "****************************************************" );
  588. }
  589. SERVER_EXPORT sync_packet_type_t GetPacketType ( session_params_t* params )
  590. {
  591. switch ( params->fPacketID )
  592. {
  593. case 0:
  594. return SLAVE_AVAILABLE;
  595. case 1:
  596. return SLAVE_SETUP;
  597. case 2:
  598. return START_MASTER;
  599. case 3:
  600. return START_SLAVE;
  601. case 4:
  602. return KILL_MASTER;
  603. }
  604. return INVALID;
  605. }
  606. SERVER_EXPORT int SetPacketType ( session_params_t* params, sync_packet_type_t packet_type )
  607. {
  608. switch ( packet_type )
  609. {
  610. case INVALID:
  611. return -1;
  612. case SLAVE_AVAILABLE:
  613. params->fPacketID = 0;
  614. break;
  615. case SLAVE_SETUP:
  616. params->fPacketID = 1;
  617. break;
  618. case START_MASTER:
  619. params->fPacketID = 2;
  620. break;
  621. case START_SLAVE:
  622. params->fPacketID = 3;
  623. break;
  624. case KILL_MASTER:
  625. params->fPacketID = 4;
  626. }
  627. return 0;
  628. }
  629. // Packet header **********************************************************************************
  630. SERVER_EXPORT void PacketHeaderHToN ( packet_header_t* src_header, packet_header_t* dst_header )
  631. {
  632. memcpy(dst_header, src_header, sizeof(packet_header_t));
  633. dst_header->fID = htonl ( src_header->fID );
  634. dst_header->fNumPacket = htonl ( src_header->fNumPacket );
  635. dst_header->fPacketSize = htonl ( src_header->fPacketSize );
  636. dst_header->fCycle = htonl ( src_header->fCycle );
  637. dst_header->fSubCycle = htonl ( src_header->fSubCycle );
  638. dst_header->fIsLastPckt = htonl ( src_header->fIsLastPckt );
  639. }
  640. SERVER_EXPORT void PacketHeaderNToH ( packet_header_t* src_header, packet_header_t* dst_header )
  641. {
  642. memcpy(dst_header, src_header, sizeof(packet_header_t));
  643. dst_header->fID = ntohl ( src_header->fID );
  644. dst_header->fNumPacket = ntohl ( src_header->fNumPacket );
  645. dst_header->fPacketSize = ntohl ( src_header->fPacketSize );
  646. dst_header->fCycle = ntohl ( src_header->fCycle );
  647. dst_header->fSubCycle = ntohl ( src_header->fSubCycle );
  648. dst_header->fIsLastPckt = ntohl ( src_header->fIsLastPckt );
  649. }
  650. SERVER_EXPORT void PacketHeaderDisplay ( packet_header_t* header )
  651. {
  652. char bitdepth[16];
  653. jack_info ( "********************Header********************" );
  654. jack_info ( "Data type : %c", header->fDataType );
  655. jack_info ( "Data stream : %c", header->fDataStream );
  656. jack_info ( "ID : %u", header->fID );
  657. jack_info ( "Cycle : %u", header->fCycle );
  658. jack_info ( "SubCycle : %u", header->fSubCycle );
  659. jack_info ( "Midi packets : %u", header->fNumPacket );
  660. jack_info ( "Last packet : '%s'", ( header->fIsLastPckt ) ? "yes" : "no" );
  661. jack_info ( "Bitdepth : %s", bitdepth );
  662. jack_info ( "**********************************************" );
  663. }
  664. SERVER_EXPORT void NetTransportDataDisplay ( net_transport_data_t* data )
  665. {
  666. jack_info ( "********************Network Transport********************" );
  667. jack_info ( "Transport new state : %u", data->fNewState );
  668. jack_info ( "Transport timebase master : %u", data->fTimebaseMaster );
  669. jack_info ( "Transport cycle state : %u", data->fState );
  670. jack_info ( "**********************************************" );
  671. }
  672. SERVER_EXPORT void MidiBufferHToN ( JackMidiBuffer* src_buffer, JackMidiBuffer* dst_buffer )
  673. {
  674. dst_buffer->magic = htonl(src_buffer->magic);
  675. dst_buffer->buffer_size = htonl(src_buffer->buffer_size);
  676. dst_buffer->nframes = htonl(src_buffer->nframes);
  677. dst_buffer->write_pos = htonl(src_buffer->write_pos);
  678. dst_buffer->event_count = htonl(src_buffer->event_count);
  679. dst_buffer->lost_events = htonl(src_buffer->lost_events);
  680. dst_buffer->mix_index = htonl(src_buffer->mix_index);
  681. }
  682. SERVER_EXPORT void MidiBufferNToH ( JackMidiBuffer* src_buffer, JackMidiBuffer* dst_buffer )
  683. {
  684. dst_buffer->magic = ntohl(src_buffer->magic);
  685. dst_buffer->buffer_size = ntohl(src_buffer->buffer_size);
  686. dst_buffer->nframes = ntohl(src_buffer->nframes);
  687. dst_buffer->write_pos = ntohl(src_buffer->write_pos);
  688. dst_buffer->event_count = ntohl(src_buffer->event_count);
  689. dst_buffer->lost_events = ntohl(src_buffer->lost_events);
  690. dst_buffer->mix_index = ntohl(src_buffer->mix_index);
  691. }
  692. SERVER_EXPORT void TransportDataHToN ( net_transport_data_t* src_params, net_transport_data_t* dst_params )
  693. {
  694. dst_params->fNewState = htonl(src_params->fNewState);
  695. dst_params->fTimebaseMaster = htonl(src_params->fTimebaseMaster);
  696. dst_params->fState = htonl(src_params->fState);
  697. dst_params->fPosition.unique_1 = htonll(src_params->fPosition.unique_1);
  698. dst_params->fPosition.usecs = htonl(src_params->fPosition.usecs);
  699. dst_params->fPosition.frame_rate = htonl(src_params->fPosition.frame_rate);
  700. dst_params->fPosition.frame = htonl(src_params->fPosition.frame);
  701. dst_params->fPosition.valid = (jack_position_bits_t)htonl((uint32_t)src_params->fPosition.valid);
  702. dst_params->fPosition.bar = htonl(src_params->fPosition.bar);
  703. dst_params->fPosition.beat = htonl(src_params->fPosition.beat);
  704. dst_params->fPosition.tick = htonl(src_params->fPosition.tick);
  705. dst_params->fPosition.bar_start_tick = htonll((uint64_t)src_params->fPosition.bar_start_tick);
  706. dst_params->fPosition.beats_per_bar = htonl((uint32_t)src_params->fPosition.beats_per_bar);
  707. dst_params->fPosition.beat_type = htonl((uint32_t)src_params->fPosition.beat_type);
  708. dst_params->fPosition.ticks_per_beat = htonll((uint64_t)src_params->fPosition.ticks_per_beat);
  709. dst_params->fPosition.beats_per_minute = htonll((uint64_t)src_params->fPosition.beats_per_minute);
  710. dst_params->fPosition.frame_time = htonll((uint64_t)src_params->fPosition.frame_time);
  711. dst_params->fPosition.next_time = htonll((uint64_t)src_params->fPosition.next_time);
  712. dst_params->fPosition.bbt_offset = htonl(src_params->fPosition.bbt_offset);
  713. dst_params->fPosition.audio_frames_per_video_frame = htonl((uint32_t)src_params->fPosition.audio_frames_per_video_frame);
  714. dst_params->fPosition.video_offset = htonl(src_params->fPosition.video_offset);
  715. dst_params->fPosition.unique_2 = htonll(src_params->fPosition.unique_2);
  716. }
  717. SERVER_EXPORT void TransportDataNToH ( net_transport_data_t* src_params, net_transport_data_t* dst_params )
  718. {
  719. dst_params->fNewState = ntohl(src_params->fNewState);
  720. dst_params->fTimebaseMaster = ntohl(src_params->fTimebaseMaster);
  721. dst_params->fState = ntohl(src_params->fState);
  722. dst_params->fPosition.unique_1 = ntohll(src_params->fPosition.unique_1);
  723. dst_params->fPosition.usecs = ntohl(src_params->fPosition.usecs);
  724. dst_params->fPosition.frame_rate = ntohl(src_params->fPosition.frame_rate);
  725. dst_params->fPosition.frame = ntohl(src_params->fPosition.frame);
  726. dst_params->fPosition.valid = (jack_position_bits_t)ntohl((uint32_t)src_params->fPosition.valid);
  727. dst_params->fPosition.bar = ntohl(src_params->fPosition.bar);
  728. dst_params->fPosition.beat = ntohl(src_params->fPosition.beat);
  729. dst_params->fPosition.tick = ntohl(src_params->fPosition.tick);
  730. dst_params->fPosition.bar_start_tick = ntohll((uint64_t)src_params->fPosition.bar_start_tick);
  731. dst_params->fPosition.beats_per_bar = ntohl((uint32_t)src_params->fPosition.beats_per_bar);
  732. dst_params->fPosition.beat_type = ntohl((uint32_t)src_params->fPosition.beat_type);
  733. dst_params->fPosition.ticks_per_beat = ntohll((uint64_t)src_params->fPosition.ticks_per_beat);
  734. dst_params->fPosition.beats_per_minute = ntohll((uint64_t)src_params->fPosition.beats_per_minute);
  735. dst_params->fPosition.frame_time = ntohll((uint64_t)src_params->fPosition.frame_time);
  736. dst_params->fPosition.next_time = ntohll((uint64_t)src_params->fPosition.next_time);
  737. dst_params->fPosition.bbt_offset = ntohl(src_params->fPosition.bbt_offset);
  738. dst_params->fPosition.audio_frames_per_video_frame = ntohl((uint32_t)src_params->fPosition.audio_frames_per_video_frame);
  739. dst_params->fPosition.video_offset = ntohl(src_params->fPosition.video_offset);
  740. dst_params->fPosition.unique_2 = ntohll(src_params->fPosition.unique_2);
  741. }
  742. // Utility *******************************************************************************************************
  743. SERVER_EXPORT int SocketAPIInit()
  744. {
  745. #ifdef WIN32
  746. WORD wVersionRequested = MAKEWORD ( 2, 2 );
  747. WSADATA wsaData;
  748. if ( WSAStartup ( wVersionRequested, &wsaData ) != 0 )
  749. {
  750. jack_error ( "WSAStartup error : %s", strerror ( NET_ERROR_CODE ) );
  751. return -1;
  752. }
  753. if ( LOBYTE ( wsaData.wVersion ) != 2 || HIBYTE ( wsaData.wVersion ) != 2 )
  754. {
  755. jack_error ( "Could not find a useable version of Winsock.dll\n" );
  756. WSACleanup();
  757. return -1;
  758. }
  759. #endif
  760. return 0;
  761. }
  762. SERVER_EXPORT int SocketAPIEnd()
  763. {
  764. #ifdef WIN32
  765. return WSACleanup();
  766. #endif
  767. return 0;
  768. }
  769. SERVER_EXPORT const char* GetTransportState ( int transport_state )
  770. {
  771. switch ( transport_state )
  772. {
  773. case JackTransportRolling:
  774. return "rolling";
  775. case JackTransportStarting:
  776. return "starting";
  777. case JackTransportStopped:
  778. return "stopped";
  779. case JackTransportNetStarting:
  780. return "netstarting";
  781. }
  782. return NULL;
  783. }
  784. }