Salome HOME
updated copyright message
[modules/shaper.git] / src / Events / Events_InfoMessage.cpp
index 54324c1eced772d7c1045f1e680e2ced3f42cbda..54088a90f7224774098dcdc7aa0933f931eca4ca 100644 (file)
@@ -1,29 +1,38 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:       Events_InfoMessage.cpp
-// Created:    16 June 2016
-// Author:     Vitaly SMETANNIKOV
+// Copyright (C) 2014-2023  CEA, EDF
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library 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
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include "Events_InfoMessage.h"
-
-#ifdef WIN32
-#pragma warning(disable : 4996) // for sprintf
-#endif
+#include <Locale_Convert.h>
+#include <sstream>
 
 void Events_InfoMessage::addParameter(double theParam)
 {
-  char aBuf[50];
-  int n = sprintf(aBuf, "%g", theParam);
-  std::string aStr(aBuf);
-  myParameters.push_back(aStr);
+  std::stringstream aStream;
+  aStream << theParam;
+  myParameters.push_back(aStream.str());
 }
 
 void Events_InfoMessage::addParameter(int theParam)
 {
-  char aBuf[50];
-  int n = sprintf(aBuf, "%d", theParam);
-  std::string aStr(aBuf);
-  myParameters.push_back(aStr);
+  std::stringstream aStream;
+  aStream << theParam;
+  myParameters.push_back(aStream.str());
 }
 
 void Events_InfoMessage::send()
@@ -32,29 +41,8 @@ void Events_InfoMessage::send()
   Events_Loop::loop()->send(aMsg);
 }
 
-
-std::string insertParameters(const std::string& theString, const std::list<std::string>& theParams)
-{
-  std::string aResult = theString;
-  std::list<std::string>::const_iterator aIt;
-  int i;
-  char aBuf[20];
-  std::string aParam;
-  for (i=1, aIt = theParams.cbegin(); aIt != theParams.cend(); aIt++, i++) {
-    aParam = (*aIt);
-    sprintf(aBuf, "%d", i);
-    std::string aCode = std::string("%") + std::string(aBuf);
-    size_t aPos = aResult.find(aCode);
-    if (aPos != std::string::npos) {
-      std::string aFirst = aResult.substr(0, aPos);
-      std::string aLast = aResult.substr(aPos + aCode.length(), std::string::npos);
-      aResult = aFirst + aParam + aLast;
-    }
-  }
-  return aResult;
-}
-
-std::string Events_InfoMessage::messageString() const
+Events_InfoMessage& Events_InfoMessage::arg(const std::wstring& theParam)
 {
-  return insertParameters(myMessage, myParameters);
+  addParameter(Locale::Convert::toString(theParam));
+  return *this;
 }