-
Notifications
You must be signed in to change notification settings - Fork 13
/
libics_util.c
601 lines (532 loc) · 17.9 KB
/
libics_util.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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
/*
* libics: Image Cytometry Standard file reading and writing.
*
* Copyright 2015-2019:
* Scientific Volume Imaging Holding B.V.
* Hilversum, The Netherlands.
* https://www.svi.nl
*
* Copyright (C) 2000-2013 Cris Luengo and others
*
* Large chunks of this library written by
* Bert Gijsbers
* Dr. Hans T.M. van der Voort
* And also Damir Sudar, Geert van Kempen, Jan Jitze Krol,
* Chiel Baarslag and Fons Laan.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* FILE : libics_util.c
*
* The following library functions are contained in this file:
*
* IcsGetLibVersion()
* IcsGetIcsName()
* IcsGetIdsName()
* IcsInit()
* IcsGetDataTypeSize()
* IcsGetPropsDataType()
* IcsGetDataTypeProps()
*
* The following internal functions are contained in this file:
*
* IcsStrCpy()
* IcsAppendChar()
* IcsGetFileName()
* IcsExtensionFind()
* IcsGetBytesPerSample()
* IcsOpenIcs()
*/
#include <stdlib.h>
#include <string.h>
#include "libics_intern.h"
#ifdef _WIN32
#include <windows.h>
#define strcasecmp _stricmp
#else
#include <strings.h>
#endif
const char ICSEXT[] = ".ics";
const char IDSEXT[] = ".ids";
const char IDSEXT_Z[] = ".ids.Z";
const char IDSEXT_GZ[] = ".ids.gz";
/* This is a wrapper for the fopen function, on UNIX it calls fopen, on Windows
it uses _wfopen to support UTF-8 filenames. */
FILE* IcsFOpen(const char *path,
const char *mode)
{
#ifdef _WIN32
wchar_t *wpath = NULL, wmode[8];
int n = MultiByteToWideChar(CP_UTF8, 0, path, -1, wpath, 0);
FILE *result = NULL;
wpath =(wchar_t*)malloc(n * sizeof(wchar_t));
if (!wpath) return NULL;
if (!MultiByteToWideChar(CP_UTF8, 0, path, -1, wpath, n)) goto exit;
if (!MultiByteToWideChar(CP_UTF8, 0, mode, -1, wmode, 8)) goto exit;
result = _wfopen(wpath, wmode);
exit:
if (wpath) {
free(wpath);
}
return result;
#else
return fopen(path, mode);
#endif
}
/* This function can be used to check for the correct library version: if
(strcmp (ICSLIB_VERSION, IcsGetLibVersion ()) != 0) return ERRORCODE; */
const char *IcsGetLibVersion(void)
{
return ICSLIB_VERSION;
}
/* Parse a number string and return the value in a size_t. */
size_t IcsStrToSize(const char *str)
{
unsigned long ulsize;
size_t size;
ulsize = strtoul(str, NULL, 10);
size =(size_t) ulsize;
return size;
}
/* A safe strcpy. len is the number of characters in dest. Up to len-1
characters copied. */
void IcsStrCpy(char *dest,
const char *src,
int len)
{
if (dest != src) {
size_t nchar = strlen(src);
nchar = (nchar > (size_t)len-1) ? (size_t)len-1 : nchar;
memcpy(dest, src, nchar);
dest[nchar] = 0;
}
}
/* Append a character to a string */
void IcsAppendChar(char *line,
char ch)
{
size_t len = strlen(line);
line[len] = ch;
line[len+1] = '\0';
}
/* Find the start of the filename */
static char *IcsFileNameFind(const char *str)
{
const char *begin;
#ifdef WIN32
/* For Windows we check both kinds of path separators */
begin = strrchr(str, '\\');
if (begin == NULL) {
begin = strrchr(str, '/');
}
#else
begin = strrchr(str, '/');
#endif
if (begin == NULL) {
begin = str;
}
else {
begin++;
}
return (char *)begin;
}
/* Find the start of the '.ics' or '.ids' extension. Also handle filenames
ending in '.ids.Z' or '.ids.gz'. All character comparisons must be case
insensitive. Return a pointer to the start of the extension or NULL if no
extension could be found. */
char *IcsExtensionFind(const char *str)
{
size_t len;
const char *ext;
len = strlen(str);
ext = str + len - (sizeof(ICSEXT) - 1);
if (ext >= str && strcasecmp(ext, ICSEXT) == 0) {
return (char *)ext;
}
ext = str + len - (sizeof(IDSEXT) - 1);
if (ext >= str && strcasecmp(ext, IDSEXT) == 0) {
return (char *)ext;
}
ext = str + len - (sizeof(IDSEXT_Z) - 1);
if (ext >= str && strcasecmp(ext, IDSEXT_Z) == 0) {
return (char *)ext;
}
ext = str + len - (sizeof(IDSEXT_GZ) - 1);
if (ext >= str && strcasecmp(ext, IDSEXT_GZ) == 0) {
return (char *)ext;
}
return NULL;
}
/* Strip the path from everything but the file name(including extension). */
void IcsGetFileName(char *dest,
const char *src)
{
const char *begin;
char *end;
begin = IcsFileNameFind(src);
IcsStrCpy(dest, begin, ICS_MAXPATHLEN);
end = IcsExtensionFind(dest);
if (end != NULL) {
*end = '\0';
}
}
/* Make a filename ending in '.ics' from the given filename. If the filename
ends in '.IDS' then make this '.ICS'. Also accept filenames ending in
'.ids.Z' and '.ids.gz', but strip the compression extension. */
char *IcsGetIcsName(char *dest,
const char *src,
int forceName)
{
char *end;
IcsStrCpy(dest, src, ICS_MAXPATHLEN);
end = IcsExtensionFind(dest);
if (end != NULL) {
if (strcasecmp(end, ICSEXT) == 0) {
return dest;
} else {
/* Keep same case. */
if (end[2] == 'd') {
end[2] = 'c';
end[4] = '\0';
return dest;
} else if (end[2] == 'D') {
end[2] = 'C';
end[4] = '\0';
return dest;
} else { /* does not happen! */
if (!forceName) {
*end = '\0';
}
}
}
}
if (!forceName && strlen(dest) + strlen(ICSEXT) + 1 < ICS_MAXPATHLEN) {
strcat(dest, ICSEXT);
}
return dest;
}
/* Make a filename ending in '.ids' from the given filename. If the filename
ends in '.ICS' then make this '.IDS'. Also accept filenames ending in
'.ids.Z' and '.ids.gz', but strip the compression extension. */
char *IcsGetIdsName(char *dest,
const char *src)
{
char *end;
IcsStrCpy(dest, src, ICS_MAXPATHLEN);
end = IcsExtensionFind(dest);
if (end != NULL) {
if (strcasecmp(end, ICSEXT) == 0) {
/* Keep same case. */
if (end[2] == 'c') {
end[2] = 'd';
return dest;
} else if (end[2] == 'C') {
end[2] = 'D';
return dest;
} else {
*end = '\0';
}
} else {
end[4] = '\0';
return dest;
}
}
if (strlen(dest) + strlen(IDSEXT) + 1 < ICS_MAXPATHLEN) {
strcat(dest, IDSEXT);
}
return dest;
}
/* Open an .ics file, even if the name given end in .ids. */
Ics_Error IcsOpenIcs(FILE **fpp,
char *filename,
int forceName)
{
ICSINIT;
FILE* fp;
char FileName[ICS_MAXPATHLEN];
IcsGetIcsName(FileName, filename, forceName);
fp = IcsFOpen(FileName, "rb");
if (fp == NULL) return IcsErr_FOpenIcs;
*fpp = fp;
strcpy(filename, FileName);
return error;
}
/* Initialize the Ics_Header structure. */
void IcsInit(Ics_Header *icsStruct)
{
int i, j;
icsStruct->version = 2; /* We write an ICS v.2.0 as default */
icsStruct->fileMode = IcsFileMode_write;
icsStruct->data = NULL;
icsStruct->dataLength = 0;
icsStruct->dataStrides = NULL;
icsStruct->filename[0] = '\0';
icsStruct->dimensions = 0;
for (i = 0; i < ICS_MAXDIM; i++) {
icsStruct->dim[i].size = 0;
icsStruct->dim[i].origin = 0.0;
icsStruct->dim[i].scale = 1.0;
icsStruct->dim[i].order[0] = '\0';
icsStruct->dim[i].label[0] = '\0';
icsStruct->dim[i].unit[0] = '\0';
}
icsStruct->imel.dataType = Ics_unknown;
icsStruct->imel.sigBits = 0;
icsStruct->imel.origin = 0.0;
icsStruct->imel.scale = 1.0;
icsStruct->imel.unit[0] = '\0';
icsStruct->coord[0] = '\0';
icsStruct->compression = IcsCompr_uncompressed;
icsStruct->compLevel = 0;
icsStruct->history = NULL;
icsStruct->blockRead = NULL;
icsStruct->srcFile[0] = '\0';
icsStruct->srcOffset = 0;
for (i = 0; i < ICS_MAX_IMEL_SIZE; i++) {
icsStruct->byteOrder[i] = 0;
}
icsStruct->writeSensor = 0;
icsStruct->writeSensorStates = 0;
icsStruct->model[0]= '\0';
icsStruct->numAperture = 0.0;
icsStruct->numApertureState = IcsSensorState_default;
icsStruct->refrInxMedium = 0.0;
icsStruct->refrInxMediumState = IcsSensorState_default;
icsStruct->refrInxLensMedium = 0.0;
icsStruct->refrInxLensMediumState = IcsSensorState_default;
icsStruct->pinholeSpacing = 0.0;
icsStruct->pinholeSpacingState = IcsSensorState_default;
icsStruct->interfacePrimary = 0.0;
icsStruct->interfacePrimaryState = IcsSensorState_default;
icsStruct->interfaceSecondary = 0.0;
icsStruct->interfaceSecondaryState = IcsSensorState_default;
icsStruct->sensorChannels = 0;
icsStruct->sensorDetectors = 0;
for (i = 0; i < ICS_MAX_LAMBDA; i++) {
icsStruct->type[i][0] = '\0';
icsStruct->imagingDirection[i][0] = '\0';
icsStruct->imagingDirectionState[i] = IcsSensorState_default;
icsStruct->objectiveQuality[i] = 0;
icsStruct->objectiveQualityState[i] = IcsSensorState_default;
icsStruct->pinholeRadius[i] = 0.0;
icsStruct->pinholeRadiusState[i] = IcsSensorState_default;
icsStruct->illPinholeRadius[i] = 0.0;
icsStruct->illPinholeRadiusState[i] = IcsSensorState_default;
icsStruct->excitationBeamFill[i] = 0.0;
icsStruct->excitationBeamFillState[i] = IcsSensorState_default;
icsStruct->lambdaEx[i] = 0.0;
icsStruct->lambdaExState[i] = IcsSensorState_default;
icsStruct->lambdaEm[i] = 0.0;
icsStruct->lambdaEmState[i] = IcsSensorState_default;
icsStruct->exPhotonCnt[i] = 1;
icsStruct->exPhotonCntState[i] = IcsSensorState_default;
icsStruct->description[i][0] = '\0';
icsStruct->descriptionState[i] = IcsSensorState_default;
icsStruct->detectorMagn[i] = 1.0;
icsStruct->detectorMagnState[i] = IcsSensorState_default;
icsStruct->detectorPPU[i] = 1.0;
icsStruct->detectorPPUState[i] = IcsSensorState_default;
icsStruct->detectorBaseline[i] = 0.0;
icsStruct->detectorBaselineState[i] = IcsSensorState_default;
icsStruct->detectorLineAvgCnt[i] = 1.0;
icsStruct->detectorLineAvgCntState[i] = IcsSensorState_default;
icsStruct->detectorNoiseGain[i] = 1.0;
icsStruct->detectorNoiseGainState[i] = IcsSensorState_default;
/* The per detector parameters must be initialized for each
channel for each detector. */
for (j = 0; j < ICS_MAX_DETECT; j++) {
icsStruct->detectorOffset[i][j][0] = 0.0;
icsStruct->detectorOffset[i][j][1] = 0.0;
icsStruct->detectorOffset[i][j][2] = 0.0;
icsStruct->detectorSensitivity[i][j] = 1.0;
icsStruct->detectorRadius[i][j] = 0.0;
}
icsStruct->detectorScale[i] = 1.0;
icsStruct->detectorScaleState[i] = IcsSensorState_default;
icsStruct->detectorStretch[i] = 1.0;
icsStruct->detectorStretchState[i] = IcsSensorState_default;
icsStruct->detectorRot[i] = 0.0;
icsStruct->detectorRotState[i] = IcsSensorState_default;
icsStruct->detectorMirror[i][0] = 'N';
icsStruct->detectorMirror[i][1] = '\0';
icsStruct->detectorMirrorState[i] = IcsSensorState_default;
icsStruct->detectorModel[i][0] = '\0';
icsStruct->detectorModelState[i] = IcsSensorState_default;
icsStruct->detectorRedHist[i][0] = '\0';
icsStruct->detectorRedHistState[i] = IcsSensorState_default;
icsStruct->detectorOffsetState[i] = IcsSensorState_default;
icsStruct->detectorSensitivityState[i] = IcsSensorState_default;
icsStruct->detectorRadiusState[i] = IcsSensorState_default;
icsStruct->stedDepletionMode[i][0] = '\0';
icsStruct->stedDepletionModeState[i] = IcsSensorState_default;
icsStruct->stedLambda[i] = 0.0;
icsStruct->stedLambdaState[i] = IcsSensorState_default;
icsStruct->stedSatFactor[i] = 0.0;
icsStruct->stedSatFactorState[i] = IcsSensorState_default;
icsStruct->stedImmFraction[i] = 0.0;
icsStruct->stedImmFractionState[i] = IcsSensorState_default;
icsStruct->stedVPPM[i] = 0.0;
icsStruct->stedVPPMState[i] = IcsSensorState_default;
icsStruct->spimExcType[i][0] = '\0';
icsStruct->spimExcTypeState[i] = IcsSensorState_default;
icsStruct->spimPlaneNA[i] = 0.0;
icsStruct->spimPlaneNAState[i] = IcsSensorState_default;
icsStruct->spimFillFactor[i] = 0.0;
icsStruct->spimFillFactorState[i] = IcsSensorState_default;
icsStruct->spimPlaneGaussWidth[i] = 0.0;
icsStruct->spimPlaneGaussWidthState[i] = IcsSensorState_default;
icsStruct->spimPlanePropDir[i][0] = 0.0;
icsStruct->spimPlanePropDir[i][1] = 0.0;
icsStruct->spimPlanePropDir[i][2] = 0.0;
icsStruct->spimPlanePropDirState[i] = IcsSensorState_default;
icsStruct->spimPlaneCenterOff[i] = 0.0;
icsStruct->spimPlaneCenterOffState[i] = IcsSensorState_default;
icsStruct->spimPlaneFocusOff[i] = 0.0;
icsStruct->spimPlaneFocusOffState[i] = IcsSensorState_default;
icsStruct->scatterModel[i][0] = '\0';
icsStruct->scatterModelState[i] = IcsSensorState_default;
icsStruct->scatterFreePath[i] = 0.0;
icsStruct->scatterFreePathState[i] = IcsSensorState_default;
icsStruct->scatterRelContrib[i] = 0.0;
icsStruct->scatterRelContribState[i] = IcsSensorState_default;
icsStruct->scatterBlurring[i] = 0.0;
icsStruct->scatterBlurringState[i] = IcsSensorState_default;
}
icsStruct->scilType[0] = '\0';
}
/* Find the number of bytes per sample. */
int IcsGetBytesPerSample(const Ics_Header *icsStruct)
{
return (int)IcsGetDataTypeSize(icsStruct->imel.dataType);
}
/* Get the size of the Ics_DataType in bytes. */
size_t IcsGetDataTypeSize(Ics_DataType dataType)
{
size_t bytes;
switch (dataType) {
case Ics_uint8:
case Ics_sint8:
bytes = 1;
break;
case Ics_uint16:
case Ics_sint16:
bytes = 2;
break;
case Ics_uint32:
case Ics_sint32:
case Ics_real32:
bytes = 4;
break;
case Ics_uint64:
case Ics_sint64:
case Ics_real64:
case Ics_complex32:
bytes = 8;
break;
case Ics_complex64:
bytes = 16;
break;
default:
bytes = 0;
}
return bytes;
}
/* Get the properties of the Ics_DataType */
void IcsGetPropsDataType(Ics_DataType dataType,
Ics_Format *format,
int *sign,
size_t *bits)
{
*bits = IcsGetDataTypeSize(dataType) * 8;
*sign = 1;
switch (dataType) {
case Ics_uint8:
case Ics_uint16:
case Ics_uint32:
case Ics_uint64:
*sign = 0;
/* fallthrough */
case Ics_sint8:
case Ics_sint16:
case Ics_sint32:
case Ics_sint64:
*format = IcsForm_integer;
break;
case Ics_real32:
case Ics_real64:
*format = IcsForm_real;
break;
case Ics_complex32:
case Ics_complex64:
*format = IcsForm_complex;
break;
default:
*format = IcsForm_unknown;
}
}
/* Get the Ics_DataType belonging to the given properties */
void IcsGetDataTypeProps(Ics_DataType* dataType,
Ics_Format format,
int sign,
size_t bits)
{
switch (format) {
case IcsForm_integer:
switch (bits) {
case 8:
*dataType = sign ? Ics_sint8 : Ics_uint8;
break;
case 16:
*dataType = sign ? Ics_sint16 : Ics_uint16;
break;
case 32:
*dataType = sign ? Ics_sint32 : Ics_uint32;
break;
case 64:
*dataType = sign ? Ics_sint64 : Ics_uint64;
break;
default:
*dataType = Ics_unknown;
}
break;
case IcsForm_real:
switch (bits) {
case 32:
*dataType = Ics_real32;
break;
case 64:
*dataType = Ics_real64;
break;
default:
*dataType = Ics_unknown;
}
break;
case IcsForm_complex:
switch (bits) {
case 2*32:
*dataType = Ics_complex32;
break;
case 2*64:
*dataType = Ics_complex64;
break;
default:
*dataType = Ics_unknown;
}
break;
default:
*dataType = Ics_unknown;
}
}