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
|
// -*- c-basic-offset: 4 -*-
/*
dssi-vst: a DSSI plugin wrapper for VST effects and instruments
Copyright 2004-2008 Chris Cannam
*/
#include "rdwrops.h"
#include <errno.h>
#include <unistd.h>
//#define DEBUG_RDWR 1
extern void
rdwr_tryRead(int fd, void *buf, size_t count, const char *file, int line)
{
ssize_t r = 0;
while ((r = read(fd, buf, count)) < (ssize_t)count) {
if (r == 0) {
// end of file
throw RemotePluginClosedException();
} else if (r < 0) {
if (errno != EAGAIN) {
char message[100];
sprintf(message, "Read failed on fd %d at %s:%d", fd, file, line);
perror(message);
throw RemotePluginClosedException();
}
r = 0;
}
buf = (void *)(((char *)buf) + r);
count -= r;
if (count > 0) {
usleep(20000);
}
}
#ifdef DEBUG_RDWR
if (r >= count) {
fprintf(stderr, "read succeeded at %s:%d (%d bytes)\n",
file, line, r);
}
#endif
}
extern void
rdwr_tryWrite(int fd, const void *buf, size_t count, const char *file, int line)
{
ssize_t w = write(fd, buf, count);
if (w < 0) {
char message[100];
sprintf(message, "Write failed on fd %d at %s:%d", fd, file, line);
perror(message);
throw RemotePluginClosedException();
}
if (w < (ssize_t)count) {
fprintf(stderr, "Failed to complete write on fd %d (have %d, put %d) at %s:%d\n",
fd, (int)count, (int)w, file, line);
throw RemotePluginClosedException();
}
#ifdef DEBUG_RDWR
fprintf(stderr, "write succeeded at %s:%d (%d bytes)\n",
file, line, w);
#endif
}
extern void
rdwr_writeOpcode(int fd, RemotePluginOpcode opcode, const char *file, int line)
{
rdwr_tryWrite(fd, &opcode, sizeof(RemotePluginOpcode), file, line);
}
extern void
rdwr_writeString(int fd, const std::string &str, const char *file, int line)
{
int len = str.length();
rdwr_tryWrite(fd, &len, sizeof(int), file, line);
rdwr_tryWrite(fd, str.c_str(), len, file, line);
}
extern std::string
rdwr_readString(int fd, const char *file, int line)
{
int len;
static char *buf = 0;
static int bufLen = 0;
rdwr_tryRead(fd, &len, sizeof(int), file, line);
if (len + 1 > bufLen) {
delete buf;
buf = new char[len + 1];
bufLen = len + 1;
}
rdwr_tryRead(fd, buf, len, file, line);
buf[len] = '\0';
return std::string(buf);
}
extern void
rdwr_writeInt(int fd, int i, const char *file, int line)
{
rdwr_tryWrite(fd, &i, sizeof(int), file, line);
}
extern int
rdwr_readInt(int fd, const char *file, int line)
{
int i = 0;
rdwr_tryRead(fd, &i, sizeof(int), file, line);
return i;
}
extern void
rdwr_writeFloat(int fd, float f, const char *file, int line)
{
rdwr_tryWrite(fd, &f, sizeof(float), file, line);
}
extern float
rdwr_readFloat(int fd, const char *file, int line)
{
float f = 0;
rdwr_tryRead(fd, &f, sizeof(float), file, line);
return f;
}
extern unsigned char *
rdwr_readMIDIData(int fd, int **frameoffsets, int &events, const char *file, int line)
{
static unsigned char *buf = 0;
static int *frameoffbuf = 0;
static int bufEvts = 0;
rdwr_tryRead(fd, &events, sizeof(int), file, line);
if (events > bufEvts) {
delete buf;
delete frameoffbuf;
buf = new unsigned char[events * 3];
frameoffbuf = new int[events];
bufEvts = events;
}
rdwr_tryRead(fd, buf, events * 3, file, line);
rdwr_tryRead(fd, frameoffbuf, events * sizeof(int), file, line);
if (frameoffsets) *frameoffsets = frameoffbuf;
return buf;
}
|