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

0022728: STEP export API does not provide possibility to control output stream

This commit is contained in:
PDN 2011-10-21 17:56:38 +00:00 committed by bugmaster
parent 822ffdff32
commit 12bf87c5fa
3 changed files with 14 additions and 4 deletions

View File

@ -819,8 +819,13 @@ is
--
-- The Model and File Modifiers recorded to be applied on sending
-- files are.
-- Returns a status of execution : Done if OK, Void if no def.
-- available, Error if errors occured, Fail if no file written
-- Returns a status of execution :
-- Done if OK,
-- Void if no data available,
-- Error if errors occured (work library is not defined), errors
-- during translation
-- Fail if exception during translation is raised
-- Stop if no disk space or disk, file is write protected
-- Fills LastRunCheckList
SendSelected (me : mutable; filename : CString; sel : Selection;

View File

@ -2488,7 +2488,11 @@ IFSelect_ReturnStatus IFSelect_WorkSession::SendAll
}
}
else checks = thecopier->SendAll(filename,thegraph->Graph(),thelibrary,theprotocol);
Handle_Interface_Check aMainFail = checks.CCheck(0);
if (!aMainFail.IsNull() && aMainFail->HasFailed ())
{
return IFSelect_RetStop;
}
if (theloaded.Length() == 0) theloaded.AssignCat(filename);
thecheckrun = checks;
if (checks.IsEmpty(Standard_True)) return IFSelect_RetDone;

View File

@ -423,7 +423,8 @@ static Standard_Integer stepwrite (Draw_Interpretor& di, Standard_Integer argc,
switch (stat) {
case IFSelect_RetVoid : di<<"No file written"<<"\n"; break;
case IFSelect_RetDone : di<<"File "<<nomfic<<" written"<<"\n"; break;
default : di<<"Error on writing file"<<"\n"; break;
case IFSelect_RetStop : di<<"Error on writing file: no space on disk or destination is write protected"<<"\n"; break;
default : di<<"File "<<nomfic<<" written with fail messages"<<"\n"; break;
}
progress->EndScope();