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
|
/*
* Copyright (C) 2010 Regents of the University of Michigan
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __FORTRAN_FORMAT__
#define __FORTRAN_FORMAT__
#include "StringBasics.h"
#include "IntArray.h"
class FortranFormat
{
public:
// This class reads a user specified input file, one line at a time,
// and returns individual fields according to a user specified format
// statement
FortranFormat();
// Set the fortran format statement
void SetFormat(const String & formatString);
// Set the input file
void SetInputFile(IFILE & file);
// Read one field from input file
void GetNextField(String & field);
int GetNextInteger();
char GetNextCharacter();
// Process a token in format statement and return true
// if token corresponds to input field. Return false if
// token led to processing of white-space or input line
// positioning
bool ProcessToken(String & field);
// Flush the pattern -- this finishes processing the current
// pattern and ensures that all trailing new-lines, etc. are
// handled correctly
void Flush();
private:
// The input line and current position along it
String inputLine;
int inputPos;
// The Fortran format statement and current position along it
String format;
int formatPos;
// The position of the pattern we are repeating, if any
int repeatCount;
// Returns an integer from the current format statement, if any
int GetIntegerFromFormat();
// These functions check the next character in format string
bool DigitFollows();
bool CharacterFollows();
// This function finish the input field
void FinishField(bool haveSlash = false);
// Reject width were appropriate
void RejectWidth(char type);
// The input file
IFILE input;
// Stacks to keep track of nested parenthesis
IntArray bracketStack;
IntArray bracketCount;
IntArray bracketCounter;
int lastBracket;
int lastCount;
// Buffer for reading fields
String buffer;
// Flag that indicates whether we have reached end-of-pattern
bool endOfPattern;
};
#endif
|