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
|
/*
Fortran text parsers
Copyright © 2013, 2018 F.Hroch (hroch@physics.muni.cz)
This file is part of Munipack.
Munipack 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.
Munipack 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 Munipack. If not, see <http://www.gnu.org/licenses/>.
*/
#include "fortranio.h"
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <cstring>
#include <cassert>
using namespace std;
// string tokenizer recognizing Fortran strings
// * delimiters are by norm, only ' ,;\t' acceptable
// * double apostrophes are treated as the single character
// * strings starts and finish with a single apostrophe character
vector<string> strftok(const string& fstring, const string& delimiters)
{
const char *a = fstring.c_str();
const char *delim = delimiters.size() > 0 ? delimiters.c_str() : " ,;\t\n\0";
vector<string> tokens;
char *b = new char[strlen(a)+1];
bool open = false;
bool str = false;
bool fin = false;
char apho = ' ';
int l = 0;
int i = 0;
for(;;) {
if( strchr(delim,a[i]) != NULL ) {
if( str )
// the separator inside string appostrophes
b[l++] = a[i];
else {
if( open )
// non-string value finished
fin = true;
}
}
else {
if( ((a[i] == '\'' || a[i] == '"') && apho == ' ') ||
(apho != ' ' && a[i] == apho) ) {
apho = a[i];
// appostroph encountered, what's now?
if( ! str ) {
str = true;
open = true;
}
else {
// inside string
if( a[i+1] != '\0' && ( a[i+1] == '\'' || a[i+1] == '"') ) {
// if( a[i+1] != '\0' && apho != ' ' && a[i+1] == apho ) {
// inside string, double appostrophes are treated as a single char
i++;
b[l++] = a[i];
}
else if( a[i+1] != '\0' && strchr(delim,a[i+1]) != NULL ) {
// finishing string
str = false;
open = false;
fin = true;
}
else if( a[i+1] == '\0' ) {
// finishing string
str = false;
open = false;
fin = true;
}
}
}
else {
// non-empty, separator character
open = true;
b[l++] = a[i];
}
}
if( fin ) {
b[l++] = '\0';
// cerr << "number:" << b << endl;
tokens.push_back(b);
l = 0;
open = false;
str = false;
fin = false;
apho = ' ';
}
if( a[i] == '\0' ) break;
i++;
}
delete[] b;
return tokens;
}
string forstr(const string& a)
{
vector<string> s = strftok(a," \t\n\0");
if( s.size() == 1)
return s[0];
else
return "";
}
|