-
Notifications
You must be signed in to change notification settings - Fork 12
/
plugin-worker.c
382 lines (326 loc) · 12.2 KB
/
plugin-worker.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/*
EIGER HDF5 reader plugin (worker)
written by Takanori Nakane, 2017/3/28
based on Keitaro Yamashita's serial version.
Reference:
https://github.com/dectris/dummy_xds_hook
https://github.com/dectris/neggia
To build:
Linux:
gcc -std=gnu99 -o plugin-worker -g -O3 \
-I/app/dials/base/include -L/app/dials/base/lib \
plugin-worker.c \
-Ilz4 lz4/lz4.c lz4/h5zlz4.c \
bitshuffle/bshuf_h5filter.c \
bitshuffle/bshuf_h5plugin.c \
bitshuffle/bitshuffle.c \
-lpthread -lhdf5_hl -lhdf5 -lrt
Mac OS:
TODO: need to test.
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <fcntl.h>
#include "hdf5_hl.h"
#include "hdf5.h"
#define INVALID -9999
extern const H5Z_class2_t H5Z_LZ4;
extern const H5Z_class2_t bshuf_H5Filter;
void register_filters() {
H5Zregister(&H5Z_LZ4);
H5Zregister(&bshuf_H5Filter);
}
struct GlobalData {
hid_t hdf, group;
int dimx, dimy;
int Nminus1, Nminus2;
int datasize;
int nframesPerDataset;
signed int *minus1, *minus2;
float xpixelSize;
float ypixelSize;
int block_start;
unsigned int error_val;
unsigned int *mapped_buf;
};
struct GlobalData *GLOBAL_DATA = NULL;
void plugin_get_header(int *nx, int *ny, int *nbytes, float *qx, float *qy,
int *number_of_frames, int info[1024],
int *error_flag);
void child_loop(int myid);
int open_file(const char *filename) {
register_filters();
fprintf(stderr, "PLUGIN INFO: plugin_open called with filename = %s\n", filename);
if (GLOBAL_DATA != NULL) {
fprintf(stderr, "PLUGIN ERROR: CAN ONLY OPEN ONE FILE AT A TIME\n");
return -4;
}
/* Setup global variables */
GLOBAL_DATA = (struct GlobalData*)malloc(sizeof(struct GlobalData));
GLOBAL_DATA->hdf = H5Fopen(filename, H5F_ACC_RDONLY, H5P_DEFAULT);
if (GLOBAL_DATA->hdf < 0) {
fprintf(stderr, "PLUGIN ERROR: Failed to open file %s\n", filename);
return -4;
}
int nx, ny, nbytes, nframes, info[1024], dummy;
float qx, qy;
plugin_get_header(&nx, &ny, &nbytes, &qx, &qy, &nframes, info, &dummy);
return 0;
}
void plugin_get_header(int *nx, int *ny, int *nbytes, float *qx, float *qy, int *number_of_frames,
int info[1024], int *error_flag) {
info[0] = 1; // Vendor [1:Dectris] // other values were not accepted by the host program!
info[1] = 0; // Version [Major]
info[2] = 1; // Version [Minor]
info[3] = 0; // Version [Patch]
info[4] = -1; // Version [timestamp]
if (GLOBAL_DATA == NULL) {
fprintf(stderr, "PLUGIN ERROR: plugin_get_header called before plugin_open\n");
*error_flag = -2;
return;
}
hid_t hdf = GLOBAL_DATA->hdf;
/* Image depth*/
int depth = -1;
H5LTread_dataset_int(hdf, "/entry/instrument/detector/bit_depth_image", &depth);
if (depth > 0) {
fprintf(stderr, "PLUGIN INFO: /entry/instrument/detector/bit_depth_image = %d\n", depth);
} else {
fprintf(stderr, "PLUGIN WARNING: /entry/instrument/detector/bit_depth_image is not avaialble. We assume 16 bit.\n");
depth = 16;
}
GLOBAL_DATA->error_val = (unsigned int)((1ULL << depth) - 1);
/* Pixel size */
H5LTread_dataset_float(hdf, "/entry/instrument/detector/x_pixel_size", &GLOBAL_DATA->xpixelSize);
H5LTread_dataset_float(hdf, "/entry/instrument/detector/y_pixel_size", &GLOBAL_DATA->ypixelSize);
/* Image size */
int xpixels = -1, ypixels = -1;
H5LTread_dataset_int(hdf, "/entry/instrument/detector/detectorSpecific/x_pixels_in_detector", &xpixels);
H5LTread_dataset_int(hdf, "/entry/instrument/detector/detectorSpecific/y_pixels_in_detector", &ypixels);
GLOBAL_DATA->dimx = xpixels;
GLOBAL_DATA->dimy = ypixels;
/* Pixel mask */
GLOBAL_DATA->minus1 = (signed int*)malloc(sizeof(signed int) * xpixels * ypixels);
GLOBAL_DATA->minus2 = (signed int*)malloc(sizeof(signed int) * xpixels * ypixels);
signed int* pixel_mask = (signed int*)malloc(sizeof(signed int) * xpixels * ypixels);
GLOBAL_DATA->Nminus1 = 0;
GLOBAL_DATA->Nminus2 = 0;
pixel_mask[0] = INVALID;
H5LTread_dataset_int(hdf, "/entry/instrument/detector/detectorSpecific/pixel_mask", pixel_mask);
if (pixel_mask[0] == INVALID) {
fprintf(stderr, "PLUGIN WARNING: failed to read the pixel mask from /entry/instrument/detector/detectorSpecific/pixel_mask.\n");
GLOBAL_DATA->Nminus1 = -1;
} else {
for (int i =0, ilim = xpixels * ypixels; i < ilim; i++) {
if (pixel_mask[i] == 1) GLOBAL_DATA->minus1[GLOBAL_DATA->Nminus1++] = i;
else if (pixel_mask[i] > 1) GLOBAL_DATA->minus2[GLOBAL_DATA->Nminus2++] = i;
}
}
fprintf(stderr, "PLUGIN: #pixels masked to -1 = %d, to -2 = %d.\n", GLOBAL_DATA->Nminus1, GLOBAL_DATA->Nminus2++);
free(pixel_mask);
/* Number of images */
int nimages = -1;
H5LTread_dataset_int(hdf, "/entry/instrument/detector/detectorSpecific/nimages", &nimages);
if (nimages < 0) {
fprintf(stderr, "PLUGIN ERROR: failed to read the nimages.\n");
*error_flag = -4;
return;
}
/* Number of triggers */
int ntrigger = -1;
H5LTread_dataset_int(hdf, "/entry/instrument/detector/detectorSpecific/ntrigger", &ntrigger);
if (ntrigger < 0) {
fprintf(stderr, "PLUGIN ERROR: failed to read the ntrigger.\n");
*error_flag = -4;
return;
}
/* Make sure /entry/data is present */
hid_t entry, group;
entry = H5Gopen2(hdf, "/entry", H5P_DEFAULT);
if (entry < 0) {
fprintf(stderr, "PLUGIN ERROR: /entry does not exist!\n");
*error_flag = -4;
return;
}
GLOBAL_DATA->group = entry;
group = H5Gopen2(entry, "data", H5P_DEFAULT);
if (group < 0) {
fprintf(stderr, "PLUGIN WARNING: /entry/data does not exist!\n");
} else {
GLOBAL_DATA->group = group;
}
/* Is it 0-indexed? */
GLOBAL_DATA->block_start = 1;
if (H5LTfind_dataset(group, "data_000000")) {
fprintf(stderr, "PLUGIN INFO: This dataset starts from data_000000.\n");
GLOBAL_DATA->block_start = 0;
} else {
fprintf(stderr, "PLUGIN INFO: This dataset starts from data_000001.\n");
}
// Open the first data block to get the number of frames in a block
char data_name[20] = {};
hid_t data, dataspace;
GLOBAL_DATA->nframesPerDataset = 0;
snprintf(data_name, 20, "data_%06d", GLOBAL_DATA->block_start);
data = H5Dopen2(group, data_name, H5P_DEFAULT);
dataspace = H5Dget_space(data);
if (data < 0) {
fprintf(stderr, "PLUGIN ERROR: failed to open /entry/%s\n", data_name);
*error_flag = -4;
return;
}
if (H5Sget_simple_extent_ndims(dataspace) != 3) {
fprintf(stderr, "PLUGIN ERROR: Dimension of /entry/%s is not 3!\n", data_name);
*error_flag = -4;
return;
}
hsize_t dims[3];
H5Sget_simple_extent_dims(dataspace, dims, NULL);
GLOBAL_DATA->nframesPerDataset = dims[0];
fprintf(stderr, "PLUGIN INFO: The number of images per data block is %d.\n", GLOBAL_DATA->nframesPerDataset);
H5Sclose(dataspace);
H5Dclose(data);
*nx = GLOBAL_DATA->dimx;
*ny = GLOBAL_DATA->dimy;
*nbytes = GLOBAL_DATA->dimx * GLOBAL_DATA->dimy * sizeof(int);
// TODO: This actually depends on the depth, but an INTEGER array is supplied to plugin_get_data.
// So this is OK?
*qx = GLOBAL_DATA->xpixelSize;
*qy = GLOBAL_DATA->ypixelSize;
*number_of_frames = (int)(nimages * ntrigger);
*error_flag = 0;
return;
}
int prev_block_number = -1;
hid_t data = NULL, dataspace = NULL, memspace=NULL;
int get_data(int myid, int frame_number, int *mapped_buf) {
int ret;
int xpixels = GLOBAL_DATA->dimx, ypixels = GLOBAL_DATA->dimy;
int block_number = GLOBAL_DATA->block_start + (frame_number - 1) / GLOBAL_DATA->nframesPerDataset;
int frame_in_block = (frame_number - 1) % GLOBAL_DATA->nframesPerDataset;
char data_name[20] = {};
if (prev_block_number != block_number) {
prev_block_number = block_number;
if (data != NULL) H5Dclose(data);
if (dataspace != NULL) H5Sclose(dataspace);
snprintf(data_name, 20, "data_%06d", block_number);
data = H5Dopen2(GLOBAL_DATA->group, data_name, H5P_DEFAULT);
dataspace = H5Dget_space(data);
if (data < 0) {
fprintf(stderr, "failed to open /entry/%s\n", data_name);
return -4;
}
if (H5Sget_simple_extent_ndims(dataspace) != 3) {
fprintf(stderr, "Dimension of /entry/%s is not 3!\n", data_name);
return -4;
}
}
hsize_t offset_in[3] = {frame_in_block, 0, 0};
hsize_t offset_out[3] = {0, 0, 0};
hsize_t count[3] = {1, ypixels, xpixels};
/* Create memory space */
if (memspace == NULL) {
hsize_t dims[3];
H5Sget_simple_extent_dims(dataspace, dims, NULL);
memspace = H5Screate_simple(3, dims, NULL);
if (memspace < 0) {
fprintf(stderr, "PLUGIN CHILD %d for frame #%d: failed to create memspace.\n", myid, frame_number);
return -4;
}
ret = H5Sselect_hyperslab(memspace, H5S_SELECT_SET, offset_out, NULL,
count, NULL);
if (ret < 0) {
fprintf(stderr, "PLUGIN CHILD %d for frame #%d: select_hyperslab for memory failed.\n", myid, frame_number);
return -2;
}
}
/* Get the frame */
ret = H5Sselect_hyperslab(dataspace, H5S_SELECT_SET, offset_in, NULL, count, NULL);
if (ret < 0) {
fprintf(stderr, "PLUGIN CHILD %d for frame #%d: select_hyperslab for file failed.\n", myid, frame_number);
return -2;
}
ret = H5Dread(data, H5T_NATIVE_UINT, memspace, dataspace, H5P_DEFAULT, mapped_buf);
if (ret < 0) {
fprintf(stderr, "PLUGIN CHILD %d for frame #%d: H5Dread for image failed.\n", myid, frame_number);
return -2;
}
int error_val = GLOBAL_DATA->error_val;
if (GLOBAL_DATA->Nminus1 < 0) {// pixel mask is not available
for (int i = 0, ilim = xpixels * ypixels; i < ilim; i++) {
if (mapped_buf[i] == error_val) mapped_buf[i] = -1;
}
} else { // pixel mask is available
for (int i = 0, ilim = GLOBAL_DATA->Nminus1; i < ilim; i++) {
mapped_buf[GLOBAL_DATA->minus1[i]] = -1;
}
for (int i = 0, ilim = GLOBAL_DATA->Nminus2; i < ilim; i++) {
mapped_buf[GLOBAL_DATA->minus2[i]] = -1;
}
}
return 0;
}
void usr1_handler(int dummy) {
// don't care open handlers and memories; we are going to die!
exit(0);
}
int main(int argc, char **argv) {
if (argc != 4) {
fprintf(stderr, "PLUGIN: This program should not be called from the command line.\n");
return -1;
}
int myid = atoi(argv[3]);
fprintf(stderr, "PLUGIN CHILD %d started for %s with shared memory %s.\n", myid, argv[1], argv[2]);
int failed = 0;
if (open_file(argv[1]) < 0) {
failed = 1;
}
int child_shm_fd = shm_open(argv[2], O_RDWR, 0);
if (child_shm_fd < 0) {
fprintf(stderr, "PLUGIN CHILD %d: Failed to open shared memory %s.\n", myid, argv[2]);
failed = 1;
} else {
GLOBAL_DATA->mapped_buf = mmap(0, sizeof(unsigned int) * GLOBAL_DATA->dimx * GLOBAL_DATA->dimy,
PROT_READ | PROT_WRITE, MAP_SHARED, child_shm_fd, 0);
if (GLOBAL_DATA->mapped_buf == NULL) {
fprintf(stderr, "PLUGIN CHILD %d: Failed to setup memory mapping.\n", myid);
failed = 1;
}
}
if (failed != 0) {
fprintf(stderr, "PLUGIN CHILD %d: Failed to start.\n", myid);
exit(-1);
// TODO: This kills the host program by 'broken pipe'. Should look for more 'gentle' way.
}
// Some programs do not call plugin_close :-<
#ifdef HAVE_SYS_PRCTL_H
signal(SIGUSR1, usr1_handler);
prctl(PR_SET_PDEATHSIG, SIGUSR1); // TODO: this is not supported on Mac OS.
#endif
int frame_num;
while (1) {
/* receive command from the parent */
if (read(0, &frame_num, sizeof(int)) < 0) {
fprintf(stderr, "PLUGIN CHILD %d ERROR: cannot read from parent.\n", myid);
// we cannot do anything but crash!
}
if (frame_num == INVALID) break;
/* do the work */
// fprintf(stderr, "PLUGIN CHILD %d: got request for frame #%d.\n", myid, frame_num);
int retval = get_data(myid, frame_num, GLOBAL_DATA->mapped_buf);
/* send back the result */
if (write(1, &retval, sizeof(int)) < 0) {
fprintf(stderr, "PLUGIN CHILD %d ERROR: cannot write to parent.\n", myid);
}
// fprintf(stderr, "PLUGIN CHILD %d: processed frame #%d with retval %d.\n", myid, frame_num, retval);
}
munmap(GLOBAL_DATA->mapped_buf, sizeof(unsigned int) * GLOBAL_DATA->dimx * GLOBAL_DATA->dimy);
shm_unlink(argv[2]);
free(GLOBAL_DATA -> minus1);
free(GLOBAL_DATA -> minus2);
fprintf(stderr, "PLUGIN CHILD %d: finished.\n", myid);
exit(-1);
}