mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Coding - GeomTools performance update #19
Update size of buffer for the brep parsing according standard
This commit is contained in:
parent
819ae9a55f
commit
4bda7ebe40
@ -96,16 +96,21 @@ Handle(GeomTools_UndefinedTypeHandler) GeomTools::GetUndefinedTypeHandler()
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
void GeomTools::GetReal(Standard_IStream& IS,Standard_Real& theValue)
|
void GeomTools::GetReal(Standard_IStream& IS, Standard_Real& theValue)
|
||||||
{
|
{
|
||||||
theValue = 0.;
|
theValue = 0.;
|
||||||
if (IS.eof())
|
if (IS.eof())
|
||||||
|
{
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
// According IEEE-754 Specification and standard stream parameters
|
||||||
|
// the most optimal buffer length not less then 25
|
||||||
|
constexpr size_t THE_BUFFER_SIZE = 32;
|
||||||
|
char aBuffer[THE_BUFFER_SIZE];
|
||||||
|
|
||||||
char buffer[256];
|
aBuffer[0] = '\0';
|
||||||
buffer[0] = '\0';
|
std::streamsize anOldWide = IS.width(THE_BUFFER_SIZE - 1);
|
||||||
std::streamsize anOldWide = IS.width(256);
|
IS >> aBuffer;
|
||||||
IS >> buffer;
|
|
||||||
IS.width(anOldWide);
|
IS.width(anOldWide);
|
||||||
theValue = Strtod(buffer, NULL);
|
theValue = Strtod(aBuffer, nullptr);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user