forked from tidalcycles/Dirt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.c
More file actions
193 lines (162 loc) · 5.32 KB
/
file.c
File metadata and controls
193 lines (162 loc) · 5.32 KB
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
#include <sndfile.h>
#include <samplerate.h>
#include <string.h>
#include <dirent.h>
#include <stdlib.h>
#include <stdbool.h>
#include <pthread.h>
#include "file.h"
#include "segment.h"
t_sample *samples[MAXSAMPLES];
int sample_count = 0;
int samplerate = 44100;
pthread_mutex_t mutex_samples;
bool mutex_samples_init = false;
extern void file_set_samplerate(int s) {
samplerate = s;
}
t_loop *new_loop(float seconds) {
t_loop *result = (t_loop *) calloc(1, sizeof(t_loop));
//result->chunksz = 2048 * 2;
result->chunksz = 2048;
result->max_frames = result->frames = seconds * (float) samplerate;
result->items = (float *) calloc(result->frames, sizeof(double));
result->in = (double *) calloc(result->chunksz, sizeof(double));
result->now = 0;
result->loops = 0;
return(result);
}
void free_loop(t_loop *loop) {
if (loop) {
if (loop->items) free(loop->items);
if (loop->in) free(loop->in);
free(loop);
}
}
t_sample *find_sample (char *samplename) {
int c;
t_sample *sample = NULL;
for(c = 0; c < sample_count; ++c) {
if(strcmp(samples[c]->name, samplename) == 0) {
sample = samples[c];
break;
}
}
return(sample);
}
int wav_filter (const struct dirent *d) {
if (strlen(d->d_name) > 4) {
return(strcmp(d->d_name + strlen(d->d_name) - 4, ".wav") == 0
|| strcmp(d->d_name + strlen(d->d_name) - 4, ".WAV") == 0
);
}
return(0);
}
void fix_samplerate (t_sample *sample) {
SRC_DATA data;
int max_output_frames;
int channels = sample->info->channels;
//printf("start frames: %d\n", sample->info->frames);
if (sample->info->samplerate == samplerate) {
return;
}
data.src_ratio = (float) samplerate / (float) sample->info->samplerate;
//printf("ratio: %d / %d = %f\n", sample->info->samplerate, samplerate, data.src_ratio);
max_output_frames = sample->info->frames * data.src_ratio + 32;
data.data_in = sample->items;
data.input_frames = sample->info->frames;
data.data_out = (float *) calloc(1, sizeof(float)
* max_output_frames
* channels
);
data.output_frames = max_output_frames;
src_simple(&data, SRC_SINC_BEST_QUALITY, channels);
if (sample->items) free(sample->items);
sample->items = data.data_out;
sample->info->samplerate = samplerate;
sample->info->frames = data.output_frames_gen;
//printf("end samplerate: %d frames: %d\n", (int) sample->info->samplerate, sample->info->frames);
}
extern t_sample *file_get(char *samplename, const char *sampleroot) {
t_sample* sample;
sample = find_sample(samplename);
// If sample was not in cache, read it from disk asynchronously
if (sample == NULL) {
// Initialize mutexes if needed
if (!mutex_samples_init) {
pthread_mutex_init(&mutex_samples, NULL);
mutex_samples_init = true;
}
SNDFILE *sndfile;
char path[MAXPATHSIZE];
char error[62];
sf_count_t count;
float *items;
SF_INFO *info;
char set[MAXPATHSIZE];
char sep[2];
int set_n = 0;
struct dirent **namelist;
// load it from disk
if (sscanf(samplename, "%[a-z0-9A-Z]%[/:]%d", set, sep, &set_n)) {
int n;
snprintf(path, MAXPATHSIZE -1, "%s/%s", sampleroot, set);
//printf("looking in %s\n", set);
n = scandir(path, &namelist, wav_filter, alphasort);
if (n > 0) {
snprintf(path, MAXPATHSIZE -1,
"%s/%s/%s", sampleroot, set, namelist[set_n % n]->d_name);
while (n--) {
free(namelist[n]);
}
free(namelist);
} else {
snprintf(path, MAXPATHSIZE -1, "%s/%s", sampleroot, samplename);
}
} else {
snprintf(path, MAXPATHSIZE -1, "%s/%s", sampleroot, samplename);
}
info = (SF_INFO *) calloc(1, sizeof(SF_INFO));
printf("opening %s.\n", path);
if ((sndfile = (SNDFILE *) sf_open(path, SFM_READ, info)) == NULL) {
printf("nope.\n");
free(info);
} else {
items = (float *) calloc(1, sizeof(float) * info->frames * info->channels);
//snprintf(error, (size_t) 61, "hm: %d\n", sf_error(sndfile));
//perror(error);
count = sf_read_float(sndfile, items, info->frames * info->channels);
snprintf(error, (size_t) 61, "count: %d frames: %d channels: %d\n", (int) count, (int) info->frames, info->channels);
perror(error);
if (count == info->frames * info->channels) {
sample = (t_sample *) calloc(1, sizeof(t_sample));
strncpy(sample->name, samplename, MAXPATHSIZE - 1);
sample->info = info;
sample->items = items;
} else {
snprintf(error, (size_t) 61, "didn't get the right number of items: %d vs %d %d\n", (int) count, (int) info->frames * info->channels, sf_error(sndfile));
perror(error);
free(info);
free(items);
}
sf_close(sndfile);
}
if (sample == NULL) {
printf("failed.\n");
} else {
fix_samplerate(sample);
sample->onsets = NULL;
//sample->onsets = segment_get_onsets(sample);
}
// If sample was succesfully read, load it into cache
if (sample) {
pthread_mutex_lock(&mutex_samples);
samples[sample_count++] = sample;
pthread_mutex_unlock(&mutex_samples);
}
}
return(sample);
}
extern t_sample *file_get_from_cache(char *samplename) {
return find_sample(samplename);
}