implement new method to make file parsing more robust

This commit is contained in:
Joel Beckmeyer 2017-04-24 22:55:37 -04:00
parent c0662cb305
commit 93612d7e1d

View File

@ -19,10 +19,10 @@ bool Simulation::parseCircuit(string fileName)
// get rid of first line // get rid of first line
getline(in, tmpString); getline(in, tmpString);
while (!in.eof()) { while (true) {
in >> tmpType; if (!(in >> tmpType)) break;
in >> tmpString; if (!(in >> tmpString)) break;
in >> tmp1; if (!(in >> tmp1)) break;
if (tmpType == "INPUT" || tmpType == "OUTPUT") { if (tmpType == "INPUT" || tmpType == "OUTPUT") {
tmpWire = findWire(tmp1); tmpWire = findWire(tmp1);
@ -117,11 +117,11 @@ bool Simulation::parseVector(string fileName) {
// get rid of first line // get rid of first line
getline(in, tmpString); getline(in, tmpString);
while(!in.eof()) { while(true) {
in >> tmpString; if (!(in >> tmpString)) break;
in >> tmpString; if (!(in >> tmpString)) break;
in >> timeInt; if (!(in >> tmpInt)) break;
in >> valInt; if (!(in >> valInt)) break;
for(auto i = wires.begin(); i != wires.end(); ++i) { for(auto i = wires.begin(); i != wires.end(); ++i) {
if((**i).getName() == tmpString) { if((**i).getName() == tmpString) {