aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/indexers/fromfile.c
blob: 1f3cc0da99049bfd70a2c2596748927e27ccab2b (plain)
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
/*
 * fromfile.c
 *
 * Perform indexing from solution file
 *
 * Copyright © 2020-2021 Max-Planck-Gesellschaft
 *                       zur Förderung der Wissenschaften e.V.
 * Copyright © 2021 Deutsches Elektronen-Synchrotron DESY,
 *                  a research centre of the Helmholtz Association.
 *
 * Authors:
 *   2020 Pascal Hogan-Lamarre <pascal.hogan.lamarre@mail.utoronto.ca>
 *   2021 Thomas White <thomas.white@desy.de>
 *
 * This file is part of CrystFEL.
 *
 * CrystFEL is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * CrystFEL 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with CrystFEL.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <assert.h>
#include <fenv.h>
#include <unistd.h>
#include <argp.h>

#include "image.h"
#include "uthash.h"

/** \file fromfile.h */

struct fromfile_options
{
	char *filename;
};

#define MAX_KEY_LEN (256)
#define MAX_CRYSTALS (16)

struct fromfile_key
{
	char filename[MAX_KEY_LEN];
	char event[MAX_KEY_LEN];
};


struct fromfile_entry
{
	struct fromfile_key key_field;
	Crystal *crystals[MAX_CRYSTALS];
	int n_crystals;
	UT_hash_handle hh;
};


struct fromfile_private
{
	struct fromfile_entry *sol_hash;
};


static int make_key(struct fromfile_key *key,
                    const char *filename, const char *ev)
{
	if ( (strlen(filename) > MAX_KEY_LEN) || (strlen(ev) > MAX_KEY_LEN) ) {
		ERROR("Filename/event too long: %s %s\n", filename, ev);
		return 1;
	}

	/* The entire structure is used as a key, not just the pre-terminator
	 * parts of the strings.  Therefore it must be initialised to zero */
	memset(key, 0, sizeof(struct fromfile_key));

	strcpy(key->filename, filename);
	strcpy(key->event, ev);

	return 0;
}


struct fromfile_entry *add_unique(struct fromfile_entry **phead,
                                  struct fromfile_key key)
{
	struct fromfile_entry *p;
	struct fromfile_entry *head = *phead;

	HASH_FIND(hh, head, &key, sizeof(struct fromfile_key), p);
	if ( p == NULL ) {

		struct fromfile_entry *item;

		item = malloc(sizeof(struct fromfile_entry));
		if ( item == NULL ) return NULL;

		item->n_crystals = 0;
		item->key_field = key;

		HASH_ADD(hh, head, key_field, sizeof(struct fromfile_key), item);
		*phead = head;
		return item;

	} else {
		return p;
	}
}


static int set_ua(UnitCell *cell, const char *ltsym)
{
	if ( strlen(ltsym) != 3 ) return 1;
	cell_set_unique_axis(cell, ltsym[2]);
	return 0;
}


static int set_lattice(UnitCell *cell, const char *ltsym)
{
	if ( (strlen(ltsym) != 2) && (strlen(ltsym) != 3) ) return 1;

	switch ( ltsym[1] ) {
		case 'P':
		case 'A':
		case 'B':
		case 'C':
		case 'I':
		case 'F':
		case 'R':
		case 'H':
		break;

		default:
		return 1;
	}
	cell_set_centering(cell, ltsym[1]);

	switch ( ltsym[0] ) {

		case 'a' :
		cell_set_lattice_type(cell, L_TRICLINIC);
		break;

		case 'm' :
		cell_set_lattice_type(cell, L_MONOCLINIC);
		return set_ua(cell, ltsym);

		case 'o' :
		cell_set_lattice_type(cell, L_ORTHORHOMBIC);
		break;

		case 't' :
		cell_set_lattice_type(cell, L_TETRAGONAL);
		return set_ua(cell, ltsym);

		case 'c' :
		cell_set_lattice_type(cell, L_CUBIC);
		break;

		case 'r' :
		cell_set_lattice_type(cell, L_RHOMBOHEDRAL);
		break;

		case 'h' :
		cell_set_lattice_type(cell, L_HEXAGONAL);
		return set_ua(cell, ltsym);

		default :
		return 1;
	}

	return 0;
}


void *fromfile_prepare(IndexingMethod *indm, struct fromfile_options *opts)
{
	FILE *fh;
	struct fromfile_private *dp;

	if ( opts->filename == NULL ) {
		ERROR("Please try again with --fromfile-input-file\n");
		return NULL;
	}

	/* If filename is not absolute, jump out of working directory */
	if ( opts->filename[0] == '/' ) {
		fh = fopen(opts->filename, "r");
	} else {
		char *prefixed_fn = malloc(4+strlen(opts->filename));
		if ( prefixed_fn == NULL ) return NULL;
		strcpy(prefixed_fn, "../");
		strcat(prefixed_fn, opts->filename);
		fh = fopen(prefixed_fn, "r");
		free(prefixed_fn);
	}

	if ( fh == NULL ) {
		ERROR("Couldn't find solution file '%s'\n", opts->filename);
		return NULL;
	}

	dp = malloc(sizeof(struct fromfile_private));
	if ( dp == NULL ) return NULL;

	dp->sol_hash = NULL;

	/* Read indexing solutions */
	do {

		char *rval;
		char line[1024];
		int i, n;
		char **bits;
		float vals[11];
		struct fromfile_key key;
		Crystal *cr;
		UnitCell *cell;
		size_t len;
		int n_sp;
		struct fromfile_entry *item = NULL;

		rval = fgets(line, 1023, fh);
		if ( rval == NULL ) break;

		chomp(line);
		notrail(line);

		len = strlen(line);
		n_sp = 0;
		for ( i=len-1; i>0; i-- ) {
			if ( line[i] == ' ' ) {
				n_sp++;
				if ( n_sp == 13 ) {
					line[i] = '\0';
					break;
				}
			}
		}

		n = assplode(line+i+1, " \t,", &bits, ASSPLODE_NONE);
		if ( n < 13 ) {
			ERROR("Badly formatted line '%s'\n", line);
			return NULL;
		}

		/* filename, event, asx, asy, asz, bsx, bsy, bsz, csx, csy, csz,
		 * det_shift_x, det_shift_y, latticetype+centering */
		for ( i=1; i<12; i++ ) {
			if (sscanf(bits[i], "%f", &vals[i-1]) != 1)
			{
				ERROR("Invalid value for number %i\n", i);
				return NULL;
			}
		}

		if ( make_key(&key, line, bits[0]) ) {
			ERROR("Failed to make key for %s %s\n",
			      line, bits[0]);
			continue;
		}

		item = add_unique(&dp->sol_hash, key);
		if ( item == NULL ) {
			ERROR("Failed to add/find entry for %s %s\n",
			      line, bits[0]);
			continue;
		}

		if ( item->n_crystals == MAX_CRYSTALS ) {

			ERROR("Too many crystals for %s %s\n", line, bits[0]);

		} else {

			cr = crystal_new();

			/* mm -> m */
			crystal_set_det_shift(cr, vals[9]*1e-3, vals[10]*1e-3);

			cell = cell_new();
			cell_set_reciprocal(cell, vals[0]*1e9, vals[1]*1e9, vals[2]*1e9,
			                          vals[3]*1e9, vals[4]*1e9, vals[5]*1e9,
			                          vals[6]*1e9, vals[7]*1e9, vals[8]*1e9);
			if ( set_lattice(cell, bits[12]) ) {
				ERROR("Invalid lattice type '%s'\n", bits[12]);
			} else {
				crystal_set_cell(cr, cell);
				item->crystals[item->n_crystals++] = cr;
			}

		}

		for ( i=0; i<n; i++ ) free(bits[i]);
		free(bits);

	} while ( 1 );

	fclose(fh);

	STATUS("Read %i crystals from %s\n",
	       HASH_CNT(hh, dp->sol_hash), opts->filename);

	return dp;
}


int fromfile_index(struct image *image, void *mpriv)
{
	struct fromfile_entry *p;
	struct fromfile_private *dp = mpriv;
	struct fromfile_key key;
	int i;

	make_key(&key, image->filename, image->ev);

	HASH_FIND(hh, dp->sol_hash, &key, sizeof(struct fromfile_key), p);
	if ( p == NULL ) {
		STATUS("WARNING: No solution for %s %s\n",
		       image->filename, image->ev);
		return 0;
	}

	for ( i=0; i<p->n_crystals; i++ ) {
		Crystal *cr;
		cr = crystal_copy_deep(p->crystals[i]);
		image_add_crystal(image, cr);
	}

	return p->n_crystals;
}


void fromfile_cleanup(void *mpriv)
{
	struct fromfile_private *dp = mpriv;
	struct fromfile_entry *item, *tmp;

	HASH_ITER(hh, dp->sol_hash, item, tmp) {
		int i;
		HASH_DEL(dp->sol_hash, item);
		for ( i=0; i<item->n_crystals; i++ ) {
			Crystal *cr = item->crystals[i];
			cell_free(crystal_get_cell(cr));
			crystal_free(cr);
		}
	}

	free(dp);
}


static void fromfile_show_help()
{
	printf("Parameters for 'fromfile' indexing:\n"
"     --fromfile-input-file\n"
"                           Filename of indexing solution file\n"
);
}


int fromfile_default_options(FromFileOptions **opts_ptr)
{
	FromFileOptions *opts;
	opts = malloc(sizeof(struct fromfile_options));
	if ( opts == NULL ) return ENOMEM;
	opts->filename = NULL;
	*opts_ptr = opts;
	return 0;
}


static error_t fromfile_parse_arg(int key, char *arg,
                                 struct argp_state *state)
{
	struct fromfile_options **opts_ptr = state->input;
	int r;

	switch ( key ) {

		case ARGP_KEY_INIT :
		r = fromfile_default_options(opts_ptr);
		if ( r ) return r;
		break;

		case 1 :
		fromfile_show_help();
		return EINVAL;

		case 2 :
		(*opts_ptr)->filename = strdup(arg);
		break;

		default :
		return ARGP_ERR_UNKNOWN;

	}

	return 0;
}


static struct argp_option fromfile_options[] = {

	{"help-fromfile", 1, NULL, OPTION_NO_USAGE,
	 "Show options for 'from file' indexing", 99},

	{"fromfile-input-file", 2, "filename", OPTION_HIDDEN, NULL},
	{0}
};


struct argp fromfile_argp = { fromfile_options, fromfile_parse_arg,
                              NULL, NULL, NULL, NULL, NULL };