Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

terminate called after throwing an instance of 'std::invalid_argument' what(): stoi

Tags:

c++

c++11

stoi function crashes program with the error message

"****@****:~> g++ -std=c++0x m1.cpp stimulation.h stims.h Task.h exoskeleton.h ARAIG_Sensors.h Profile.h

ARAIG_Sensors.h:1:9: warning: #pragma once in main file [enabled by default]

Profile.h:1:9: warning: #pragma once in main file [enabled by default]

*****@****:~> a.out StimulationConfig.csv TaskConfiguration.csv SampleProfileConfig.csv SampleOutput.txt

First : a.out
Second : StimulationConfig.csv
terminate called after throwing an instance of 'std::invalid_argument'
  what():  stoi
Aborted

and I can't figure out why, there is a instance being passed into the function but still returning an error. Can someone please help me out with a solution maybe?

#pragma once
#include <string>
#include <vector>
#include "Task.h"
#include <ostream>
#include "ARAIG_Sensors.h"
namespace m1
{
    class Profile
    {
        ARAIG_Sensors araig;
        std::vector<Task> ToRun;
        std::vector<Task> Completed;
        std::string studentFN;
        std::string studentLN;
        std::string studentSN;
        std::string flightFN;
        std::string flightLN;
        std::string flightEN;
        std::ostream& os;

        struct calibration {
            int Max;
            int Min;
        };

        calibration cal;

    public:
        Profile(std::string fn, std::ostream& o, ARAIG_Sensors& a) : os(o)
        {
            araig = a;

            //parsing student
            std::ifstream infile(fn);
            std::string line;
            std::getline(infile, line);
            int f = line.find_first_of(",");
            studentFN = line.substr(0, f);
            line = line.substr(f + 1);
            f = line.find_first_of(",");
            studentLN = line.substr(0, f);
            studentSN = line.substr(f + 1);

            //parsing flight
            std::getline(infile, line);
            f = line.find_first_of(",");
            flightFN = line.substr(0, f);
            line = line.substr(f + 1);
            f = line.find_first_of(",");
            flightLN = line.substr(0, f);
            flightEN = line.substr(f + 1);

            //parsing calibration
            std::getline(infile, line);
            f = line.find_first_of(",");
            cal.Min = stoi(line.substr(0, f));
            std::cout << cal.Min << std::endl;
            line = line.substr(f + 1);
            cal.Max = stoi(line);



            std::list<Task> temp = araig.gettasks();
            while (std::getline(infile, line))
            {
                for (std::list<Task>::iterator i = temp.begin(); i != temp.end(); i++)
                {
                    if ((*i).getName() == line)
                    {
                        ToRun.push_back(*i);
                        break;
                    }



                }

            }

        }
        void displayToRun()
        {
            for (std::vector<Task>::iterator i = ToRun.begin(); i != ToRun.end(); i++)
            {
                (*i).execute(os);
            }
        }
        void displayCompleted()
        {
            for (std::vector<Task>::iterator i = Completed.begin(); i != Completed.end(); i++)
            {
                (*i).execute(os);
            }
        }
        void displayNext()
        {
            std::vector<Task>::iterator i = ToRun.begin();
            (*i).execute(os);
        }
        void displayLast()
        {
            std::vector<Task>::iterator i = Completed.end();
            (*i).execute(os);
        }
        void Run()
        {
            //excute next Task and move Task to Completed
            std::vector<Task>::iterator i = ToRun.begin();
            Task t = *i;
            t.execute(os);
            ToRun.erase(i);
            Completed.push_back(t);
        }
    };

}
like image 693
dennis Avatar asked Dec 09 '16 22:12

dennis


People also ask

What does stoi function do in C++?

What Is stoi() in C++? In C++, the stoi() function converts a string to an integer value. The function is shorthand for “string to integer,” and C++ programmers use it to parse integers out of strings.

Does stoi throw?

std::stoi may throw exceptions so it needs to be surrounded by try/catch. In applications where std::stoi may be used frequently, it could be useful to have a wrapper.


1 Answers

It means you are giving std::stoi() bad input, so it is throwing a std::invalid_argument exception that you are not catching.

std::stoi, std::stol, std::stoll:

Exceptions

  • std::invalid_argument if no conversion could be performed

  • std::out_of_range if the converted value would fall out of the range of the result type or if the underlying function (std::strtol or std::strtoll) sets errno to ERANGE.

std::terminate

std::terminate() is called by the C++ runtime when exception handling fails for any of the following reasons:

1) an exception is thrown and not caught (it is implementation-defined whether any stack unwinding is done in this case)

You need to double-check your input string values that you are trying to convert to integers. They do not represent integers.

like image 77
Remy Lebeau Avatar answered Oct 11 '22 18:10

Remy Lebeau