mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023626: It's impossible to open files containing localisation characters in the name
Files containing localisation characters can be opened and saved now properly.
This commit is contained in:
parent
bcf045cfdc
commit
97c44f4156
@ -41,6 +41,7 @@ extern Draw_Viewer dout;
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
#include <OSD_Environment.hxx>
|
#include <OSD_Environment.hxx>
|
||||||
|
#include <OSD_OpenFile.hxx>
|
||||||
|
|
||||||
Standard_Boolean Draw_ParseFailed;
|
Standard_Boolean Draw_ParseFailed;
|
||||||
|
|
||||||
@ -146,10 +147,10 @@ static Standard_Integer save(Draw_Interpretor& di, Standard_Integer n, const cha
|
|||||||
|
|
||||||
|
|
||||||
const char* name = a[2];
|
const char* name = a[2];
|
||||||
filebuf fic;
|
ofstream os;
|
||||||
ostream os(&fic);
|
|
||||||
os.precision(15);
|
os.precision(15);
|
||||||
if (!fic.open(name,ios::out)) {
|
OSD_OpenStream(os, name, ios::out);
|
||||||
|
if (!os.rdbuf()->is_open()) {
|
||||||
di << "Cannot open file for writing "<<name;
|
di << "Cannot open file for writing "<<name;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -187,7 +188,6 @@ static Standard_Integer save(Draw_Interpretor& di, Standard_Integer n, const cha
|
|||||||
Standard_Boolean res = Standard_False;
|
Standard_Boolean res = Standard_False;
|
||||||
|
|
||||||
errno = 0;
|
errno = 0;
|
||||||
fic.close();
|
|
||||||
|
|
||||||
res = os.good() && !errno;
|
res = os.good() && !errno;
|
||||||
if( !res )
|
if( !res )
|
||||||
@ -214,7 +214,8 @@ static Standard_Integer restore(Draw_Interpretor& di, Standard_Integer n, const
|
|||||||
|
|
||||||
filebuf fic;
|
filebuf fic;
|
||||||
istream in(&fic);
|
istream in(&fic);
|
||||||
if (!fic.open(fname,ios::in)) {
|
OSD_OpenFileBuf(fic,fname,ios::in);
|
||||||
|
if (!fic.is_open()) {
|
||||||
di << "Cannot open file for reading : "<<fname;
|
di << "Cannot open file for reading : "<<fname;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user