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
|
/***** jack.dl.c - (c) rohan drape, 2003-2008 *****/
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <time.h>
#include <dlfcn.h>
#include <jack/jack.h>
#include <jack/thread.h>
#include <lo/lo.h>
#include "common/jack-port.h"
#include "jack.dl.h"
void fail(char *s)
{
fprintf(stderr, "%s", s);
exit(EXIT_FAILURE);
}
int dsp_run(jack_nframes_t nf, void *ptr)
{
struct world *w = (struct world *)ptr;
for(int i = 0; i < w->nc; i++) {
w->in[i] = (float *)jack_port_get_buffer(w->ip[i], nf);
}
for(int i = 0; i < w->nc; i++) {
w->out[i] = (float *)jack_port_get_buffer(w->op[i], nf);
memset(w->out[i], 0, nf * sizeof(float));
}
for(int i = 0; i < w->ng; i++) {
if(w->ga[i]) {
w->dsp_step[i](w, i, w->st[i], nf);
}
}
return 0;
}
void osc_error(int n, const char *m, const char *p)
{
fprintf(stderr,"jack.dl: error %d in path %s: %s\n", n, p, m);
}
#define break_on(x,s) \
if(x){ \
fprintf(stderr,"jack.dl: %s: %s, %d\n", s, __FILE__, __LINE__); \
return 0; \
}
int osc_g_load(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
int g = a[0]->i;
break_on(g >= w->ng, "graph index");
w->ga[g] = false;
char *s = &a[1]->s;
if(w->gh[g]) break_on(dlclose(w->gh[g]), dlerror());
w->gh[g] = dlopen(s, RTLD_LAZY);
break_on(!w->gh[g], dlerror());
w->dsp_init[g] = dlsym(w->gh[g], "dsp_init");
w->dsp_step[g] = dlsym(w->gh[g], "dsp_step");
w->st[g] = w->dsp_init[g](w, g);
w->ga[g] = true;
fprintf(stderr,"g_load: %d, %s\n", g, s);
return 0;
}
int osc_g_unload(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
int g = a[0]->i;
break_on(g >= w->ng, "graph index");
w->ga[g] = false;
if(w->gh[g]) break_on(dlclose(w->gh[g]), dlerror());
w->gh[g] = NULL;
if(w->st[g]) free(w->st[g]);
fprintf(stderr,"g_unload: %d\n", g);
return 0;
}
int osc_c_set1(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
int i = a[0]->i;
break_on(i >= w->nk, "control index");
w_c_set1(w, i, a[1]->f);
fprintf(stderr,"c_set1: %d, %f\n", i, a[1]->f);
return 0;
}
int osc_b_alloc(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
int i = a[0]->i;
break_on(i >= w->nb, "buffer index");
/*if(w->bd[i]) free(w->bd[i]);*/
int l = a[1]->i;
w->bl[i] = 0;
w->bd[i] = calloc(l, sizeof(float));
w->bl[i] = l;
fprintf(stderr,"b_alloc: %d, %d\n", i, l);
return 0;
}
int osc_p_set1(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
int g = a[0]->i;
break_on(g >= w->ng, "graph index");
int i = a[1]->i;
break_on(i >= w->nk, "control index");
w_p_set1(w, g, i, a[2]->f);
fprintf(stderr,"p_set1: %d, %d, %f\n", g, i, a[2]->f);
return 0;
}
int osc_quit(const char *p, const char *t, lo_arg **a, int n, void *d, void *u)
{
struct world *w = (struct world *)u;
w->ef = true;
return 0;
}
void world_init(struct world *w, int ng, int nc, int nk, int nb)
{
w->ng = ng;
w->nc = nc;
w->nk = nk;
w->nb = nb;
w->dsp_init = calloc(w->ng, sizeof(void *));
w->dsp_step = calloc(w->ng, sizeof(void *));
w->st = calloc(w->ng, sizeof(void *));
w->p_ctl = malloc(w->ng * sizeof(float *));
for(int i = 0; i < w->ng; i++) {
w->p_ctl[i] = calloc(w->nk, sizeof(float));
}
w->ga = calloc(w->ng, sizeof(bool));
w->gh = calloc(w->ng, sizeof(void *));
w->ip = malloc(w->nc * sizeof(jack_port_t *));
w->op = malloc(w->nc * sizeof(jack_port_t *));
w->in = malloc(w->nc * sizeof(float *));
w->out = malloc(w->nc * sizeof(float *));
w->ctl = calloc(w->nk, sizeof(float));
w->bl = calloc(w->nb, sizeof(int));
w->bd = calloc(w->ng, sizeof(float*));
w->ef = false;
w->c = jack_client_open("jack.dl",JackNullOption,NULL);
if(!w->c) fail("could not create jack client\n");
jack_set_process_callback(w->c, dsp_run, w);
w->sr = (float)jack_get_sample_rate(w->c);
jack_port_make_standard(w->c, w->ip, w->nc, false);
jack_port_make_standard(w->c, w->op, w->nc, true);
}
int main(int argc, char **argv)
{
struct world w;
lo_server_thread osc;
world_init(&w, 8, 8, 64, 8);
osc = lo_server_thread_new("57190", osc_error);
lo_server_thread_add_method(osc, "/c_set1", "if", osc_c_set1, &w);
lo_server_thread_add_method(osc, "/p_set1", "iif", osc_p_set1, &w);
lo_server_thread_add_method(osc, "/g_load", "is", osc_g_load, &w);
lo_server_thread_add_method(osc, "/g_unload", "i", osc_g_unload, &w);
lo_server_thread_add_method(osc, "/b_alloc", "ii", osc_b_alloc, &w);
lo_server_thread_add_method(osc, "/quit", NULL, osc_quit, &w);
lo_server_thread_start(osc);
if(jack_activate(w.c)) fail("jack.dl: jack_activate() failed\n");
while(!w.ef) {
struct timespec t = {0, 100000000};
nanosleep(&t, NULL);
}
jack_client_close(w.c);
lo_server_thread_free(osc);
return EXIT_SUCCESS;
}
|