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
|
#include <string.h>
#include "artnet.h"
#define BACKEND_NAME "artnet"
static uint8_t default_net = 0;
int artnet_init(){
backend artnet = {
.name = BACKEND_NAME,
.conf = artnet_configure,
.create = artnet_instance,
.conf_instance = artnet_configure_instance,
.channel = artnet_channel,
.handle = artnet_set,
.process = artnet_handle,
.start = artnet_start,
.shutdown = artnet_shutdown
};
//register backend
if(mm_backend_register(artnet)){
fprintf(stderr, "Failed to register ArtNet backend\n");
return 1;
}
return 0;
}
static int artnet_configure(char* option, char* value){
if(!strcmp(option, "bind")){
//TODO create socket, hand over to be managed (unregister previous socket?)
return 0;
}
else if(!strcmp(option, "net")){
//configure default net
default_net = strtoul(value, NULL, 10);
return 0;
}
fprintf(stderr, "Unknown ArtNet backend option %s\n", option);
return 1;
}
static instance* artnet_instance(){
instance* inst = mm_instance();
if(!inst){
return NULL;
}
inst->impl = calloc(1, sizeof(artnet_instance_data));
if(!inst->impl){
fprintf(stderr, "Failed to allocate memory\n");
return NULL;
}
return inst;
}
static int artnet_configure_instance(instance* instance, char* option, char* value){
artnet_instance_data* data = (artnet_instance_data*) instance->impl;
if(!strcmp(option, "net")){
data->net = strtoul(value, NULL, 10);
return 0;
}
else if(!strcmp(option, "uni")){
data->uni = strtoul(value, NULL, 10);
return 0;
}
else if(!strcmp(option, "output")){
if(!strcmp(value, "true")){
data->mode |= MODE_OUTPUT;
}
else{
data->mode &= ~MODE_OUTPUT;
}
return 0;
}
fprintf(stderr, "Unknown ArtNet instance option %s\n", option);
return 1;
}
static channel* artnet_channel(instance* instance, char* spec){
unsigned channel = strtoul(spec, NULL, 10);
if(channel > 512 || channel < 1){
fprintf(stderr, "Invalid ArtNet channel %s\n", spec);
return NULL;
}
return mm_channel(instance, channel);
}
static int artnet_set(size_t num, channel* c, channel_value* v){
//TODO
return 1;
}
static int artnet_handle(size_t num, int* fd, void** data){
//TODO
return 1;
}
static int artnet_start(){
//TODO
return 1;
}
static int artnet_shutdown(){
size_t n, p;
instance** inst = NULL;
if(mm_backend_instances(BACKEND_NAME, &n, &inst)){
fprintf(stderr, "Failed to fetch instance list\n");
return 1;
}
for(p = 0; p < n; p++){
free(inst[p]->impl);
}
free(inst);
fprintf(stderr, "ArtNet backend shut down\n");
return 0;
}
|