-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvtfplugin.c
1356 lines (1209 loc) · 36.7 KB
/
vtfplugin.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
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* VTF plugin by Olaf Lenz <[email protected]> and Henri Menke */
/* $Id: vtfplugin.c,v 1.13 2009/05/18 05:01:56 johns Exp $ */
/*
VMD file reader plugin for:
- VTF structure format (VSF)
- VTF coordinate format (VCF)
- VTF trajectory format (VTF)
This code has two main entry points. The functions used in
VMDPLUGIN_init() are the entry points for the VMD plugin API, while
the function vtf_parse_userdata is the entry point when the plugin is
called from the Tcl module "vtftools.tcl" to allow reading in userdata
into Tcl data structures.
*/
#ifdef _MSC_VER
/* Turn off annoying Windows warnings. */
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_DEPRECATE
#endif
#include <molfile_plugin.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>
#ifdef _USE_TCL
#include <tcl.h>
#endif
#ifdef _USE_ZLIB
#include <zlib.h>
#define VTFFILE gzFile
#define fopen gzopen
#define feof gzeof
#define fgets(buf,size,file) gzgets(file,buf,size)
#define fclose gzclose
#else
#define VTFFILE FILE*
#endif
#ifdef _MSC_VER
#define strdup _strdup
#endif
#define VERSION_MAJOR 2
#define VERSION_MINOR 4
/* TODO:
- volumetric/graphics format
- file write support
*/
/***************************************************
* Data structures
***************************************************/
/* Default atom.
Used by vtf_parse_atom to initialize new atoms. */
static molfile_atom_t default_atom;
char* default_userdata;
const char *molid;
const char* userdata_varname;
#ifdef _USE_TCL
Tcl_Interp *tcl_interp;
#endif
#define VTF_MOLFILE 0
#define VTF_USERDATA 1
/* Plugin data structure to communciate data between the functions. */
typedef struct {
/* opened file */
VTFFILE file;
/* return code */
int return_code;
/* read mode */
int read_mode;
/* STRUCTURE DATA (used by read_structure) */
/* atom info */
int natoms;
molfile_atom_t *atoms;
int optflags;
/* bond info */
int nbonds;
int *from;
int *to;
/* TIMESTEP DATA (used by read_next_timestep) */
unsigned int timestep;
/* reading mode for the next timestep */
int timestep_mode;
/* last timestep data */
float A, B, C, alpha, beta, gamma;
float *coords;
} vtf_data;
/* constants for timestep_mode */
#define TIMESTEP_INDEXED 0
#define TIMESTEP_ORDERED 1
#define TIMESTEP_VCFSTART 2
/* global variable: contains the line number of the file */
static int vtf_lineno = 0;
#ifdef _USE_TCL
/* Make the atom userdata available to Tcl. */
void vtf_set_atom_userdata(const int aid, const char* userdata) {
static char array_index[255];
if (userdata == NULL) return;
sprintf(array_index, "%s.atom.%d", molid, aid);
Tcl_SetVar2(tcl_interp, userdata_varname, array_index, userdata, 0);
}
/* Make the timestep userdata available to Tcl. */
void vtf_set_timestep_userdata(const unsigned int timestep,
const char* userdata) {
static char array_index[255];
if (userdata == NULL || strlen(userdata) == 0) return;
sprintf(array_index, "%s.step%d", molid, timestep);
Tcl_SetVar2(tcl_interp, userdata_varname, array_index, userdata, 0);
}
/* Make the coordinate userdata available to Tcl. */
void vtf_set_coordinate_userdata(const unsigned int timestep,
const int aid,
const char* userdata) {
static char array_index[255];
if (userdata == NULL || strlen(userdata) == 0) return;
sprintf(array_index, "%s.step%d.%d", molid, timestep, aid);
Tcl_SetVar2(tcl_interp, userdata_varname, array_index, userdata, 0);
}
#endif
/***************************************************
* Print an error message.
***************************************************/
static void vtf_error(const char *msg, const char *line) {
char message[255];
sprintf(message, "vtfplugin:%d: error: %s: \"%s\"\n",
vtf_lineno, msg, line);
/* #if vmdplugin_ABIVERSION > 13 */
/* if (cons_fputs) */
/* cons_fputs(VMDCON_ERROR, message); */
/* else */
/* #else */
printf("%s", message);
/* #endif */
}
/***************************************************
* Free malloced memory, checking for NULL
***************************************************/
static void sfree(void* ptr) {
if (ptr != NULL) free(ptr);
}
/***************************************************
* Read a line
***************************************************/
/* Read a whole line from the file.
The line may have arbitrary length and continuation lines ending
with '\' are heeded.
The function will return a pointer to a buffer or NULL if an
error occured or eof occurs while no characters have been read.
The function will set the global variable lineno.
*/
static char *vtf_getline(VTFFILE file) {
static char *buffer = NULL;
static int buffer_size = 0;
char *s; /* pointer to the place where the line will be read to */
int bytes_left; /* the number of bytes that are left */
int l;
if (buffer == NULL) {
buffer_size = 255;
buffer = malloc(buffer_size);
/* TODO: error handling */
}
/* Point s to the beginning of buffer. */
s = buffer;
bytes_left = buffer_size;
if (feof(file)) {
sfree(buffer);
buffer = NULL;
return NULL;
}
do {
/* read a line */
if (fgets(s, bytes_left, file) == NULL) {
sfree(buffer);
buffer = NULL;
return NULL;
}
vtf_lineno++;
/* if we reached eof, finish */
if (feof(file)) break;
/* pos of the last char */
l = strlen(s) - 1;
if (l >= 0 && ( s[l] == '\n' || s[l] == '\r')) {
l--;
/* remove all line endings */
while (l >= 0 && (s[l] == '\n' || s[l] == '\r')) l--;
/* overwrite the first line ending char */
s[l+1] = '\0';
/* check the previous char, whether it is '\' */
if (l >= 0 && s[l] == '\\') {
/* last char before is continuation char */
/* position s to the continuation char */
bytes_left -= l+1;
s += l+1;
} else
/* otherwise, the line is complete */
break;
} else {
/* last char is not a newline */
/* enlarge the buffer */
buffer_size += 255;
buffer = realloc(buffer, buffer_size);
/* TODO: error handling */
/* reposition s */
l = strlen(buffer);
s = buffer + l;
bytes_left += buffer_size - l;
vtf_lineno--;
}
} while (1);
/* now check the whole string */
s = buffer;
/* skip all leading whitespace */
while (isspace(s[0])) s++;
/* ignore comment lines */
if (s[0] == '#') return vtf_getline(file);
l = strlen(s);
/* handle empty lines */
if (l == 0) {
if (feof(file)) {
sfree(buffer);
buffer = NULL;
return NULL;
}
else return vtf_getline(file);
}
return s;
}
/***************************************************
* Parse ATOM
***************************************************/
/* Create new atoms so that after the call max_aid atoms are there */
static void vtf_create_atoms_as_needed(int max_aid, vtf_data *d) {
/* create new atoms as needed */
if (d->natoms < max_aid+1) {
int aid;
/* fill up with default atoms */
d->atoms = realloc(d->atoms, (max_aid+1)*sizeof(molfile_atom_t));
for (aid = d->natoms; aid <= max_aid; aid++)
d->atoms[aid] = default_atom;
d->natoms = max_aid+1;
#ifdef _USE_TCL
if (d->read_mode != VTF_MOLFILE) {
/* fill up with default userdata */
for (aid = d->natoms; aid <= max_aid; aid++)
vtf_set_atom_userdata(aid, default_userdata);
}
#endif
}
}
/* Parse the aid specifier.
Return an integer list of the aids that need to be modifed. The
list is terminated by -1. If the list is NULL, an error occured. If
the list is empty (i.e. it only contains -1), the default atom is
to be modified.
*/
static int *vtf_parse_aid_specifier(char *s, vtf_data *d) {
int n;
unsigned int aid, from, to, offset;
unsigned int size = 0;
int *aid_list = NULL;
if (s[0] == 'd') {
/* DEFAULT */
/* if the specifier is "default", just leave the list empty! */
#ifdef DEBUG
printf("%s", "\tdefine default atom\n");
#endif
} else {
/* otherwise parse the aid specifier */
while (1) {
from = d->natoms;
if (sscanf(s, " %u:%u%n", &from, &to, &n) == 2) {
/* RANGE */
if (from > to) {
vtf_error("bad range specifier (from > to):", s);
sfree(aid_list);
return NULL;
}
vtf_create_atoms_as_needed(to, d);
/* add the range to the aid list */
offset = size;
size += to-from+1;
aid_list = realloc(aid_list, size*sizeof(int));
for (aid = from; aid <= to; aid++) {
aid_list[offset] = aid;
offset++;
}
} else if (sscanf(s, " %u%n", &to, &n) == 1) {
/* SINGLE AID */
vtf_create_atoms_as_needed(to, d);
/* add the aid to the aid_list */
size += 1;
aid_list = realloc(aid_list, size*sizeof(int));
aid_list[size - 1] = to;
} else {
/* ERROR */
vtf_error("bad aid specifier", s);
sfree(aid_list);
return NULL;
}
/* advance s */
s += n;
/* if there is no more to parse, break */
if (s[0] == '\0') break;
/* otherwise the next char should be a ',' */
if (s[0] != ',') {
vtf_error("bad aid specifier", s);
sfree(aid_list);
return NULL;
}
/* skip the ',' */
s++;
};
}
/* Terminate the list with -1 */
aid_list = realloc(aid_list, (size+1)*sizeof(int));
aid_list[size] = -1;
return aid_list;
}
/* Parse atom data from line.
Return MOLFILE_SUCCESS, if data was sucessfully parsed,
MOLFILE_ERROR if an error occured. */
static int vtf_parse_atom(char *line, vtf_data *d) {
static molfile_atom_t atom;
static char keyword[255];
static char msg[255];
static char aid_specifier[255];
int n;
char *s;
int rest_is_userdata;
int *aid_list = NULL;
atom = default_atom;
s = line;
#ifdef DEBUG
printf("\tatom record\n");
printf("line: %s\n", s);
#endif
/* HANDLE THE AID SPECIFIER */
/* save the aid specifier */
if (sscanf(s, " %255s%n", aid_specifier, &n) < 1) {
vtf_error("atom specifier is missing", line);
return MOLFILE_ERROR;
}
s += n;
aid_list = vtf_parse_aid_specifier(aid_specifier, d);
if (aid_list == NULL) return MOLFILE_ERROR;
/* A -1 in the aid_list denotes the end of the list */
#define AIDLOOP(assignment) \
{ \
int *aid_ptr; \
for (aid_ptr = aid_list; *aid_ptr != -1; aid_ptr++) { \
int aid = *aid_ptr; \
molfile_atom_t *cur_atom = &d->atoms[aid]; \
assignment; \
} \
}
/* handle the keywords */
rest_is_userdata = 0;
while (sscanf(s, " %255s%n", keyword, &n) == 1) {
s += n;
#ifdef DEBUG
printf("keyword: \"%s\" rest: \"%s\"\n", keyword, s);
#endif
switch (tolower(keyword[0])) {
case 'n': {
/* name */
if (sscanf(s, " %16s%n", atom.name, &n) == 1) {
AIDLOOP(strcpy(cur_atom->name, atom.name));
} else {
vtf_error("could not get name in atom record", line);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 't': {
/* type */
if (sscanf(s, " %16s%n", atom.type, &n) == 1) {
AIDLOOP(strcpy(cur_atom->type, atom.type));
} else {
vtf_error("could not get type in atom record", line);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 'r': {
/* resname, resid, radius */
if (strlen(keyword) == 1 ||
strncmp(keyword, "rad", 3) == 0) {
/* radius */
if (sscanf(s, " %f%n", &atom.radius, &n) == 1) {
AIDLOOP(cur_atom->radius = atom.radius);
} else {
vtf_error("could not get radius in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_RADIUS;
} else if (strcmp(keyword, "resid") == 0) {
/* resid */
if (sscanf(s, " %d%n", &atom.resid, &n) == 1) {
AIDLOOP(cur_atom->resid = atom.resid);
} else {
vtf_error("could not get resid in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
} else if (strcmp(keyword, "res") == 0 ||
strcmp(keyword, "resname") == 0) {
/* resname */
if (sscanf(s, " %8s%n", atom.resname, &n) == 1) {
AIDLOOP(strcpy(cur_atom->resname, atom.resname));
} else {
vtf_error("could not get resname in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
} else {
strcpy(msg, "unrecognized keyword in atom record: ");
strncat(msg, keyword, 200);
vtf_error(msg, line);
sfree(aid_list);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 's': {
/* segid */
if (sscanf(s, " %8s%n", atom.segid, &n) == 1) {
AIDLOOP(strcpy(cur_atom->segid, atom.segid));
} else {
vtf_error("could not get segid in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 'i': {
/* insertion */
if (sscanf(s, " %2s%n", atom.insertion, &n) == 1) {
AIDLOOP(strcpy(cur_atom->insertion, atom.insertion));
} else {
vtf_error("could not get insertion in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_INSERTION;
s += n;
break;
}
case 'c': {
/* chain, charge */
if (strlen(keyword) == 1 ||
strcmp(keyword, "chain") == 0) {
if (sscanf(s, " %2s%n", atom.chain, &n) == 1) {
AIDLOOP(strcpy(cur_atom->chain, atom.chain));
s += n;
break;
} else {
vtf_error("could not get chain in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
}
} /* if "chain" is not recognized, continue with next case */
case 'q': {
/* q and charge */
if (strlen(keyword) == 1 ||
strcmp(keyword, "charge") == 0) {
if (sscanf(s, " %f%n", &atom.charge, &n) == 1) {
AIDLOOP(cur_atom->charge = atom.charge);
} else {
vtf_error("could not get charge in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_CHARGE;
} else {
strcpy(msg, "unrecognized keyword in atom record: ");
strncat(msg, keyword, 200);
vtf_error(msg, line);
sfree(aid_list);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 'a': {
/* altloc, atomicnumber */
if (strlen(keyword)== 1 ||
strcmp(keyword, "atomicnumber") == 0) {
if (sscanf(s, " %d%n", &atom.atomicnumber, &n) == 1) {
AIDLOOP(cur_atom->atomicnumber = atom.atomicnumber);
} else {
vtf_error("could not get atomicnumber in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_ATOMICNUMBER;
} else if (strcmp(keyword, "altloc")) {
if (sscanf(s, " %2s%n", atom.altloc, &n) == 1) {
AIDLOOP(strcpy(cur_atom->altloc, atom.altloc));
} else {
vtf_error("could not get altloc in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_ALTLOC;
} else {
strcpy(msg, "unrecognized keyword in atom record: ");
strncat(msg, keyword, 200);
vtf_error(msg, line);
sfree(aid_list);
return MOLFILE_ERROR;
}
s += n;
break;
}
case 'o': {
/* occupancy */
if (sscanf(s, " %f%n", &atom.occupancy, &n) == 1) {
AIDLOOP(cur_atom->occupancy = atom.occupancy);
} else {
vtf_error("could not get occupancy in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_OCCUPANCY;
s += n;
break;
}
case 'b': {
/* bfactor */
if (sscanf(s, " %f%n", &atom.bfactor, &n) == 1) {
AIDLOOP(cur_atom->bfactor = atom.bfactor);
} else {
vtf_error("could not get bfactor in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_BFACTOR;
s += n;
break;
}
case 'm': {
/* mass */
if (sscanf(s, " %f%n", &atom.mass, &n) == 1) {
AIDLOOP(cur_atom->mass = atom.mass);
} else {
vtf_error("could not get mass in atom record", line);
sfree(aid_list);
return MOLFILE_ERROR;
}
d->optflags |= MOLFILE_MASS;
s += n;
break;
}
case 'u': {
/* userdata: the rest of the line is user data */
rest_is_userdata = 1;
#ifdef _USE_TCL
if (d->read_mode != VTF_MOLFILE) {
AIDLOOP(vtf_set_atom_userdata(aid, s));
}
#endif
break;
}
default: {
/* unrecognized */
strcpy(msg, "unrecognized keyword in atom record: ");
strncat(msg, keyword, 200);
vtf_error(msg, line);
sfree(aid_list);
return MOLFILE_ERROR;
}
}
if (rest_is_userdata) break;
}
/* if the aid_list is empty, modify the default atom */
if (*aid_list == -1) {
default_atom = atom;
if (d->read_mode != VTF_MOLFILE) {
sfree(default_userdata);
default_userdata = strdup(s);
}
}
sfree(aid_list);
#ifdef DEBUG
printf("\tparsed keywords\n");
#endif
return MOLFILE_SUCCESS;
}
/***************************************************
* Parse BOND
***************************************************/
/* Parse bond data from line. Called by vtf_parse_structure(). Return
MOLFILE_SUCCESS, if data was sucessfully parsed, MOLFILE_ERROR if
an error occured. */
static int vtf_parse_bond(char *line, vtf_data *d) {
char *s;
int n;
unsigned int from, to, aid, bid;
s = line;
while (1) {
if (sscanf(s, " %u::%u%n", &from, &to, &n) == 2) {
/* chain specifier */
if (from > to) {
vtf_error("bad chain specifier (from > to):", s);
return MOLFILE_ERROR;
}
bid = d->nbonds;
d->nbonds += to-from;
d->from = realloc(d->from, d->nbonds*sizeof(int));
d->to = realloc(d->to, d->nbonds*sizeof(int));
/* TODO: error handling */
for (aid = from; aid < to; aid++) {
/*printf("creating bond from %d to %d\n", aid, aid+1);*/
d->from[bid] = aid+1;
d->to[bid] = aid+2;
bid++;
}
} else if (sscanf(s, " %u:%u%n", &from, &to, &n) == 2) {
/* single bond specifier */
d->nbonds += 1;
d->from = realloc(d->from, d->nbonds*sizeof(int));
d->to = realloc(d->to, d->nbonds*sizeof(int));
/* TODO: error handling */
d->from[d->nbonds-1] = from+1;
d->to[d->nbonds-1] = to+1;
} else {
vtf_error("bad bond specifier", s);
return MOLFILE_ERROR;
}
s += n;
/* if there is no more to parse, break */
if (strlen(s) == 0) break;
/* otherwise the next char should be a ',' */
if (s[0] != ',') {
vtf_error("bad bond specifier in line", line);
return MOLFILE_ERROR;
}
/* skip the ',' */
s++;
}
return MOLFILE_SUCCESS;
}
/***************************************************
* Parse PBC
***************************************************/
/* Parse periodic boundary condition data from line. Called by
vtf_parse_structure(). Return MOLFILE_SUCCESS, if data was
sucessfully parsed, MOLFILE_ERROR if an error occured. */
static int vtf_parse_pbc(char *line, vtf_data *d) {
char *s;
int n = 0;
if (sscanf(line, " %f %f %f%n", &d->A, &d->B, &d->C, &n) < 3) {
s = line;
vtf_error("Couldn't parse unit cell dimensions", s);
return MOLFILE_ERROR;
}
s = line + n;
n = sscanf(s, " %f %f %f", &d->alpha, &d->beta, &d->gamma);
if (n > 0 && n < 3) {
vtf_error("Couldn't parse unit cell angles", line);
return MOLFILE_ERROR;
}
return MOLFILE_SUCCESS;
}
/* Parse timestep command from line. Called by vtf_parse_structure().
Return MOLFILE_SUCCESS, if it was sucessfully parsed, MOLFILE_ERROR
if an error occured. */
static int vtf_parse_timestep(char *line, vtf_data *d) {
while (strlen(line) > 0 && isspace(line[0])) line++;
if (strlen(line) == 0) {
d->timestep_mode = TIMESTEP_ORDERED;
} else {
switch (tolower(line[0])) {
case 'o': { d->timestep_mode = TIMESTEP_ORDERED; break; }
case 'i': { d->timestep_mode = TIMESTEP_INDEXED; break; }
default: {
vtf_error("bad timestep line", line);
return MOLFILE_ERROR;
}
}
}
return MOLFILE_SUCCESS;
}
/* Called by _vtf_open_file_read() to parse the structure data. */
static void vtf_parse_structure(vtf_data *d) {
char *line; /* next line in the file */
char s[255];
int n;
/* initialize the default atom */
strcpy(default_atom.name, "X");
strcpy(default_atom.type, "X");
strcpy(default_atom.resname, "X");
default_atom.resid = 0;
strcpy(default_atom.segid, "");
strcpy(default_atom.chain, "");
strcpy(default_atom.altloc, "");
strcpy(default_atom.insertion, "");
default_atom.occupancy = 1.0;
default_atom.bfactor = 1.0;
default_atom.mass = 1.0;
default_atom.charge = 0.0;
default_atom.radius = 1.0;
default_userdata = NULL;
do {
line = vtf_getline(d->file);
if (line == NULL) break;
#ifdef DEBUG
printf("parsing line %d: \"%s\"\n", vtf_lineno, line);
#endif
switch (tolower(line[0])) {
/* ATOM RECORD */
case 'a': {
/* Remove the "atom" keyword" */
sscanf(line, " %255s%n", s, &n);
line += n;
}
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'd': {
/* parse atom */
d->return_code = vtf_parse_atom(line, d);
break;
}
/* BOND RECORD */
case 'b': {
/* Remove the "bond" keyword" */
sscanf(line, " %255s%n", s, &n);
line += n;
d->return_code = vtf_parse_bond(line, d);
break;
}
/* PBC/UNITCELL RECORD */
case 'u':
case 'p': {
/* Remove the "pbc"/"unitcell" keyword */
sscanf(line, " %255s%n", s, &n);
line += n;
d->return_code = vtf_parse_pbc(line, d);
break;
}
/* TIMESTEP RECORD*/
case 'c':
case 't': {
/* Remove the "timestep" or "coordinates" keyword */
sscanf(line, " %255s%n", s, &n);
line += n;
}
case 'i':
case 'o': {
d->return_code = vtf_parse_timestep(line, d);
line = NULL; /* indicate the end of the structure block */
break;
}
/* UNKNOWN RECORD */
default: {
vtf_error("unknown line type", line);
d->return_code = MOLFILE_ERROR;
break;
}
}
} while (line != NULL &&
d->return_code == MOLFILE_SUCCESS);
/* test if structure data was parsed */
if (d->read_mode == VTF_MOLFILE &&
d->atoms == NULL &&
d->return_code == MOLFILE_SUCCESS) {
d->return_code = MOLFILE_NOSTRUCTUREDATA;
}
/* test whether another error has occured */
if (errno != 0) {
perror("vtfplugin");
d->return_code = MOLFILE_ERROR;
}
sfree(default_userdata);
}
/***************************************************
* Open file and parse structure info
***************************************************/
/* Opens the file for reading. To determine the number of atoms in
the file, it is necessary to parse the structure information,
anyway. Therefore, this function will parse the structure data and
save the information in the plugin's data structure.
The read_mode defines whether the file is read from VMD via the
plugin API (VTF_MOLFILE) to read structure and timestep data, or
via the vtftools to read userdata (VTF_USERDATA).
The function vtf_open_file_read() that is actually called by the
molfile reader plugin is defined below this function.
*/
static vtf_data *
_vtf_open_file_read(const char *filepath,
const char *filetype,
int *natoms,
int read_mode) {
vtf_data *d;
/* printf("Loading file %s\n of type %s using vtfplugin v%i.%i.\n",
filepath, filetype, VERSION_MAJOR, VERSION_MINOR); */
/* initialize the data structure */
d = malloc(sizeof(vtf_data));
errno = 0;
d->return_code = MOLFILE_SUCCESS;
d->read_mode = read_mode;
/* initialize structure data */
d->optflags = MOLFILE_NOOPTIONS;
d->natoms = 0;
d->atoms = NULL;
d->nbonds = 0;
d->from = NULL;
d->to = NULL;
/* initialize timestep data */
d->timestep = 0;
d->timestep_mode = TIMESTEP_ORDERED;
d->coords = NULL;
d->A = 0.0;
d->B = 0.0;
d->C = 0.0;
d->alpha = 90.0;
d->beta = 90.0;
d->gamma = 90.0;
/* Open the file */
d->file = fopen(filepath, "rb");
if (d->file == NULL) {
/* Could not open file */
char msg[255];
sprintf(msg, "vtfplugin: %s", filepath);
perror(msg);
sfree(d);
return NULL;
}
if (strcmp(filetype, "vcf") == 0) {
d->timestep_mode = TIMESTEP_VCFSTART;
d->natoms = MOLFILE_NUMATOMS_UNKNOWN;
*natoms = MOLFILE_NUMATOMS_UNKNOWN;
d->return_code = MOLFILE_NOSTRUCTUREDATA;
} else {
vtf_parse_structure(d);
if (d->return_code != MOLFILE_SUCCESS) {
/* close the file */
fclose(d->file);
/* free the data */
sfree(d->atoms);
sfree(d->coords);
sfree(d->from);
sfree(d->to);
sfree(d);
return NULL;
}
*natoms = d->natoms;
}
return d;
}
/* This is the function actually called by the molfile reader plugin */
static void *
vtf_open_file_read(const char *filepath,
const char *filetype,
int *natoms) {
return _vtf_open_file_read(filepath, filetype, natoms, VTF_MOLFILE);
}
/* */
static void vtf_close_file_read(void *data) {
vtf_data *d;
if (data == NULL) return;
d = (vtf_data*)data;
/* printf("Finished reading file.\n"); */
/* close the file */
fclose(d->file);
/* free the data */
sfree(d->coords);
sfree(d->from);
sfree(d->to);
sfree(d);
}
/* Read the next timestep from the file and store what has been read
into the ts datastructure. */
static int vtf_read_next_timestep(void *data,
int natoms,
molfile_timestep_t *ts) {
vtf_data *d;
char *line;
static char s[255];
float x,y,z;
unsigned int aid;
int n;
if (data == NULL) {
vtf_error("Internal error: data==NULL in vtf_read_next_timestep", 0);