1. ホーム
  2. c++

[解決済み】C++ : スクリプトで例外が発生した: basic_string::_S_construct NULL は有効ではない

2022-02-20 03:37:30

質問

データベース関数からメインプログラムに文字列またはNULLを返しているのですが、時々例外が発生してこのようなエラーが発生します。

basic_string::_S_construct NULL not valid

データベース関数からNULL値を返すからだと思うのですが、何か思い当たることはありますか?

string database(string& ip, string& agent){
  //this is just for explanation
  .....
  ....

  return NULL or return string

}

int main(){
   string ip,host,proto,method,agent,request,newdec;
   httplog.open("/var/log/redirect/httplog.log", ios::app);

   try{
      ip = getenv("IP");
      host = getenv("CLIENT[host]");
      proto = getenv("HTTP_PROTO");
      method = getenv("HTTP_METHOD");
      agent = getenv("CLIENT[user-agent]");

      if (std::string::npos != host.find(string("dmnfmsdn.com")))
         return 0;

      if (std::string::npos != host.find(string("sdsdsds.com")))
         return 0;

      if (method=="POST")
         return 0;

      newdec = database(ip,agent);
      if (newdec.empty())
         return 0;
      else {
         httplog << "Redirecting to splash page for user IP: " << ip << endl;
         cout << newdec;
         cout.flush();
      }
      httplog.close();
      return 0; 
   }
   catch (exception& e){
      httplog << "Exception occurred in script: " << e.what() << endl;
      return 0;
   }
   return 0;
}

解決方法は?

を返すことはできません。 NULL (または 0 を返すと宣言されている関数から string というのも、適切な暗黙の変換が存在しないからです。しかし,空の文字列を返したいと思うかもしれません。

return string();

または

return "";

を区別できるようにしたい場合、そのようなことはありません。 NULL の値と空の文字列のどちらかを指定するには、ポインタ(できればスマートなもの)を使用するか、または、代わりに std::optional (または boost::optional C++17以前)。