Files
OCCT/src/IGESFile/igesread.c
ika a849d42d32 0026573: IGES file with one entity 128 is not read
Add some workaround to read IGES files with lines, which lengths are less than standard 80.

Test case for issue CR26573

Correction of test cases for issue CR26573

Correction of test case for issue CR26573
2015-09-03 14:59:39 +03:00

131 lines
4.0 KiB
C

/*
Copyright (c) 1999-2014 OPEN CASCADE SAS
This file is part of Open CASCADE Technology software library.
This library is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License version 2.1 as published
by the Free Software Foundation, with special exception defined in the file
OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
distribution for complete text of the license and disclaimer of any warranty.
Alternatively, this file may be used under the terms of Open CASCADE
commercial license or contractual agreement.
*/
/* Regroupement des sources "C" pour compilation */
#include <stdio.h>
#include "igesread.h"
#include <OSD_OpenFile.hxx>
/*
void IGESFile_Check21 (int mode,char * code, int num, char * str);
*/
void IGESFile_Check3 (int mode,char * code);
void IGESFile_Check2 (int mode,char * code, int num, char * str);
/* #include "structiges.c" ... fait par analiges qui en a l'usage ... */
void iges_initfile();
int iges_lire (FILE* lefic, int *numsec, char ligne[100], int modefnes);
void iges_newparam(int typarg,int longval, char *parval);
void iges_param(int *Pstat,char *ligne,char c_separ,char c_fin,int lonlin);
void iges_Dsect (int *Dstat,int numsec,char* ligne);
void iges_Psect(int numsec,char ligne[80]);
/* Routine de lecture generale d'un fichier IGES
Assure l'enchainement des appels necessaires
Il en resulte un ensemble de donnees (struct C) interrogeables par
routines ad hoc (cf igesread.h qui les recapitule pour appel par C++)
Retourne : 0 si OK, 1 si fichier pas pu etre ouvert
*/
/* MGE 16/06/98*/
/* To use strcpy*/
/*#include <string.h>*/
/* To use Msg class */
/*#include <MoniTool_Msg.hxx>*/
static char sects [] = " SGDPT ";
int igesread (char* nomfic, int lesect[6], int modefnes)
{
/* MGE 16/06/98 */
FILE* lefic; char ligne[100]; int numsec, numl; int i; int i0;int j;
char str[2];
int Dstat = 0; int Pstat = 0; char c_separ = ','; char c_fin = ';';
iges_initfile();
lefic = stdin; i0 = numsec = 0; numl = 0;
if (nomfic[0] != '\0')
lefic = OSD_OpenFile(nomfic,"r");
if (lefic == NULL) return -1; /* fichier pas pu etre ouvert */
for (i = 1; i < 6; i++) lesect[i] = 0;
for (j = 0; j < 100; j++) ligne[j] = 0;
for(;;) {
numl ++;
i = iges_lire(lefic,&numsec,ligne,modefnes);
if (i <= 0 || i < i0) {
if (i == 0) break;
/* Sending of message : Syntax error */
{
str[1] = '\0';
str[0] = sects[i0];
IGESFile_Check2 (0,"XSTEP_18",numl,str); /* //gka 15 Sep 98: str instead of sects[i0]); */
}
if (i0 == 0) return -1;
lesect[i0] ++;
continue;
}
lesect[i] ++; i0 = i;
if (numsec != lesect[i]) {
/* Sending of message : Syntax error */
str[1] = '\0';
str[0] = sects[i0];
IGESFile_Check2 (0,"XSTEP_19",numl,str); /* //gka 15 Sep 98: str instead of sects[i0]); */
}
if (i == 1) { /* Start Section (comm.) */
ligne[72] = '\0';
iges_newparam (0,72,ligne);
}
if (i == 2) { /* Header (Global sect) */
iges_setglobal();
for (;;) {
if (lesect[i] == 1) { /* Separation specifique */
int n0 = 0;
if (ligne[0] != ',') { c_separ = ligne[2]; n0 = 3; }
if (ligne[n0+1] != c_separ) { c_fin = ligne[n0+3]; }
}
iges_param(&Pstat,ligne,c_separ,c_fin,72);
if (Pstat != 2) break;
}
}
if (i == 3) iges_Dsect(&Dstat,numsec,ligne); /* Directory (Dsect) */
if (i == 4) { /* Parametres (Psect) */
iges_Psect(numsec,ligne);
for (;;) {
iges_param(&Pstat,ligne,c_separ,c_fin,64);
if (Pstat != 2) break;
}
}
}
/* Sending of message : No Terminal Section */
if (lesect[5] == 0) {
IGESFile_Check3 (1, "XSTEP_20");
//return -1;
}
fclose (lefic);
return 0;
}