This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
dssi-vst-scanner.cpp
447 lines (367 loc) · 11.6 KB
/
dssi-vst-scanner.cpp
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
// -*- c-basic-offset: 4 -*-
/*
dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2012-2013 Filipe Coelho
Copyright 2010-2011 Kristian Amlie
Copyright 2004-2010 Chris Cannam
*/
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <sys/types.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <sys/un.h>
#include <sys/stat.h>
#include <dirent.h>
#include <unistd.h>
#include <cstdlib>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#define VST_FORCE_DEPRECATED 0
#include "aeffectx.h"
#include "remotepluginserver.h"
#include "paths.h"
#define APPLICATION_CLASS_NAME "dssi_vst"
#define OLD_PLUGIN_ENTRY_POINT "main"
#define NEW_PLUGIN_ENTRY_POINT "VSTPluginMain"
#if VST_FORCE_DEPRECATED
#define DEPRECATED_VST_SYMBOL(x) __##x##Deprecated
#else
#define DEPRECATED_VST_SYMBOL(x) x
#endif
using namespace std;
#if 1 // vestige header
#define kVstVersion 2400
struct VstTimeInfo_R {
double samplePos, sampleRate, nanoSeconds, ppqPos, tempo, barStartPos, cycleStartPos, cycleEndPos;
int32_t timeSigNumerator, timeSigDenominator, smpteOffset, smpteFrameRate, samplesToNextClock, flags;
};
intptr_t
hostCallback(AEffect *plugin, int32_t opcode, int32_t index,
intptr_t value, void *ptr, float opt)
#elif VST_2_4_EXTENSIONS
typedef VstTimeInfo VstTimeInfo_R;
VstIntPtr VSTCALLBACK
hostCallback(AEffect *plugin, VstInt32 opcode, VstInt32 index,
VstIntPtr value, void *ptr, float opt)
#else
typedef VstTimeInfo VstTimeInfo_R;
long VSTCALLBACK
hostCallback(AEffect *plugin, long opcode, long index,
long value, void *ptr, float opt)
#endif
{
static VstTimeInfo_R timeInfo;
switch (opcode) {
case audioMasterAutomate:
if (plugin)
plugin->setParameter(plugin, index, opt);
break;
case audioMasterVersion:
return kVstVersion;
case audioMasterIdle:
if (plugin)
plugin->dispatcher(plugin, effEditIdle, 0, 0, 0, 0.0f);
break;
case audioMasterGetVendorString:
strcpy((char *)ptr, "Chris Cannam");
break;
case audioMasterGetProductString:
strcpy((char *)ptr, "DSSI-VST Scanner");
break;
case audioMasterGetVendorVersion:
return intptr_t(RemotePluginVersion * 100);
case audioMasterGetLanguage:
return kVstLangEnglish;
case audioMasterCanDo:
if (!strcmp((char*)ptr, "sendVstEvents") ||
!strcmp((char*)ptr, "sendVstMidiEvent") ||
!strcmp((char*)ptr, "sendVstTimeInfo") ||
!strcmp((char*)ptr, "sizeWindow") ||
!strcmp((char*)ptr, "supplyIdle") ||
!strcmp((char*)ptr, "receiveVstEvents") ||
!strcmp((char*)ptr, "receiveVstMidiEvent")) {
return 1;
}
break;
case audioMasterGetTime:
memset(&timeInfo, 0, sizeof(VstTimeInfo_R));
timeInfo.samplePos = 0;
timeInfo.sampleRate = 48000;
timeInfo.flags = 0; // don't mark anything valid except default samplePos/Rate
return (intptr_t)&timeInfo;
case DEPRECATED_VST_SYMBOL(audioMasterTempoAt):
// can't support this, return 120bpm
return 120 * 10000;
case audioMasterGetSampleRate:
return 48000; // fake value
break;
case audioMasterGetBlockSize:
return 1024; // fake value
break;
case DEPRECATED_VST_SYMBOL(audioMasterWillReplaceOrAccumulate):
// 0 -> unsupported, 1 -> replace, 2 -> accumulate
return 1;
case audioMasterGetCurrentProcessLevel:
// 0 -> unsupported, 1 -> gui, 2 -> process, 3 -> midi/timer, 4 -> offline
return 1;
case DEPRECATED_VST_SYMBOL(audioMasterGetParameterQuantization):
return 1;
case DEPRECATED_VST_SYMBOL(audioMasterNeedIdle):
return 1;
case DEPRECATED_VST_SYMBOL(audioMasterWantMidi):
return 1;
default:
break;
}
return 0;
};
int WINAPI
WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmdshow)
{
char *destFile = 0;
cout << "DSSI VST plugin scanner v0.3" << endl;
cout << "Copyright (c) 2004-2010 Chris Cannam" << endl;
if (cmdline && cmdline[0]) destFile = strdup(cmdline);
int targetfd = 0;
if (destFile) {
if ((targetfd = open(destFile, O_WRONLY)) < 0) {
cerr << "dssi-vst-scanner: Failed to open output file " << destFile;
perror(" ");
cerr << "dssi-vst-scanner: Defaulting to stdout" << endl;
targetfd = 0;
}
}
int version = int(RemotePluginVersion * 1000);
write(targetfd, &version, sizeof(int));
HINSTANCE libHandle = 0;
std::vector<std::string> vstPath = Paths::getPath
("VST_PATH", "/usr/local/lib/vst:/usr/lib/vst", "/vst");
for (size_t i = 0; i < vstPath.size(); ++i) {
std::string vstDir = vstPath[i];
DIR *directory = opendir(vstDir.c_str());
if (!directory) {
// cerr << "dssi-vst-scanner: couldn't read VST directory \""
// << vstDir << "\"" << std::endl;
continue;
}
struct dirent *entry;
char *home = getenv("HOME");
std::string cacheDir = std::string(home) + "/.dssi-vst";
bool haveCacheDir = false;
DIR *test = opendir(cacheDir.c_str());
if (!test) {
if (mkdir(cacheDir.c_str(), 0755)) {
cerr << "dssi-vst-scanner: failed to create cache directory " << cacheDir;
perror(0);
} else {
haveCacheDir = true;
}
} else {
haveCacheDir = true;
closedir(test);
}
while ((entry = readdir(directory))) {
// For each plugin, we write:
//
// dll name (64 chars)
// name (64 chars)
// vendor (64 chars)
// is synth (bool)
// have editor (bool)
// input count (int)
// output count (int)
//
// parameter count (int)
// then for each parameter:
// name (64 chars)
// default value (float)
//
// program count (int)
// then for each program:
// name (64 chars)
std::string libname = entry->d_name;
if (libname[0] == '.' ||
libname.length() < 5 ||
(libname.substr(libname.length() - 4) != ".dll" &&
libname.substr(libname.length() - 4) != ".DLL")) {
continue;
}
int fd = targetfd;
bool haveCache = false;
bool writingCache = false;
std::string cacheFileName = cacheDir + "/" + libname + ".cache";
if (haveCacheDir) {
struct stat st;
if (!stat(cacheFileName.c_str(), &st)) {
int testfd = open(cacheFileName.c_str(), O_RDONLY);
if (testfd >= 0) {
int testVersion = 0;
if (read(testfd, &testVersion, sizeof(int)) == sizeof(int) &&
testVersion == version) {
haveCache = true;
} else {
cerr << "dssi-vst-scanner: Cache version mismatch for file "
<< cacheFileName << " (" << testVersion << ", wanted "
<< version << ") - rewriting" << endl;
}
close(testfd);
}
}
if (!haveCache) {
if ((fd = open(cacheFileName.c_str(), O_WRONLY | O_CREAT, 0644)) < 0) {
cerr << "dssi-vst-scanner: Failed to open cache file " << cacheFileName;
perror(" for writing");
fd = targetfd;
} else {
writingCache = true;
write(fd, &version, sizeof(int));
}
}
}
if (!haveCache) {
int inputs = 0, outputs = 0, params = 0, programs = 0;
char buffer[65];
bool synth = false, gui = false;
int i = 0;
AEffect *(__stdcall* getInstance)(audioMasterCallback) = 0;
AEffect *plugin = 0;
std::string libPath;
if (vstDir[vstDir.length()-1] == '/') {
libPath = vstDir + libname;
} else {
libPath = vstDir + "/" + libname;
}
libHandle = LoadLibrary(libPath.c_str());
cerr << "dssi-vst-scanner: " << (libHandle ? "" : "not ")
<< "found in " << libPath << endl;
if (!libHandle) {
if (home && home[0] != '\0') {
if (libPath.substr(0, strlen(home)) == home) {
libPath = libPath.substr(strlen(home) + 1);
}
libHandle = LoadLibrary(libPath.c_str());
cerr << "dssi-vst-scanner: " << (libHandle ? "" : "not ")
<< "found in " << libPath << endl;
}
}
if (!libHandle) {
cerr << "dssi-vst-scanner: Couldn't load DLL " << libPath << endl;
goto done;
}
getInstance = (AEffect*(__stdcall*)(audioMasterCallback))
GetProcAddress(libHandle, NEW_PLUGIN_ENTRY_POINT);
if (!getInstance) {
getInstance = (AEffect*(__stdcall*)(audioMasterCallback))
GetProcAddress(libHandle, OLD_PLUGIN_ENTRY_POINT);
if (!getInstance) {
cerr << "dssi-vst-scanner: VST entrypoints \""
<< NEW_PLUGIN_ENTRY_POINT << "\" or \""
<< OLD_PLUGIN_ENTRY_POINT << "\" not found in DLL \""
<< libname << "\"" << endl;
goto done;
}
}
plugin = getInstance(hostCallback);
if (!plugin) {
cerr << "dssi-vst-scanner: Failed to instantiate plugin in VST DLL \""
<< libPath << "\"" << endl;
goto done;
}
if (plugin->magic != kEffectMagic) {
cerr << "dssi-vst-scanner: Not a VST effect in DLL \""
<< libPath << "\"" << endl;
goto done;
}
if (!plugin->flags & effFlagsCanReplacing) {
cerr << "dssi-vst-scanner: Effect does not support processReplacing (required)"
<< endl;
goto done;
}
memset(buffer, 0, 65);
snprintf(buffer, 64, "%s", libname.c_str());
write(fd, buffer, 64);
memset(buffer, 0, 65);
plugin->dispatcher(plugin, effGetEffectName, 0, 0, buffer, 0);
if (buffer[0] == '\0') {
snprintf(buffer, 64, "%s", libname.c_str());
}
write(fd, buffer, 64);
memset(buffer, 0, 65);
plugin->dispatcher(plugin, effGetVendorString, 0, 0, buffer, 0);
if (buffer[0] == '\0') {
snprintf(buffer, 64, "Unknown");
}
write(fd, buffer, 64);
synth = false;
if (plugin->flags & effFlagsIsSynth) synth = true;
write(fd, &synth, sizeof(bool));
gui = false;
if (plugin->flags & effFlagsHasEditor) gui = true;
write(fd, &gui, sizeof(bool));
inputs = plugin->numInputs;
write(fd, &inputs, sizeof(int));
outputs = plugin->numOutputs;
write(fd, &outputs, sizeof(int));
params = plugin->numParams;
write(fd, ¶ms, sizeof(int));
for (i = 0; i < params; ++i) {
memset(buffer, 0, 65);
plugin->dispatcher(plugin, effGetParamName, i, 0, buffer, 0);
if (buffer[0] == '\0') {
snprintf(buffer, 64, "Unnamed %i", i);
}
write(fd, buffer, 64);
float f = plugin->getParameter(plugin, i);
write(fd, &f, sizeof(float));
}
programs = plugin->numPrograms;
write(fd, &programs, sizeof(int));
for (i = 0; i < programs; ++i) {
memset(buffer, 0, 65);
// effGetProgramName appears to return the name of the
// current program, not program <index> -- though we
// pass in <index> as well, just in case
plugin->dispatcher(plugin, effSetProgram, 0, i, NULL, 0);
plugin->dispatcher(plugin, effGetProgramName, i, 0, buffer, 0);
if (buffer[0] == '\0') {
snprintf(buffer, 64, "Unnamed %i", i);
}
write(fd, buffer, 64);
}
done:
if (plugin) plugin->dispatcher(plugin, effClose, 0, 0, NULL, 0);
FreeLibrary(libHandle);
}
if (writingCache) {
close(fd);
}
if (haveCache || writingCache) {
// need to read from cache as well
if ((fd = open(cacheFileName.c_str(), O_RDONLY)) < 0) {
cerr << "dssi-vst-scanner: Failed to open cache file " << cacheFileName;
perror("for reading");
} else {
int testVersion = 0;
if (read(fd, &testVersion, sizeof(int)) != sizeof(int) ||
testVersion != version) {
cerr << "dssi-vst-scanner: Internal error: cache file " << cacheFileName << " verified earlier, but now fails version test (" << testVersion << " != " << version << ")" << endl;
} else {
unsigned char c;
while (read(fd, &c, 1) == 1) {
write(targetfd, &c, 1);
}
}
close(fd);
}
}
}
closedir(directory);
}
if (targetfd != 0) {
close(targetfd);
}
return 0;
}