1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0024792: Remove unused hacks for compilers without STL

This commit is contained in:
kgv 2014-04-03 17:15:09 +04:00 committed by apn
parent 91720fc5f3
commit d41f6af3f2
10 changed files with 50 additions and 168 deletions

View File

@ -490,12 +490,9 @@ void BinLDrivers_DocumentRetrievalDriver::CheckShapeSection(
const Storage_Position& ShapeSectionPos, const Storage_Position& ShapeSectionPos,
Standard_IStream& IS) Standard_IStream& IS)
{ {
if(!IS.eof()) { if (!IS.eof())
#if defined(WNT) || defined(HAVE_IOSTREAM) {
const std::streamoff endPos = IS.rdbuf()->pubseekoff(0L, std::ios_base::end, std::ios_base::in); const std::streamoff endPos = IS.rdbuf()->pubseekoff(0L, std::ios_base::end, std::ios_base::in);
#else
const Storage_Position endPos = IS.rdbuf()->seekoff(0L, unsafe_ios::end, unsafe_ios::in);
#endif
#ifdef DATATYPE_MIGRATION_DEB #ifdef DATATYPE_MIGRATION_DEB
cout << "endPos = " << endPos <<endl; cout << "endPos = " << endPos <<endl;
#endif #endif

View File

@ -250,12 +250,8 @@ static Standard_Integer CommandCmd
// get the error message // get the error message
Standard_SStream ss; Standard_SStream ss;
ss << "** Exception ** " << E << ends ; ss << "** Exception ** " << E << ends;
#ifdef USE_STL_STREAM
Tcl_SetResult(interp,(char*)(ss.str().c_str()),TCL_VOLATILE); Tcl_SetResult(interp,(char*)(ss.str().c_str()),TCL_VOLATILE);
#else
Tcl_SetResult(interp,(char*)(ss.str()),TCL_VOLATILE);
#endif
code = TCL_ERROR; code = TCL_ERROR;
} }
@ -500,14 +496,7 @@ Draw_Interpretor& Draw_Interpretor::Append(const Standard_Real r)
Draw_Interpretor& Draw_Interpretor::Append(const Standard_SStream& s) Draw_Interpretor& Draw_Interpretor::Append(const Standard_SStream& s)
{ {
#ifdef USE_STL_STREAM
return Append (s.str().c_str()); return Append (s.str().c_str());
#else
// Note: use dirty tricks -- unavoidable with old streams
TCollection_AsciiString aStr (((Standard_SStream&)AReason).str(), AReason.pcount());
((Standard_SStream&)AReason).freeze (false);
return Append (aStr.ToCString());
#endif
} }
//======================================================================= //=======================================================================

View File

@ -22,12 +22,6 @@
#include <Standard_Stream.hxx> #include <Standard_Stream.hxx>
#include <Standard_SStream.hxx> #include <Standard_SStream.hxx>
#if defined(HAVE_IOS) || defined(WNT)
# include <ios>
#elif defined(HAVE_IOS_H)
# include <ios.h>
#endif
#include <Draw_Display.hxx> #include <Draw_Display.hxx>
#include <Draw_Appli.hxx> #include <Draw_Appli.hxx>
#include <Draw_Number.hxx> #include <Draw_Number.hxx>
@ -39,6 +33,8 @@
#include <Draw_VMap.hxx> #include <Draw_VMap.hxx>
#include <Draw_ProgressIndicator.hxx> #include <Draw_ProgressIndicator.hxx>
#include <ios>
#ifdef WNT #ifdef WNT
extern Draw_Viewer dout; extern Draw_Viewer dout;
#endif #endif
@ -120,27 +116,16 @@ static Standard_Boolean numtest(const Handle(Draw_Drawable3D)& d)
return d->IsInstance(STANDARD_TYPE(Draw_Number)); return d->IsInstance(STANDARD_TYPE(Draw_Number));
} }
static void numsave(const Handle(Draw_Drawable3D)&d, ostream& OS) static void numsave (const Handle(Draw_Drawable3D)& theDrawable,
ostream& theStream)
{ {
Handle(Draw_Number) N = Handle(Draw_Number)::DownCast(d); Handle(Draw_Number) aNum = Handle(Draw_Number)::DownCast (theDrawable);
#if (defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)) || ( defined(WNT) && !defined(USE_OLD_STREAMS)) ios::fmtflags aFlags = theStream.flags();
ios::fmtflags F = OS.flags(); theStream.setf (ios::scientific);
OS.setf(ios::scientific); theStream.precision (15);
OS.precision(15); theStream.width (30);
OS.width(30); theStream << aNum->Value() << "\n";
#else theStream.setf (aFlags);
long form = OS.setf(ios::scientific);
int prec = OS.precision(15);
int w = OS.width(30);
#endif
OS << N->Value()<<"\n";
#if (defined(HAVE_IOS) && !defined(__sgi) && !defined(IRIX)) || (defined(WNT)&& !defined(USE_OLD_STREAMS))
OS.setf(F);
#else
OS.setf(form);
OS.precision(prec);
OS.width(w);
#endif
} }
static Handle(Draw_Drawable3D) numrestore (istream& is) static Handle(Draw_Drawable3D) numrestore (istream& is)

View File

@ -123,14 +123,7 @@ inline const Handle(Message_Messenger)&
operator << (const Handle(Message_Messenger)& theMessenger, operator << (const Handle(Message_Messenger)& theMessenger,
const Standard_SStream& theStream) const Standard_SStream& theStream)
{ {
#ifdef USE_STL_STREAM
theMessenger->Send (theStream.str().c_str(), Message_Info, Standard_False); theMessenger->Send (theStream.str().c_str(), Message_Info, Standard_False);
#else
// Note: use dirty tricks -- unavoidable with old streams
TCollection_AsciiString aStr (((Standard_SStream&)theStream).str(), theStream.pcount());
theMessenger->Send (aStr, Message_Info, Standard_False);
((Standard_SStream&)theStream).freeze (false);
#endif
return theMessenger; return theMessenger;
} }

View File

@ -27,7 +27,7 @@
//======================================================================= //=======================================================================
Message_PrinterOStream::Message_PrinterOStream (const Message_Gravity theTraceLevel) Message_PrinterOStream::Message_PrinterOStream (const Message_Gravity theTraceLevel)
: myStream (&cout), : myStream (&std::cout),
myIsFile (Standard_False), myIsFile (Standard_False),
myUseUtf8 (Standard_False) myUseUtf8 (Standard_False)
{ {
@ -42,35 +42,38 @@ Message_PrinterOStream::Message_PrinterOStream (const Message_Gravity theTraceLe
Message_PrinterOStream::Message_PrinterOStream (const Standard_CString theFileName, Message_PrinterOStream::Message_PrinterOStream (const Standard_CString theFileName,
const Standard_Boolean theToAppend, const Standard_Boolean theToAppend,
const Message_Gravity theTraceLevel) const Message_Gravity theTraceLevel)
: myStream (&cout), : myStream (&std::cout),
myIsFile (Standard_False) myIsFile (Standard_False)
{ {
myTraceLevel = theTraceLevel; myTraceLevel = theTraceLevel;
if ( strcasecmp(theFileName, "cout") == 0 ) if (strcasecmp(theFileName, "cout") == 0)
myStream = &cerr;
else if ( strcasecmp(theFileName, "cerr") == 0 )
myStream = &cout;
else
{ {
TCollection_AsciiString aFileName (theFileName); myStream = &std::cerr;
return;
}
else if (strcasecmp(theFileName, "cerr") == 0)
{
myStream = &std::cout;
return;
}
TCollection_AsciiString aFileName (theFileName);
#ifdef _WIN32 #ifdef _WIN32
aFileName.ChangeAll ('/', '\\'); aFileName.ChangeAll ('/', '\\');
#endif #endif
ofstream *ofile = new ofstream (aFileName.ToCString(), std::ofstream* aFile = new std::ofstream (aFileName.ToCString(),
#ifdef USE_STL_STREAMS (theToAppend ? (std::ios_base::app | std::ios_base::out) : std::ios_base::out));
(theToAppend ? (std::ios_base::app | std::ios_base::out) : std::ios_base::out ) ); if (aFile->is_open())
#else {
(theToAppend ? ios::app : ios::out ) ); myStream = (Standard_OStream* )aFile;
#endif myIsFile = Standard_True;
if ( ofile ) { }
myStream = (Standard_OStream*)ofile; else
myIsFile = Standard_True; {
} delete aFile;
else { myStream = &std::cout;
myStream = &cout; std::cerr << "Error opening " << theFileName << std::endl << std::flush;
cerr << "Error opening " << theFileName << endl << flush;
}
} }
} }
@ -88,7 +91,7 @@ void Message_PrinterOStream::Close ()
ostr->flush(); ostr->flush();
if ( myIsFile ) if ( myIsFile )
{ {
ofstream* ofile = (ofstream*)ostr; std::ofstream* ofile = (std::ofstream* )ostr;
ofile->close(); ofile->close();
delete ofile; delete ofile;
myIsFile = Standard_False; myIsFile = Standard_False;

View File

@ -135,14 +135,7 @@ void Standard_Failure::Reraise (const Standard_CString AString)
void Standard_Failure::Reraise (const Standard_SStream& AReason) void Standard_Failure::Reraise (const Standard_SStream& AReason)
{ {
#ifdef USE_STL_STREAM
SetMessageString(AReason.str().c_str()); SetMessageString(AReason.str().c_str());
#else
// Note: use dirty tricks -- unavoidable with old streams
((Standard_SStream&)AReason) << ends;
SetMessageString(((Standard_SStream&)AReason).str());
((Standard_SStream&)AReason).freeze (false);
#endif
Reraise(); Reraise();
} }

View File

@ -12,29 +12,13 @@
// Alternatively, this file may be used under the terms of Open CASCADE // Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement. // commercial license or contractual agreement.
// Purpose: Defines Standard_SStream as typedef to C++ string stream.
#ifndef _Standard_SStream_HeaderFile #ifndef _Standard_SStream_HeaderFile
#define _Standard_SStream_HeaderFile #define _Standard_SStream_HeaderFile
#include <Standard_Stream.hxx> #include <Standard_Stream.hxx>
#include <sstream>
#ifdef USE_STL_STREAM //! Defines Standard_SStream as typedef to C++ string stream.
typedef std::stringstream Standard_SStream;
#include <sstream> #endif // _Standard_SStream_HeaderFile
typedef std::stringstream Standard_SStream;
#else /* USE_STL_STREAM */
#ifdef WNT
#include <strstrea.h>
#else
#include <strstream.h>
#endif
typedef strstream Standard_SStream;
#endif /* USE_STL_STREAM */
#endif

View File

@ -12,68 +12,17 @@
// Alternatively, this file may be used under the terms of Open CASCADE // Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement. // commercial license or contractual agreement.
// Purpose: Includes standard header files containing definition of streams;
// defines macro USE_STL_STREAM if C++ standard STL streams are used
// as opposed to obsolete non-standard streams.
// Macro USE_OLD_STREAMS may be defined externally to command using
// old streams on WNT; otherwise new streams are used whenever available.
// Macro NO_USING_STD may be defined externally to avoid "using"
// declaratiions for types from std namespace.
#ifndef _Standard_Stream_HeaderFile #ifndef _Standard_Stream_HeaderFile
#define _Standard_Stream_HeaderFile #define _Standard_Stream_HeaderFile
#include <Standard_Macro.hxx> #include <Standard_Macro.hxx>
#ifdef USE_STL_STREAM #include <iostream>
#undef USE_STL_STREAM #include <iomanip>
#endif #include <fstream>
// Unix variant
#ifndef WNT
#ifdef HAVE_IOSTREAM
#include <iostream>
#define USE_STL_STREAM
#elif defined (HAVE_IOSTREAM_H)
#include <iostream.h>
#else
#error "check config.h file or compilation options: either HAVE_IOSTREAM or HAVE_IOSTREAM_H should be defined"
#endif
#ifdef HAVE_IOMANIP
#include <iomanip>
#elif defined (HAVE_IOMANIP_H)
#include <iomanip.h>
#endif
#ifdef HAVE_FSTREAM
#include <fstream>
#elif defined (HAVE_FSTREAM_H)
#include <fstream.h>
#endif
// Windows variant
#else /* WNT */
// Macro USE_OLD_STREAMS may be defined externally to command
// using old streams on Windows NT; otherwise new streams are used
#ifndef USE_OLD_STREAMS
#include <iostream>
#include <iomanip>
#include <fstream>
#define USE_STL_STREAM
#else
#include <iostream.h>
#include <iomanip.h>
#include <fstream.h>
#endif /* USE_OLD_STREAMS */
#endif /* WNT */
// "using" declaration for STL types is still necessary // "using" declaration for STL types is still necessary
// as OCCT code contains too much of this staff without std: prefix // as OCCT code contains too much of this staff without std:: prefix
#if defined(USE_STL_STREAM) && ! defined(NO_USING_STD)
using std::istream; using std::istream;
using std::ostream; using std::ostream;
using std::ofstream; using std::ofstream;
@ -93,6 +42,5 @@ using std::setw;
using std::setprecision; using std::setprecision;
using std::hex; using std::hex;
using std::dec; using std::dec;
#endif
#endif /* _Standard_Stream_HeaderFile */ #endif // _Standard_Stream_HeaderFile

View File

@ -172,13 +172,7 @@ static void SetLabelNameByShape(const TDF_Label L)
// if (Type == TopAbs_COMPOUND) Stream<<"ASSEMBLY"; // if (Type == TopAbs_COMPOUND) Stream<<"ASSEMBLY";
// else // else
TopAbs::Print(S.ShapeType(), Stream); TopAbs::Print(S.ShapeType(), Stream);
#ifdef USE_STL_STREAM
TCollection_AsciiString aName (Stream.str().c_str()); TCollection_AsciiString aName (Stream.str().c_str());
#else
Stream << ends;
TCollection_AsciiString aName (Stream.str());
#endif
TDataStd_Name::Set(L, TCollection_ExtendedString(aName)); TDataStd_Name::Set(L, TCollection_ExtendedString(aName));
} }
} }

View File

@ -345,11 +345,7 @@ void XmlMNaming_NamedShapeDriver::ReadShapeSection
{ {
if (aNode.getNodeType() == LDOM_Node::TEXT_NODE) { if (aNode.getNodeType() == LDOM_Node::TEXT_NODE) {
LDOMString aData = aNode.getNodeValue(); LDOMString aData = aNode.getNodeValue();
#ifdef USE_STL_STREAM
std::stringstream aStream (std::string(aData.GetString())); std::stringstream aStream (std::string(aData.GetString()));
#else
istrstream aStream (Standard_CString(aData.GetString()));
#endif
myShapeSet.Clear(); myShapeSet.Clear();
myShapeSet.Read (aStream); myShapeSet.Read (aStream);
break; break;