mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-12 18:11:05 +08:00
0031970: Data Exchange, STEP reader - parser syntax error messages are inaccessible
- Upgraded files using new version of WinFlexBison - Removed global variables within StepFile_Read.cxx - Upgraded error message during bison analyzing ( added a expected expression information ) - Used 'Interface_ParamType' as argument type for the StepFile_ReadData::Argument for a compatibility with the StepData/StepData_StepReaderData - Added handling parse errors and transferring it to the StepData_StepReaderData - Now parsing and referencing errors save in the check and non output by default - Step_file's and Step_Data's output info prints according by trace level of printer - Removed useless location.hxx - Removed TraceLevel for the StepFile_Reader ( now it useless, it is 0 by default and newer and nowhere change ) - Translate error message into English within StepData_StepReaderData - Replace "Error" word in the output messages
This commit is contained in:
@@ -14,27 +14,19 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
// StepFile_Read.hxx
|
||||
|
||||
// routine assurant l'enchainement des operations de lecture d'un fichier
|
||||
// STEP dans un StepModel, en fonction d'une cle de reconnaissance
|
||||
// Retour de la fonction :
|
||||
// 0 si OK (le StepModel a ete charge)
|
||||
// -1 si abandon car fichier pas pu etre ouvert
|
||||
// 1 si erreur en cours de lecture
|
||||
|
||||
|
||||
#ifndef StepFile_Read_HeaderFile
|
||||
#define StepFile_Read_HeaderFile
|
||||
|
||||
#include <iostream>
|
||||
//# include <stepread.h> : sauf recfile_modeprint, declare ici
|
||||
# include <StepData_StepModel.hxx>
|
||||
# include <StepData_FileRecognizer.hxx>
|
||||
# include <StepData_Protocol.hxx>
|
||||
#include <iostream>
|
||||
|
||||
Standard_EXPORT void StepFile_ReadTrace (const Standard_Integer mode);
|
||||
// Modal : 0 pas de trace, 1 trace LoadModel, 2 & 3 + trace interne lex-yac
|
||||
class StepData_StepModel;
|
||||
class StepData_Protocol;
|
||||
|
||||
//! Prints the error message
|
||||
//! @param theErrorMessage - error message for output
|
||||
//! @param theFail - if true output as a fail info, else output as a trace info ( log )
|
||||
void StepFile_Interrupt(Standard_CString theErrorMessage,
|
||||
const Standard_Boolean theIsFail = Standard_True);
|
||||
|
||||
//! Working function reading STEP file or stream.
|
||||
//! @param theName - name of the file or stream
|
||||
|
||||
Reference in New Issue
Block a user