blob: a5a877f25134e9a94db464f80ae995ab59f1141f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
#ifdef HAVE_CONFIG_H
# include <oce-config.h>
#endif
#ifndef WNT
#include <OSD_Directory.ixx>
#include <OSD_WhoAmI.hxx>
#include <OSD_Protection.hxx>
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h> // For getwd()
#endif
#include <errno.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <stdio.h>
#ifdef HAVE_OSFCN_H
# include <osfcn.h>
#endif
const OSD_WhoAmI Iam = OSD_WDirectory;
OSD_Directory::OSD_Directory():OSD_FileNode() {
}
OSD_Directory::OSD_Directory(const OSD_Path& Name):OSD_FileNode(Name){
}
// Create physically a directory
void OSD_Directory::Build(const OSD_Protection& Protect){
int status;
Standard_Integer internal_prot;
TCollection_AsciiString aBuffer;
internal_prot = Protect.Internal();
myPath.SystemName(aBuffer);
umask ( 0 );
status = mkdir (aBuffer.ToCString(), (mode_t)internal_prot);
if (status == -1)
if (errno != EEXIST) {
Standard_PCharacter err_message;
err_message = new Standard_Character [255];
sprintf (err_message,
"OSD_Directory::Build Directory \"%s\"",
aBuffer.ToCString());
myError.SetValue(errno, Iam, err_message);
delete err_message;
}
}
OSD_Directory OSD_Directory::BuildTemporary(){
OSD_Protection Protect;
OSD_Directory aDirectoryToReturn;
Standard_Integer internal_prot;
Standard_CString name = tmpnam(NULL);
TCollection_AsciiString aString (name);
internal_prot = Protect.Internal();
umask ( 0 );
mkdir (name, (mode_t)internal_prot);
unlink(name);//Destroys link but directory still exists while
//current process lives.
aDirectoryToReturn.SetPath ( aString );
return aDirectoryToReturn;
}
#else
//------------------------------------------------------------------------
//------------------- WNT Sources of OSD_Diretory -----------------------
//------------------------------------------------------------------------
#include <OSD_Directory.hxx>
#include <OSD_Protection.hxx>
#include <Standard_ProgramError.hxx>
#include <OSD_WNT_1.hxx>
#include <stdio.h>
#ifndef _INC_TCHAR
# include <tchar.h>
#endif // _INC_TCHAR
#ifdef _UNICODE
# define tctmpnam _wtmpnam
#else
# define tctmpnam tmpnam
#endif // _UNICODE
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );
OSD_Directory :: OSD_Directory () {
} // end constructor ( 1 )
OSD_Directory :: OSD_Directory ( const OSD_Path& Name ) :
OSD_FileNode ( Name ) {
} // end constructor ( 2 )
void OSD_Directory :: Build (const OSD_Protection& Protect ) {
TCollection_AsciiString dirName;
myPath.SystemName ( dirName );
if ( dirName.IsEmpty () )
Standard_ProgramError :: Raise (
TEXT( "OSD_Directory :: Build (): incorrect call - no directory name" )
);
if ( Exists () || CreateDirectory ( dirName.ToCString (), NULL ) )
SetProtection ( Protect );
else
_osd_wnt_set_error ( myError, OSD_WDirectory );
} // end OSD_Directory :: Build
OSD_Directory OSD_Directory :: BuildTemporary () {
OSD_Directory retVal;
OSD_Protection prt;
OSD_Path dirPath ( tctmpnam ( NULL ) );
retVal.SetPath ( dirPath );
retVal.Build ( prt );
return retVal;
} // end OSD_Directory :: BuildTemporary
#endif
|