aboutsummaryrefslogtreecommitdiff
path: root/src/dirax.c
blob: b1d421e52a856127dada3d188381d1aa79121c88 (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
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
/*
 * dirax.c
 *
 * Invoke the DirAx auto-indexing program
 * also: handle DirAx input files
 *
 * (c) 2007-2009 Thomas White <taw27@cam.ac.uk>
 *
 *  dtr - Diffraction Tomography Reconstruction
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <glib.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <pty.h>
#include <unistd.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <assert.h>
#include <sys/ioctl.h>
#include <termio.h>
#include <sgtty.h>

#include "control.h"
#include "reflections.h"
#include "utils.h"
#include "basis.h"
#include "displaywindow.h"
#include "reproject.h"

typedef enum {
	DIRAX_INPUT_NONE,
	DIRAX_INPUT_LINE,
	DIRAX_INPUT_PROMPT
} DirAxInputType;

static void dirax_parseline(const char *line, ControlContext *ctx)
{
	int i, rf;
	char *copy;

	copy = strdup(line);
	for ( i=0; i<strlen(copy); i++ ) {
		if ( copy[i] == '\r' ) copy[i]='r';
		if ( copy[i] == '\n' ) copy[i]='\0';
	}
	printf("DX: DirAx: %s\n", copy);
	free(copy);

	if ( strstr(line, "reflections from file") ) {
		displaywindow_error("DirAx can't understand this data.",
								ctx->dw);
		return;
	}

	/* Is this the first line of a unit cell specification? */
	rf = 0; i = 0;
	while ( (i<strlen(line)) && ((line[i] == 'R')
				|| (line[i] == 'D') || (line[i] == ' ')) ) {
		if ( line[i] == 'R' ) rf = 1;
		if ( (line[i] == 'D') && rf ) {
			ctx->dirax_read_cell = 1;
			if ( ctx->cell ) {
				free(ctx->cell);
			}
			ctx->cell = malloc(sizeof(Basis));
			ctx->cell->a.x = 0.0;  ctx->cell->a.y = 0.0;
						ctx->cell->a.z = 0.0;
			ctx->cell->b.x = 0.0;  ctx->cell->b.y = 0.0;
						ctx->cell->b.z = 0.0;
			ctx->cell->c.x = 0.0;  ctx->cell->c.y = 0.0;
						ctx->cell->c.z = 0.0;
			return;
		}
		i++;
	}

	/* Parse unit cell vectors as appropriate */
	if ( ctx->dirax_read_cell == 1 ) {
		/* First row of unit cell values */
		float x1, x2, x3;
		sscanf(line, "%f %f %f", &x1, &x2, &x3);
		ctx->cell->a.x = x1*1e10;  ctx->cell->b.x = x2*1e10;
						ctx->cell->c.x = x3*1e10;
		ctx->dirax_read_cell++;
		return;
	} else if ( ctx->dirax_read_cell == 2 ) {
		/* First row of unit cell values */
		float y1, y2, y3;
		sscanf(line, "%f %f %f", &y1, &y2, &y3);
		ctx->cell->a.y = y1*1e10;  ctx->cell->b.y = y2*1e10;
						ctx->cell->c.y = y3*1e10;
		ctx->dirax_read_cell++;
		return;
	} else if ( ctx->dirax_read_cell == 3 ) {
		/* First row of unit cell values */
		float z1, z2, z3;
		sscanf(line, "%f %f %f", &z1, &z2, &z3);
		ctx->cell->a.z = z1*1e10;  ctx->cell->b.z = z2*1e10;
						ctx->cell->c.z = z3*1e10;
		printf("DX: Read a reciprocal unit cell\n");
		displaywindow_update(ctx->dw);
		reproject_lattice_changed(ctx);
		ctx->dirax_read_cell = 0;
		return;
	}

	ctx->dirax_read_cell = 0;
}

static void dirax_sendline(const char *line, ControlContext *ctx)
{
	char *copy;
	int i;

	write(ctx->dirax_pty, line, strlen(line));

	copy = strdup(line);
	for ( i=0; i<strlen(copy); i++ ) {
		if ( copy[i] == '\r' ) copy[i]='\0';
		if ( copy[i] == '\n' ) copy[i]='\0';
	}
	printf("DX: Sent '%s'\n", copy);	/* No newline here */
	free(copy);
}

/* Send a "user" command to DirAx, failing if DirAx is not idle */
static void dirax_sendline_if_idle(const char *line, ControlContext *ctx)
{
	if ( ctx->dirax_step != 0 ) {
		printf("DX: DirAx not idle\n");
		return;
	}

	dirax_sendline(line, ctx);
}

static void dirax_send_next(ControlContext *ctx)
{
	switch ( ctx->dirax_step ) {

		case 1 : {
			dirax_sendline("\\echo off\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 2 : {
			dirax_sendline("read dtr.drx\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 3 : {
			dirax_sendline("dmax 10\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 4 : {
			dirax_sendline("indexfit 2\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 5 : {
			dirax_sendline("levelfit 200\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 6 : {
			dirax_sendline("go\n", ctx);
			ctx->dirax_step++;
			break;
		}

		case 7 : {
			dirax_sendline("cell\n", ctx);
			ctx->dirax_step++;
			break;
		}

		default: {
			ctx->dirax_step = 0;
			printf("DX: Prompt.  DirAx is idle\n");
		}

	}
}

static gboolean dirax_readable(GIOChannel *dirax, GIOCondition condition,
				ControlContext *ctx)
{
	int rval;

	rval = read(ctx->dirax_pty, ctx->dirax_rbuffer+ctx->dirax_rbufpos,
			ctx->dirax_rbuflen-ctx->dirax_rbufpos);

	if ( (rval == -1) || (rval == 0) ) {

		printf("DX: Lost connection to DirAx\n");
		waitpid(ctx->dirax_pid, NULL, 0);
		g_io_channel_shutdown(ctx->dirax, FALSE, NULL);
		ctx->dirax = NULL;
		displaywindow_update_dirax(ctx, ctx->dw);
		return FALSE;

	} else {

		int no_string = 0;

		ctx->dirax_rbufpos += rval;
		assert(ctx->dirax_rbufpos <= ctx->dirax_rbuflen);

		while ( (!no_string) && (ctx->dirax_rbufpos > 0) ) {

			int i;
			int block_ready = 0;
			DirAxInputType type = DIRAX_INPUT_NONE;

			/* See if there's a full line in the buffer yet */
			for ( i=0; i<ctx->dirax_rbufpos-1; i++ ) {
				/* Means the last value looked at is rbufpos-2 */

				/* Is there a prompt in the buffer? */
				if ( i+7 <= ctx->dirax_rbufpos ) {
					if ( (strncmp(ctx->dirax_rbuffer+i,
							"Dirax> ", 7) == 0)
					  || (strncmp(ctx->dirax_rbuffer+i,
					  		"PROMPT:", 7) == 0) ) {
						block_ready = 1;
						type = DIRAX_INPUT_PROMPT;
						break;
					}
				}

				if ( (ctx->dirax_rbuffer[i] == '\r')
				  && (ctx->dirax_rbuffer[i+1] == '\n') ) {
					block_ready = 1;
					type = DIRAX_INPUT_LINE;
					break;
				}

			}

			if ( block_ready ) {

				unsigned int new_rbuflen;
				unsigned int endbit_length;

				switch ( type ) {

					case DIRAX_INPUT_LINE : {

						char *block_buffer = NULL;

						block_buffer = malloc(i+1);
						memcpy(block_buffer,
							ctx->dirax_rbuffer, i);
						block_buffer[i] = '\0';

						if ( block_buffer[0] == '\r' ) {
							memmove(block_buffer,
							  block_buffer+1, i);
						}

						dirax_parseline(block_buffer,
									ctx);
						free(block_buffer);
						endbit_length = i+2;

						break;

					}

					case DIRAX_INPUT_PROMPT : {

						dirax_send_next(ctx);
						endbit_length = i+7;
						break;

					}

					default : {
						printf(
			"DX: Unrecognised input mode (this never happens!)\n");
						abort();
					}

				}

				/* Now the block's been parsed, it should be
				 * forgotten about */
				memmove(ctx->dirax_rbuffer,
					ctx->dirax_rbuffer + endbit_length,
					ctx->dirax_rbuflen - endbit_length);

				/* Subtract the number of bytes removed */
				ctx->dirax_rbufpos = ctx->dirax_rbufpos
								- endbit_length;
				new_rbuflen = ctx->dirax_rbuflen
								- endbit_length;
				if ( new_rbuflen == 0 ) {
					new_rbuflen = 256;
				}
				ctx->dirax_rbuffer = realloc(ctx->dirax_rbuffer,
								new_rbuflen);
				ctx->dirax_rbuflen = new_rbuflen;

			} else {

				if ( ctx->dirax_rbufpos==ctx->dirax_rbuflen ) {

					/* More buffer space is needed */
					ctx->dirax_rbuffer = realloc(
						ctx->dirax_rbuffer,
						ctx->dirax_rbuflen + 256);
					ctx->dirax_rbuflen = ctx->dirax_rbuflen
									+ 256;
					/* The new space gets used at the next
					 * read, shortly... */

				}
				no_string = 1;

			}

		}

	}

	return TRUE;
}

void dirax_stop(ControlContext *ctx)
{
	dirax_sendline_if_idle("end\n", ctx);
}

void dirax_rerun(ControlContext *ctx)
{
	dirax_sendline_if_idle("go\n", ctx);
	ctx->dirax_step = 7;
}

static void dirax_send_random_selection(ReflectionList *r, int n, FILE *fh)
{
	char *used;
	int i;

	used = malloc(n*sizeof(char));

	for ( i=0; i<n; i++ ) {
		used[i] = '-';
	}

	i = 0;
	while ( i < 1000 ) {

		Reflection *ref;
		int j;
		long long int ra;

		ra = ((long long int)random() * (long long int)n);
		ra /= RAND_MAX;
		if ( used[ra] == 'U' ) {
			continue;
		}


		/* Dig out the correct reflection. A little faffy
		 * because of the linked list */
		ref = r->reflections;
		for ( j=0; j<ra; j++ ) {
			ref = ref->next;
		}

		/* Limit resolution of reflections */
//		if (	( (ref->x/1e9)*(ref->x/1e9)
//			+ (ref->y/1e9)*(ref->y/1e9)
//			+ (ref->z/1e9)*(ref->z/1e9) ) > (20e9)*(20e9) )
//				continue;

		fprintf(fh, "%10f %10f %10f %8f\n",
					ref->x/1e10, ref->y/1e10,
					ref->z/1e10, ref->intensity);
		used[ra] = 'U';

		i++;

	}
}

void dirax_invoke(ControlContext *ctx)
{
	FILE *fh;
	Reflection *ref;
	unsigned int opts;
	int saved_stderr;
	int n;

	if ( ctx->dirax ) {
		dirax_rerun(ctx);
		return;
	}

	printf("DX: Starting DirAx...\n");

	fh = fopen("dtr.drx", "w");
	if ( !fh ) {
		printf("DX: Couldn't open temporary file dtr.drx\n");
		return;
	}
	fprintf(fh, "%f\n", 0.5);  /* Lie about the wavelength.  */

	n = ctx->reflectionlist->n_reflections;
	printf("DX: There are %i reflections - ", n);
	if ( n > 1000 ) {
		printf("sending a random selection to DirAx\n");
		dirax_send_random_selection(ctx->reflectionlist, n, fh);
	} else {
		printf("sending them all to DirAx\n");
		ref = ctx->reflectionlist->reflections;
		while ( ref ) {
			fprintf(fh, "%10f %10f %10f %8f\n",
				ref->x/1e10, ref->y/1e10,
				ref->z/1e10, ref->intensity);
			ref = ref->next;
		}
	}
	fclose(fh);

	saved_stderr = dup(STDERR_FILENO);
	ctx->dirax_pid = forkpty(&ctx->dirax_pty, NULL, NULL, NULL);
	if ( ctx->dirax_pid == -1 ) {
		printf("DX: Failed to fork.\n");
		return;
	}
	if ( ctx->dirax_pid == 0 ) {

		/* Child process: invoke DirAx */
		struct termios t;

		/* Turn echo off */
		tcgetattr(STDIN_FILENO, &t);
		t.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
		tcsetattr(STDIN_FILENO, TCSANOW, &t);

		/* Reconnect stderr */
		dup2(saved_stderr, STDERR_FILENO);

		execlp("dirax", "", (char *)NULL);
		printf("(from the Other Side) Failed to invoke DirAx.\n");
		_exit(0);

	}

	ctx->dirax_rbuffer = malloc(256);
	ctx->dirax_rbuflen = 256;
	ctx->dirax_rbufpos = 0;

	/* Set non-blocking */
	opts = fcntl(ctx->dirax_pty, F_GETFL);
	fcntl(ctx->dirax_pty, F_SETFL, opts | O_NONBLOCK);

	ctx->dirax_step = 1;	/* This starts the "initialisation" procedure */
	ctx->dirax_read_cell = 0;
	ctx->dirax = g_io_channel_unix_new(ctx->dirax_pty);
	g_io_add_watch(ctx->dirax, G_IO_IN | G_IO_HUP, (GIOFunc)dirax_readable,
									ctx);

	displaywindow_update_dirax(ctx, ctx->dw);

	return;
}

/* Despite being part of the same module, this has very little to do with
 * invoking DirAx */
ReflectionList *dirax_load(const char *filename)
{
	FILE *fh;
	char line[256];
	ReflectionList *list;
	int lambda_set = 0;

	fh = fopen(filename, "r");
	if ( !fh ) {
		printf("Couldn't open file '%s'\n", filename);
		return 0;
	}

	list = reflectionlist_new();

	while ( !feof(fh) ) {

		size_t ptr;
		float lambda, theta, chib, phib;

		fgets(line, 255, fh);
		ptr = skipspace(line);
		if ( line[ptr] == '!' ) continue;
		if ( line[ptr] == '\n' ) continue;
		if ( line[ptr] == '\r' ) continue;
		if ( sscanf(line+ptr, "%f %f %f\n", &theta, &phib,
								&chib) == 3 ) {

			double s, x, y, z;
			float blah, intensity;

			/* Try to find an intensity value. Use dummy value
			 * if it fails */
			if ( sscanf(line+ptr, "%f %f %f %f\n", &blah, &blah,
					&blah, &intensity) != 4 ) {
				intensity = 1.0;
			}

			if ( !lambda_set ) {
				printf("DX: Wavelength not specified\n");
				continue;
			}

			chib = deg2rad(chib);
			phib = deg2rad(phib);
			theta = deg2rad(theta);
			s = 2*(sin(theta)/lambda);
			x = -s*cos(chib)*sin(phib);
			y = +s*cos(chib)*cos(phib);
			z = +s*sin(chib);
			reflection_add(list, x, y, z, 1.0, REFLECTION_NORMAL);

			continue;

		}
		if ( sscanf(line+ptr, "%f\n", &lambda) == 1 ) {
			if ( lambda_set ) {
				printf("DX: Warning: Found something which "
					"looks like a second wavelength\n");
			}
			lambda /= 1e10; /* Convert from A to m */
			lambda_set = 1;
		}

	}

	fclose(fh);

	return list;

}

int dirax_is_drxfile(const char *filename)
{
	FILE *fh;
	float lambda;
	char line[256];

	fh = fopen(filename, "r");
	if ( !fh ) {
		printf("Couldn't open file '%s'\n", filename);
		return 0;
	}

	while ( !feof(fh) ) {

		size_t ptr;

		fgets(line, 255, fh);
		ptr = skipspace(line);
		if ( line[ptr] == '!' ) continue;
		if ( line[ptr] == '\n' ) continue;
		if ( line[ptr] == '\r' ) continue;
		fscanf(fh, "%f\n", &lambda);
		fclose(fh);
		if ( lambda > 0.5 ) {
			return 1;
		} else {
			return 0;
		}

	}

	fclose(fh);

	return 0;
}