-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCFile.cpp
More file actions
215 lines (159 loc) · 3.29 KB
/
CFile.cpp
File metadata and controls
215 lines (159 loc) · 3.29 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#include "CFile.h"
CFile::CFile( string filename, file_permission_t eFlags, bool bOpen )
{
this->m_eFlags = eFlags;
this->m_filename = filename;
if( bOpen )
this->Open();
}
CFile::~CFile()
{
this->Close();
}
void CFile::Open()
{
string mode;
if( m_eFlags & FILE_READ )
{
mode = "r";
} else if( m_eFlags & FILE_WRITE ) {
mode = "w";
} else if( m_eFlags & FILE_APPEND ) {
mode = "a";
}
if( m_eFlags & FILE_PLUS )
{
mode += "+";
}
//gApp.AddToLogFile( "Opening file [%s][%s]", m_filename.c_str(), mode.c_str() );
m_pfs = new fstream( m_filename.c_str() );
}
void CFile::Close()
{
if( Valid() )
{
m_pfs->close();
}
}
bool CFile::Valid()
{
if( !m_pfs )
return false;
return m_pfs->is_open();
}
long CFile::GetSize()
{
if( !Valid() )
return 0;
long begin = m_pfs->tellg();
m_pfs->seekg( 0, ios::end );
long end = m_pfs->tellg();
m_pfs->seekg( 0, ios::beg );
return ( end - begin );
}
bool CFile::ReadLines( vector<string> &lines, int linesize )
{
if( !CanRead() )
return false;
char *szBuffer = new char[ linesize ];
while( m_pfs->good() )
{
m_pfs->getline( szBuffer, linesize );
if( szBuffer[ strlen( szBuffer ) - 1 ] == '\n' )
szBuffer[ strlen( szBuffer ) - 1 ] = '\0';
lines.push_back( szBuffer );
}
m_pfs->seekg( 0, ios::beg );
return true;
}
bool CFile::ReadContents( unsigned char *ucBuffer, unsigned long *lSize )
{
if( !CanRead() )
return false;
long size = GetSize();
long num = 0;
while( m_pfs->good() && num <= size )
{
ucBuffer[ num ] = static_cast< unsigned char >( m_pfs->get() );
num++;
}
if( lSize )
{
*lSize = size;
}
m_pfs->seekg( 0, ios::beg );
return true;
}
void CFile::Append( string append )
{
return Append((char *)append.c_str());
}
void CFile::Append( char *szFormat, ... )
{
va_list va_alist;
char szBuffer[ 1024 ] = { 0 };
va_start( va_alist, szFormat );
_vsnprintf( szBuffer + strlen( szBuffer ), sizeof( szBuffer ) - strlen( szBuffer ), szFormat, va_alist );
va_end( va_alist );
Append((unsigned char *)szBuffer, (int)strlen( szBuffer ));
}
void CFile::Append( unsigned char *ucData, int size )
{
if( !CanAppend() )
return;
for( int i = 0; i < size; i++ )
{
m_pfs->put((char)ucData[i]);
}
}
void CFile::Write( string write )
{
return Write((char *)write.c_str());
}
void CFile::Write( char *szFormat, ... )
{
va_list va_alist;
char szBuffer[ 1024 ] = { 0 };
va_start( va_alist, szFormat );
_vsnprintf( szBuffer + strlen( szBuffer ), sizeof( szBuffer ) - strlen( szBuffer ), szFormat, va_alist );
va_end( va_alist );
Write((unsigned char *)szBuffer, (int)strlen( szBuffer ));
}
void CFile::Write( unsigned char *ucData, int size )
{
if( !CanWrite() )
return;
for( int i = 0; i < size; i++ )
{
m_pfs->put((char)ucData[i]);
}
}
bool CFile::FileExists()
{
if( Valid() )
this->Close();
ifstream f( m_filename.c_str() );
bool valid = f.is_open();
f.close();
return valid;
}
bool CFile::CanRead()
{
return ( Valid() && ( m_eFlags & FILE_READ ) );
}
bool CFile::CanWrite()
{
return ( Valid() && ( m_eFlags & FILE_WRITE ) );
}
bool CFile::CanAppend()
{
return ( Valid() && ( m_eFlags & FILE_APPEND ) );
}
bool CFile::DoesOverwrite()
{
return (m_eFlags & FILE_WRITE) ? true : false;
}
bool CFile::DoesCreate()
{
return ((m_eFlags & FILE_WRITE) || (m_eFlags & FILE_APPEND));
}