forked from osxmidi/LinVst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
remotepluginclient.h
290 lines (244 loc) · 9.53 KB
/
remotepluginclient.h
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/* dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2004-2007 Chris Cannam
This file is part of linvst.
linvst 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef REMOTE_PLUGIN_CLIENT_H
#define REMOTE_PLUGIN_CLIENT_H
#define __cdecl
#ifdef VESTIGE
typedef int16_t VstInt16;
typedef int32_t VstInt32;
typedef int64_t VstInt64;
typedef intptr_t VstIntPtr;
#define VESTIGECALLBACK __cdecl
#include "vestige.h"
#else
#include "pluginterfaces/vst2.x/aeffectx.h"
#endif
#include "remoteplugin.h"
#include "rdwrops.h"
#include <string>
#include <vector>
#include <sys/shm.h>
#ifdef EMBED
#include <X11/Xlib.h>
#endif
// Any of the methods in this file, including constructors, should be
// considered capable of throwing RemotePluginClosedException. Do not
// call anything here without catching it.
class RemotePluginClient
{
public:
RemotePluginClient(audioMasterCallback theMaster);
virtual ~RemotePluginClient();
std::string getFileIdentifiers();
float getVersion();
int getUID();
std::string getName();
std::string getMaker();
void setBufferSize(int);
void setSampleRate(int);
void reset();
void terminate();
int getInputCount();
int getOutputCount();
int getFlags();
int getinitialDelay();
int getParameterCount();
std::string getParameterName(int);
#ifdef WAVES
int getShellName(char *ptr);
#endif
void setParameter(int, float);
float getParameter(int);
float getParameterDefault(int);
void getParameters(int, int, float *);
int getProgramCount();
std::string getProgramNameIndexed(int);
std::string getProgramName();
void setCurrentProgram(int);
int processVstEvents(VstEvents *);
#ifdef DOUBLEP
void processdouble(double **inputs, double **outputs, int sampleFrames);
bool setPrecision(int value);
#endif
#ifdef MIDIEFF
bool getEffInProp(int index, void *ptr);
bool getEffOutProp(int index, void *ptr);
bool getEffMidiKey(int index, void *ptr);
bool getEffMidiProgName(int index, void *ptr);
bool getEffMidiCurProg(int index, void *ptr);
bool getEffMidiProgCat(int index, void *ptr);
bool getEffMidiProgCh(int index);
bool setEffSpeaker(VstIntPtr value, void *ptr);
bool getEffSpeaker(VstIntPtr value, void *ptr);
#endif
#ifdef CANDOEFF
bool getEffCanDo(char *ptr);
#endif
int getChunk(void **ptr, int bank_prog);
int setChunk(void *ptr, int sz, int bank_prog);
int canBeAutomated(int param);
int getProgram();
int EffectOpen();
// void effMainsChanged(int s);
// int getUniqueID();
// Either inputs or outputs may be NULL if (and only if) there are none
void process(float **inputs, float **outputs, int sampleFrames);
void waitForServer2();
void waitForServer3();
void waitForServer4();
void waitForServer5();
void waitForServer2exit();
void waitForServer3exit();
void waitForServer4exit();
void waitForServer5exit();
void waitForClientexit();
void setDebugLevel(RemotePluginDebugLevel);
bool warn(std::string);
void showGUI();
void hideGUI();
#ifdef EMBED
void openGUI();
#endif
int getEffInt(int opcode);
void getEffString(int opcode, int index, char *ptr, int len);
void effVoidOp(int opcode);
int effVoidOp2(int opcode, int index, int value, float opt);
int m_bufferSize;
int m_numInputs;
int m_numOutputs;
int m_finishaudio;
int m_runok;
int m_syncok;
int m_386run;
AEffect *theEffect;
audioMasterCallback m_audioMaster;
int m_threadbreak;
int m_threadbreakexit;
#ifdef EMBED
#ifdef EMBEDTHREAD
int m_threadbreakembed;
int m_threadbreakexitembed;
#endif
#endif
VstEvents vstev[VSTSIZE];
ERect retRect = {0,0,200,500};
int reaperid;
int m_updateio;
int m_updatein;
int m_updateout;
#ifdef CHUNKBUF
char *chunk_ptr;
#endif
#ifdef EMBED
Window child;
Window parent;
Display *display;
int handle;
int width;
int height;
struct winmessage
{
int handle;
int width;
int height;
} winm;
int displayerr;
#ifdef EMBEDTHREAD
pthread_t m_EMBEDThread;
static void *callEMBEDThread(void *arg) { return ((RemotePluginClient*)arg)->EMBEDThread(); }
void *EMBEDThread();
int runembed;
#endif
#ifndef XEMBED
#ifdef EMBEDDRAG
Window x11_win;
Window pparent;
Window root;
Window *children;
unsigned int numchildren;
int parentok;
#endif
int eventrun;
#endif
#endif
char *m_shm3;
int m_inexcept;
#ifdef WAVES
int wavesthread;
#endif
protected:
void cleanup();
void syncStartup();
private:
int m_shmFd;
int m_shmFd2;
int m_shmFd3;
int m_shmControlFd;
char *m_shmControlFileName;
ShmControl *m_shmControl;
int m_shmControl2Fd;
char *m_shmControl2FileName;
ShmControl *m_shmControl2;
int m_shmControl3Fd;
char *m_shmControl3FileName;
ShmControl *m_shmControl3;
int m_shmControl4Fd;
char *m_shmControl4FileName;
ShmControl *m_shmControl4;
int m_shmControl5Fd;
char *m_shmControl5FileName;
ShmControl *m_shmControl5;
int m_AMRequestFd;
int m_AMResponseFd;
char *m_AMRequestFileName;
char *m_AMResponseFileName;
char *m_shmFileName;
char *m_shm;
size_t m_shmSize;
char *m_shmFileName2;
char *m_shm2;
size_t m_shmSize2;
char *m_shmFileName3;
size_t m_shmSize3;
int sizeShm();
pthread_t m_AMThread;
static void *callAMThread(void *arg) { return ((RemotePluginClient*)arg)->AMThread(); }
void *AMThread();
int m_threadinit;
void RemotePluginClosedException();
bool fwait(int *fcount, int ms);
bool fpost(int *fcount);
void rdwr_tryReadring(RingBuffer *ringbuf, void *buf, size_t count, const char *file, int line);
void rdwr_tryWritering(RingBuffer *ringbuf, const void *buf, size_t count, const char *file, int line);
void rdwr_writeOpcodering(RingBuffer *ringbuf, RemotePluginOpcode opcode, const char *file, int line);
int rdwr_readIntring(RingBuffer *ringbuf, const char *file, int line);
void rdwr_writeIntring(RingBuffer *ringbuf, int i, const char *file, int line);
void rdwr_writeFloatring(RingBuffer *ringbuf, float f, const char *file, int line);
float rdwr_readFloatring(RingBuffer *ringbuf, const char *file, int line);
void rdwr_writeStringring(RingBuffer *ringbuf, const std::string &str, const char *file, int line);
std::string rdwr_readStringring(RingBuffer *ringbuf, const char *file, int line);
void rdwr_commitWrite(RingBuffer *ringbuf, const char *file, int line);
bool dataAvailable(RingBuffer *ringbuf);
void rdwr_tryRead(char *ptr, void *buf, size_t count, const char *file, int line);
void rdwr_tryWrite(char *ptr, const void *buf, size_t count, const char *file, int line);
void rdwr_writeOpcode(char *ptr, RemotePluginOpcode opcode, const char *file, int line);
void rdwr_writeString(char *ptr, const std::string &str, const char *file, int line);
std::string rdwr_readString(char *ptr, const char *file, int line);
void rdwr_writeInt(char *ptr, int i, const char *file, int line);
int rdwr_readInt(char *ptr, const char *file, int line);
void rdwr_writeFloat(char *ptr, float f, const char *file, int line);
float rdwr_readFloat(char *ptr, const char *file, int line);
};
#endif