1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
/*
Copyright (C) 2008-2011 Romain Moret at Grame
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __JackNetInterface__
#define __JackNetInterface__
#include "JackNetTool.h"
#include <limits.h>
namespace Jack
{
#define DEFAULT_MULTICAST_IP "225.3.19.154"
#define DEFAULT_PORT 19000
#define DEFAULT_MTU 1500
#define MAX_MTU 9000
#define SLAVE_SETUP_RETRY 5
#define MANAGER_INIT_TIMEOUT 1000000 * 2 // in usec
#define MASTER_INIT_TIMEOUT 1000000 * 10 // in usec
#define SLAVE_INIT_TIMEOUT 1000000 * 1 // in usec
#define PACKET_TIMEOUT 1000000 // in usec
#define NETWORK_DEFAULT_LATENCY 2
#define NETWORK_MAX_LATENCY 30 // maximum possible latency in network master/slave loop
/**
\Brief This class describes the basic Net Interface, used by both master and slave.
*/
class SERVER_EXPORT JackNetInterface
{
friend class JackNetExt;
protected:
bool fSetTimeOut;
int fPacketTimeOut;
void Initialize();
session_params_t fParams;
JackNetSocket fSocket;
char fMulticastIP[32];
// headers
packet_header_t fTxHeader;
packet_header_t fRxHeader;
// transport
net_transport_data_t fSendTransportData;
net_transport_data_t fReturnTransportData;
// network buffers
char* fTxBuffer;
char* fRxBuffer;
char* fTxData;
char* fRxData;
// JACK buffers
NetMidiBuffer* fNetMidiCaptureBuffer;
NetMidiBuffer* fNetMidiPlaybackBuffer;
NetAudioBuffer* fNetAudioCaptureBuffer;
NetAudioBuffer* fNetAudioPlaybackBuffer;
// utility methods
int SetNetBufferSize();
void FreeNetworkBuffers();
// virtual methods : depends on the sub class master/slave
virtual bool SetParams();
virtual bool Init() = 0;
// transport
virtual void EncodeTransportData() = 0;
virtual void DecodeTransportData() = 0;
// sync packet
virtual void EncodeSyncPacket(int frames = -1) = 0;
virtual void DecodeSyncPacket(int& frames) = 0;
virtual int SyncRecv() = 0;
virtual int SyncSend() = 0;
virtual int DataRecv() = 0;
virtual int DataSend() = 0;
virtual int Send(size_t size, int flags) = 0;
virtual int Recv(size_t size, int flags) = 0;
virtual void FatalRecvError() = 0;
virtual void FatalSendError() = 0;
int MidiSend(NetMidiBuffer* buffer, int midi_channnels, int audio_channels);
int AudioSend(NetAudioBuffer* buffer, int audio_channels);
int MidiRecv(packet_header_t* rx_head, NetMidiBuffer* buffer, uint& recvd_midi_pckt);
int AudioRecv(packet_header_t* rx_head, NetAudioBuffer* buffer);
int FinishRecv(NetAudioBuffer* buffer);
void SetRcvTimeOut();
void SetPacketTimeOut(int time_out)
{
// New time out
fPacketTimeOut = time_out;
fSetTimeOut = false;
}
NetAudioBuffer* AudioBufferFactory(int nports, char* buffer);
public:
JackNetInterface();
JackNetInterface(const char* multicast_ip, int port);
JackNetInterface(session_params_t& params, JackNetSocket& socket, const char* multicast_ip);
virtual ~JackNetInterface();
};
/**
\Brief This class describes the Net Interface for masters (NetMaster)
*/
class SERVER_EXPORT JackNetMasterInterface : public JackNetInterface
{
protected:
bool fRunning;
int fCurrentCycleOffset;
int fMaxCycleOffset;
bool fSynched;
bool Init();
bool SetParams();
void Exit();
int SyncRecv();
int SyncSend();
int DataRecv();
int DataSend();
// sync packet
void EncodeSyncPacket(int frames = -1);
void DecodeSyncPacket(int& frames);
int Send(size_t size, int flags);
int Recv(size_t size, int flags);
void FatalRecvError();
void FatalSendError();
public:
JackNetMasterInterface()
: JackNetInterface(),
fRunning(false),
fCurrentCycleOffset(0),
fMaxCycleOffset(0),
fSynched(false)
{}
JackNetMasterInterface(session_params_t& params, JackNetSocket& socket, const char* multicast_ip)
: JackNetInterface(params, socket, multicast_ip),
fRunning(false),
fCurrentCycleOffset(0),
fMaxCycleOffset(0),
fSynched(false)
{}
virtual~JackNetMasterInterface()
{}
};
/**
\Brief This class describes the Net Interface for slaves (NetDriver and NetAdapter)
*/
class SERVER_EXPORT JackNetSlaveInterface : public JackNetInterface
{
protected:
static uint fSlaveCounter;
bool Init();
bool InitConnection(int time_out_sec);
bool InitRendering();
net_status_t SendAvailableToMaster(int count = INT_MAX);
net_status_t SendStartToMaster();
bool SetParams();
int SyncRecv();
int SyncSend();
int DataRecv();
int DataSend();
// sync packet
void EncodeSyncPacket(int frames = -1);
void DecodeSyncPacket(int& frames);
int Recv(size_t size, int flags);
int Send(size_t size, int flags);
void FatalRecvError();
void FatalSendError();
void InitAPI();
public:
JackNetSlaveInterface() : JackNetInterface()
{
InitAPI();
}
JackNetSlaveInterface(const char* ip, int port) : JackNetInterface(ip, port)
{
InitAPI();
}
virtual ~JackNetSlaveInterface()
{
// close Socket API with the last slave
if (--fSlaveCounter == 0) {
SocketAPIEnd();
}
}
};
}
#endif
|