-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathremotepluginclient.h
349 lines (287 loc) · 7.89 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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
/* 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
#include <stdint.h>
#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 "rdwrops.h"
#include "remoteplugin.h"
#include <dlfcn.h>
#include <fstream>
#include <string>
#include <sys/shm.h>
#include <vector>
#ifdef EMBED
#include <X11/Xatom.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#endif
#include <atomic>
// 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, Dl_info info);
~RemotePluginClient();
std::string getFileIdentifiers();
int 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);
std::string getParameterLabel(int);
std::string getParameterDisplay(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();
int getProgramNameIndexed(int, char *ptr);
std::string getProgramName();
void setCurrentProgram(int);
int processVstEvents(VstEvents *);
#ifdef DOUBLEP
void processdouble(double **inputs, double **outputs, int sampleFrames);
bool setPrecision(int value);
#endif
bool getEffInProp(int index, void *ptr);
bool getEffOutProp(int index, void *ptr);
#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();
#ifdef EMBED
#ifdef XECLOSE
void sendXembedMessage(Display *display, Window window, long message,
long detail, long data1, long data2);
#endif
#endif
// 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 waitForServer(ShmControl *m_shmControlptr);
void waitForServer2exit();
void waitForServer3exit();
void waitForServer4exit();
void waitForServer5exit();
void waitForServer6exit();
void waitForClientexit();
void setDebugLevel(RemotePluginDebugLevel);
bool warn(std::string);
void showGUI();
void hideGUI();
#ifdef EMBED
void openGUI();
ERect *rp;
#endif
int getEffInt(int opcode, int value);
std::string getEffString(int opcode, int index);
void effVoidOp(int opcode);
int effVoidOp2(int opcode, int index, int value, float opt);
void errwin(std::string dllname);
// static const char * selfname();
void ServerConnect(Dl_info info);
static VstIntPtr dispatchproc(AEffect *effect, VstInt32 opcode,
VstInt32 index, VstIntPtr value, void *ptr,
float opt);
#ifdef DOUBLEP
static void prodproc(AEffect *effect, double **inputs, double **outputs,
int sampleFrames);
#endif
static void proproc(AEffect *effect, float **inputs, float **outputs,
int sampleFrames);
static void setparproc(AEffect *effect, int index, float parameter);
static float getparproc(AEffect *effect, int index);
int m_effeditclose;
int m_bufferSize;
int m_numInputs;
int m_numOutputs;
int m_finishaudio;
int m_runok;
int m_syncok;
int m_386run;
AEffect *theEffect;
AEffect theEffect2;
audioMasterCallback m_audioMaster;
int m_threadbreak;
int m_threadbreakexit;
int editopen;
#ifdef EMBED
#ifdef XECLOSE
int xeclose;
#endif
/*
int m_threadbreakembed;
int m_threadbreakexitembed;
*/
#endif
VstEvents vstev[VSTSIZE];
ERect retRect = {0, 0, 200, 500};
int reaperid;
int m_updateio;
int m_updatein;
int m_updateout;
int m_delay;
#ifdef CHUNKBUF
char *chunk_ptr;
#endif
#ifdef EMBED
Window child;
Window parent;
Display *display;
int handle;
int width;
int height;
struct alignas(64) winmessage {
int handle;
int width;
int height;
int winerror;
} winm2;
winmessage *winm;
int displayerr;
#ifdef EMBEDRESIZE
int resizedone;
#endif
void syncevents(Display *display);
/*
pthread_t m_EMBEDThread;
static void *callEMBEDThread(void *arg) { return
((RemotePluginClient*)arg)->EMBEDThread(); } void *EMBEDThread();
*/
Window pparent;
Window windowreturn;
Window root;
Window *children;
unsigned int numchildren;
int parentok;
#ifdef EMBEDDRAG
Window x11_win;
Window dragwin;
int dragwinok;
#endif
int eventrun;
int eventstop;
int eventfinish;
#endif
key_t MyKey2;
int ShmID2;
char *ShmPTR2;
const char *argStr;
char *m_shm3;
char *m_shm4;
char *m_shm5;
#ifdef PCACHE
char *m_shm6;
struct alignas(64) ParamState {
float value;
float valueupdate;
char changed;
};
#endif
int m_inexcept;
/*
struct alignas(64) vinfo
{
char a[64 + 8 + (sizeof(int32_t) * 2) + 48];
// char a[96];
};
*/
ShmControl *m_shmControlptr;
VstTimeInfo *timeInfo;
#ifdef EMBED
#ifdef TRACKTIONWM
int waveformid;
int waveformid2;
int hosttracktion;
#endif
#endif
#ifdef WAVES
int wavesthread;
#endif
protected:
void cleanup();
void syncStartup();
private:
int m_shmFd;
int m_shmControlFd;
char *m_shmControlFileName;
ShmControl *m_shmControl;
ShmControl *m_shmControl2;
ShmControl *m_shmControl3;
ShmControl *m_shmControl4;
ShmControl *m_shmControl5;
ShmControl *m_shmControl6;
int m_AMRequestFd;
int m_AMResponseFd;
char *m_AMRequestFileName;
char *m_AMResponseFileName;
char *m_shmFileName;
char *m_shm;
size_t m_shmSize;
char *m_shm2;
int sizeShm();
pthread_t m_AMThread;
static void *callAMThread(void *arg) {
return ((RemotePluginClient *)arg)->AMThread();
}
void *AMThread();
int m_threadinit;
void RemotePluginClosedException();
bool fwait(ShmControl *m_shmControlptr, std::atomic_int *fcount, int ms);
bool fpost(ShmControl *m_shmControlptr, std::atomic_int *fcount);
bool fwait2(ShmControl *m_shmControlptr, std::atomic_int *fcount, int ms);
bool fpost2(ShmControl *m_shmControlptr, std::atomic_int *fcount);
};
#endif