mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0022728: STEP export API does not provide possibility to control output stream
This commit is contained in:
parent
822ffdff32
commit
12bf87c5fa
@ -819,8 +819,13 @@ is
|
|||||||
--
|
--
|
||||||
-- The Model and File Modifiers recorded to be applied on sending
|
-- The Model and File Modifiers recorded to be applied on sending
|
||||||
-- files are.
|
-- files are.
|
||||||
-- Returns a status of execution : Done if OK, Void if no def.
|
-- Returns a status of execution :
|
||||||
-- available, Error if errors occured, Fail if no file written
|
-- 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
|
-- Fills LastRunCheckList
|
||||||
|
|
||||||
SendSelected (me : mutable; filename : CString; sel : Selection;
|
SendSelected (me : mutable; filename : CString; sel : Selection;
|
||||||
|
@ -2488,7 +2488,11 @@ IFSelect_ReturnStatus IFSelect_WorkSession::SendAll
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else checks = thecopier->SendAll(filename,thegraph->Graph(),thelibrary,theprotocol);
|
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);
|
if (theloaded.Length() == 0) theloaded.AssignCat(filename);
|
||||||
thecheckrun = checks;
|
thecheckrun = checks;
|
||||||
if (checks.IsEmpty(Standard_True)) return IFSelect_RetDone;
|
if (checks.IsEmpty(Standard_True)) return IFSelect_RetDone;
|
||||||
|
@ -423,7 +423,8 @@ static Standard_Integer stepwrite (Draw_Interpretor& di, Standard_Integer argc,
|
|||||||
switch (stat) {
|
switch (stat) {
|
||||||
case IFSelect_RetVoid : di<<"No file written"<<"\n"; break;
|
case IFSelect_RetVoid : di<<"No file written"<<"\n"; break;
|
||||||
case IFSelect_RetDone : di<<"File "<<nomfic<<" 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();
|
progress->EndScope();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user