/* This software was developed by Bruce Hendrickson and Robert Leland *
* at Sandia National Laboratories under US Department of Energy *
* contract DE-AC04-76DP00789 and is copyrighted by Sandia Corporation. */
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "defs.h"
#include "params.h"
static char line[LINE_LENGTH]; /* space to hold values */
static int offset = 0; /* offset into line for next data */
static int break_pnt = LINE_LENGTH; /* place in sequence to pause */
static int save_pnt; /* place in sequence to save */
static void flush_line();
double read_val(infile, end_flag)
FILE *infile; /* file to read value from */
int *end_flag; /* 0 => OK, 1 => EOL, -1 => EOF */
{
double val; /* return value */
char *ptr; /* ptr to next string to read */
char *ptr2; /* ptr to next string to read */
int length; /* length of line to read */
int length_left; /* length of line still around */
int white_seen; /* have I detected white space yet? */
int done; /* checking for end of scan */
int i; /* loop counter */
double strtod();
*end_flag = 0;
if (offset == 0 || offset >= break_pnt) {
if (offset >= break_pnt) { /* Copy rest of line back to beginning. */
length_left = LINE_LENGTH - save_pnt - 1;
ptr2 = line;
ptr = &line[save_pnt];
for (i=length_left; i; i--) *ptr2++ = *ptr++;
length = save_pnt + 1;
}
else {
length = LINE_LENGTH;
length_left = 0;
}
line[LINE_LENGTH - 1] = ' ';
line[LINE_LENGTH - 2] = ' ';
/* Now read next line, or next segment of current one. */
ptr2 = fgets(&line[length_left], length, infile);
if (ptr2 == (char *) NULL) { /* We've hit end of file. */
*end_flag = -1;
return((double) 0.0);
}
if (line[LINE_LENGTH - 1] == '\0' && line[LINE_LENGTH - 2] != '\0' &&
line[LINE_LENGTH - 2] != '\n' && line[LINE_LENGTH - 2] != '\f') {
/* Line too long. Find last safe place in line. */
break_pnt = LINE_LENGTH - 1;
save_pnt = break_pnt;
white_seen = FALSE;
done = FALSE;
while (!done) {
--break_pnt;
if (line[break_pnt] != '\0') {
if (isspace(line[break_pnt])) {
if (!white_seen) {
save_pnt = break_pnt + 1;
white_seen = TRUE;
}
}
else if (white_seen) {
done= TRUE;
}
}
}
}
else {
break_pnt = LINE_LENGTH;
}
offset = 0;
}
while (isspace(line[offset]) && offset < LINE_LENGTH) offset++;
if (line[offset] == '%' || line[offset] == '#') {
*end_flag = 1;
if (break_pnt < LINE_LENGTH) {
flush_line(infile);
}
return((double) 0.0);
}
ptr = &(line[offset]);
val = strtod(ptr, &ptr2);
if (ptr2 == ptr) { /* End of input line. */
offset = 0;
*end_flag = 1;
return((double) 0.0);
}
else {
offset = (int) (ptr2 - line) / sizeof(char);
}
return(val);
}
int read_int(infile, end_flag)
FILE *infile; /* file to read value from */
int *end_flag; /* 0 => OK, 1 => EOL, -1 => EOF */
{
int val; /* return value */
char *ptr; /* ptr to next string to read */
char *ptr2; /* ptr to next string to read */
int length; /* length of line to read */
int length_left; /* length of line still around */
int white_seen; /* have I detected white space yet? */
int done; /* checking for end of scan */
int i; /* loop counter */
long strtol();
*end_flag = 0;
if (offset == 0 || offset >= break_pnt) {
if (offset >= break_pnt) { /* Copy rest of line back to beginning. */
length_left = LINE_LENGTH - save_pnt - 1;
ptr2 = line;
ptr = &line[save_pnt];
for (i=length_left; i; i--) *ptr2++ = *ptr++;
length = save_pnt + 1;
}
else {
length = LINE_LENGTH;
length_left = 0;
}
line[LINE_LENGTH - 1] = ' ';
line[LINE_LENGTH - 2] = ' ';
/* Now read next line, or next segment of current one. */
ptr2 = fgets(&line[length_left], length, infile);
if (ptr2 == (char *) NULL) { /* We've hit end of file. */
*end_flag = -1;
return(0);
}
if (line[LINE_LENGTH - 1] == '\0' && line[LINE_LENGTH - 2] != '\0' &&
line[LINE_LENGTH - 2] != '\n' && line[LINE_LENGTH - 2] != '\f') {
/* Line too long. Find last safe place in line. */
break_pnt = LINE_LENGTH - 1;
save_pnt = break_pnt;
white_seen = FALSE;
done = FALSE;
while (!done) {
--break_pnt;
if (line[break_pnt] != '\0') {
if (isspace(line[break_pnt])) {
if (!white_seen) {
save_pnt = break_pnt + 1;
white_seen = TRUE;
}
}
else if (white_seen) {
done= TRUE;
}
}
}
}
else {
break_pnt = LINE_LENGTH;
}
offset = 0;
}
while (isspace(line[offset]) && offset < LINE_LENGTH) offset++;
if (line[offset] == '%' || line[offset] == '#') {
*end_flag = 1;
if (break_pnt < LINE_LENGTH) {
flush_line(infile);
}
return(0);
}
ptr = &(line[offset]);
val = (int) strtol(ptr, &ptr2, 10);
if (ptr2 == ptr) { /* End of input line. */
offset = 0;
*end_flag = 1;
return(0);
}
else {
offset = (int) (ptr2 - line) / sizeof(char);
}
return(val);
}
static void flush_line(infile)
FILE *infile; /* file to read value from */
{
char c; /* character being read */
c = getc(infile);
while (c != '\n' && c != '\f')
c = getc(infile);
}
syntax highlighted by Code2HTML, v. 0.9.1