forked from UCBerkeleySETI/rawspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rawspec_file.c
307 lines (282 loc) · 10.2 KB
/
rawspec_file.c
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
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "rawspec_file.h"
#include "fbh5_defs.h"
#include "guppirawc99.h"
// Open a single Filterbank file for one of the following:
// * nants = 0
// * a single antenna of a set
// * ICS
int open_output_file(callback_data_t *cb_data, const char * dest, const char *stem, int output_idx, int antenna_index)
{
int fd;
const char * basename;
char fname[PATH_MAX+1];
char fileext[4] = {'\0'};
int retcode;
// If dest is given and it's not empty
switch(cb_data->flag_file_output) {
case FILE_FORMAT_FBH5:
strcpy(fileext, "h5");
break;
case FILE_FORMAT_FBSIGPROC:
strcpy(fileext, "fil");
break;
case FILE_FORMAT_GUPPIRAW:
strcpy(fileext, "raw");
break;
}
if(dest && dest[0]) {
// Look for last '/' in stem
basename = strrchr(stem, '/');
if(basename) {
// If found, advance beyond it to first char of basename
basename++;
} else {
// If not found, use stem as basename
basename = stem;
}
snprintf(fname, PATH_MAX, "%s/%s.rawspec.%04d.%s", dest, basename, output_idx, fileext);
} else {
snprintf(fname, PATH_MAX, "%s.rawspec.%04d.%s", stem, output_idx, fileext);
}
fname[PATH_MAX] = '\0';
switch(cb_data->flag_file_output) {
case FILE_FORMAT_FBH5:
// Open an FBH5 output file.
// If antenna_index < 0, then use the ICS context;
// Else, use the indicated antenna context.
if(antenna_index < 0)
cb_data->exit_soon = fbh5_open(&(cb_data->fbh5_ctx_ics), &(cb_data->fb_hdr),
cb_data->Nds, fname, cb_data->debug_callback);
else
cb_data->exit_soon = fbh5_open(&(cb_data->fbh5_ctx_ant[antenna_index]), &(cb_data->fb_hdr),
cb_data->Nds, fname, cb_data->debug_callback);
if(cb_data->exit_soon != 0)
return -1; // Indicate that fbh5_open failed.
if(cb_data->debug_callback)
printf("open_output_file: fbh5_open(%s) successful\n", fname);
return ENABLER_FD_FOR_FBH5;
case FILE_FORMAT_FBSIGPROC:
// Open a SIGPROC Filterbank output file.
fd = open(fname, O_WRONLY | O_CREAT | O_TRUNC, 0664);
if(fd == -1) {
cb_data->exit_soon = 1;
perror(fname);
} else {
posix_fadvise(fd, 0, 0, POSIX_FADV_DONTNEED);
}
return fd;
case FILE_FORMAT_GUPPIRAW:
// Open a SIGPROC Filterbank output file.
fd = open(fname, O_WRONLY | O_CREAT | O_TRUNC, 0664);
if(fd == -1) {
cb_data->exit_soon = 1;
perror(fname);
}
return fd;
}
}
// Open one or more output Filterbank files for the following cases:
// * nants = 0
// * the set of antennas when nants > 0
int open_output_file_per_antenna_and_write_header(callback_data_t *cb_data, const char * dest, const char * stem, int output_idx)
{
char ant_stem[PATH_MAX+1];
for(int i = 0; i < (cb_data->per_ant_out ? cb_data->Nant : 1); i++) {
if(cb_data->per_ant_out) {
snprintf(ant_stem, PATH_MAX, "%s-ant%03d", stem, i);
}
else {
snprintf(ant_stem, PATH_MAX, "%s", stem);
}
cb_data->fd[i] = open_output_file(cb_data, dest, ant_stem, output_idx, i);
if(cb_data->fd[i] < 0) {
// If we can't open this output file, we probably won't be able to
// open any more output files, so print message and bail out.
fprintf(stderr, "cannot open output file, giving up\n");
cb_data->exit_soon = 1;
return 1; // Give up
}
// Write filterbank header to output file if SIGPROC.
switch(cb_data->flag_file_output) {
case FILE_FORMAT_FBSIGPROC:
fb_fd_write_header(cb_data->fd[i], &cb_data->fb_hdr);
break;
}
}
return 0;
}
void * dump_file_thread_func(void *arg)
{
callback_data_t * cb_data = (callback_data_t *)arg;
int retcode;
// Single antenna case
if(cb_data->fd && cb_data->h_pwrbuf) {
if(cb_data->flag_file_output == FILE_FORMAT_GUPPIRAW) {
const size_t ant_stride = cb_data->h_pwrbuf_size / cb_data->Nant;
for(size_t i = 0; i < (cb_data->per_ant_out ? cb_data->Nant : 1); i++){
if(cb_data->fd[i] == -1){
// Assume that the following file-descriptors aren't valid
break;
}
if(guppiraw_write_block(
cb_data->fd[i],
&cb_data->guppiraw_header,
cb_data->h_pwrbuf + ant_stride*i
) < (int64_t) cb_data->h_pwrbuf_size / (cb_data->per_ant_out ? cb_data->Nant : 1)
) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
fprintf(stderr, "GUPPIRAW-WRITE-ERROR\n");
break;
}
}
}
else if(cb_data->Nant == 1) {
if(cb_data->debug_callback)
printf("dump_file_thread_func: write for nants=0\n");
switch(cb_data->flag_file_output) {
case FILE_FORMAT_FBH5:
retcode = fbh5_write(&(cb_data->fbh5_ctx_ant[0]),
&(cb_data->fb_hdr),
cb_data->h_pwrbuf,
cb_data->h_pwrbuf_size,
cb_data->debug_callback);
if(retcode != 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
}
break;
case FILE_FORMAT_FBSIGPROC:
if(write(cb_data->fd[0],
cb_data->h_pwrbuf,
cb_data->h_pwrbuf_size) < 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
fprintf(stderr, "SIGPROC-WRITE-ERROR\n");
}
break;
}
} else if(cb_data->per_ant_out && cb_data->Nant > 1) {
const size_t spectra_stride = cb_data->h_pwrbuf_size / (cb_data->Nds * sizeof(float));
const size_t pol_stride = spectra_stride / cb_data->fb_hdr.nifs;
const size_t ant_stride = pol_stride / cb_data->Nant;
// Multiple antennas, split output
for(size_t k = 0; k < cb_data->Nds; k++){// Spectra out
for(size_t j = 0; j < cb_data->fb_hdr.nifs; j++){// Npolout
for(size_t i = 0; i < cb_data->Nant; i++){
if(cb_data->fd[i] == -1){
// Assume that the following file-descriptors aren't valid
break;
}
if(cb_data->debug_callback)
printf("dump_file_thread_func: write for antenna %ld-%ld-%ld\n", k, j, i);
switch(cb_data->flag_file_output) {
case FILE_FORMAT_FBH5:
retcode = fbh5_write(&(cb_data->fbh5_ctx_ant[i]),
&(cb_data->fb_hdr),
cb_data->h_pwrbuf + i * ant_stride + j * pol_stride + k * spectra_stride,
ant_stride * sizeof(float),
cb_data->debug_callback);
if(retcode != 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
}
break;
case FILE_FORMAT_FBSIGPROC:
if(write(cb_data->fd[i],
cb_data->h_pwrbuf + i * ant_stride + j * pol_stride + k * spectra_stride,
ant_stride * sizeof(float)) < 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
fprintf(stderr, "SIGPROC-WRITE-ERROR\n");
}
break;
}
} // for(size_t i = 0; i < cb_data->Nant; i++)
} // for(size_t j = 0; j < cb_data->fb_hdr.nifs; j++)
} // for(size_t k = 0; k < cb_data->Nds; k++)
} // else if(cb_data->per_ant_out)
} // if(cb_data->fd && cb_data->h_pwrbuf)
// Multiple antennas, ICS output
if(cb_data->fd_ics && cb_data->h_icsbuf) {
if(cb_data->debug_callback)
printf("dump_file_thread_func: write for ICS\n");
if (cb_data->flag_file_output == FILE_FORMAT_FBH5) {
retcode = fbh5_write(&(cb_data->fbh5_ctx_ics),
&(cb_data->fb_hdr),
cb_data->h_icsbuf,
cb_data->h_pwrbuf_size/cb_data->Nant,
cb_data->debug_callback);
if(retcode != 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
}
} else if (cb_data->flag_file_output == FILE_FORMAT_FBSIGPROC) {
if(write(cb_data->fd_ics,
cb_data->h_icsbuf,
cb_data->h_pwrbuf_size/cb_data->Nant) < 0) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
fprintf(stderr, "SIGPROC-WRITE-ERROR\n");
}
} else if (cb_data->flag_file_output == FILE_FORMAT_GUPPIRAW) {
if(
guppiraw_write_block(
cb_data->fd_ics,
&cb_data->guppiraw_header_ics,
cb_data->h_icsbuf
) < (int64_t) cb_data->h_pwrbuf_size / cb_data->Nant
) {
cb_data->exit_soon = 1;
cb_data->output_thread_valid = 0;
fprintf(stderr, "GUPPIRAW-WRITE-ERROR\n");
}
}
}
// Increment total spectra counter for this output product
cb_data->total_spectra += cb_data->Nds;
return NULL;
}
void dump_file_callback(
rawspec_context * ctx,
int output_product,
int callback_type)
{
int i;
int rc;
callback_data_t * cb_data =
&((callback_data_t *)ctx->user_data)[output_product];
ctx->exit_soon = cb_data->exit_soon;
if(callback_type == RAWSPEC_CALLBACK_PRE_DUMP) {
if(cb_data->output_thread_valid) {
// Join output thread
if((rc=pthread_join(cb_data->output_thread, NULL))) {
fprintf(stderr, "pthread_join: %s\n", strerror(rc));
}
// Flag thread as invalid
cb_data->output_thread_valid = 0;
}
} else if(callback_type == RAWSPEC_CALLBACK_POST_DUMP) {
#ifdef VERBOSE
fprintf(stderr, "cb %d writing %lu bytes:",
output_product, ctx->h_pwrbuf_size[output_product]);
for(i=0; i<16; i++) {
fprintf(stderr, " %02x",
((char *)ctx->h_pwrbuf[output_product])[i] & 0xff);
}
fprintf(stderr, "\n");
#endif // VERBOSE
if((rc=pthread_create(&cb_data->output_thread, NULL,
dump_file_thread_func, cb_data))) {
fprintf(stderr, "pthread_create: %s\n", strerror(rc));
} else {
cb_data->output_thread_valid = 1;
}
}
}