forked from jrywu/DIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
File.cpp
194 lines (169 loc) · 4.52 KB
/
File.cpp
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
//
//
// Derived from Microsoft Sample IME by Jeremy '13,7,17
//
//
//#define DEBUG_PRINT
#include "Globals.h"
#include "Private.h"
#include "File.h"
#include "BaseStructure.h"
//---------------------------------------------------------------------
//
// ctor
//
//---------------------------------------------------------------------
CFile::CFile(UINT codePage)
{
_codePage = codePage;
_fileHandle = nullptr;
_pReadBuffer = nullptr;
_fileSize = 0;
_filePosPointer = 0;
_pFileName = nullptr;
}
//---------------------------------------------------------------------
//
// dtor
//
//---------------------------------------------------------------------
CFile::~CFile()
{
if (_pReadBuffer)
{
delete [] _pReadBuffer;
_pReadBuffer = nullptr;
}
if (_fileHandle)
{
CloseHandle(_fileHandle);
_fileHandle = nullptr;
}
if (_pFileName)
{
delete [] _pFileName;
_pFileName = nullptr;
}
}
//---------------------------------------------------------------------
//
// CreateFile
//
//---------------------------------------------------------------------
BOOL CFile::CreateFile(_In_ PCWSTR pFileName, DWORD desiredAccess,
DWORD creationDisposition,
DWORD sharedMode, _Inout_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes, DWORD flagsAndAttributes, _Inout_opt_ HANDLE templateFileHandle)
{
debugPrint(L" CFile::CreateFile() filename = %s", pFileName);
size_t fullPathLen = wcslen(pFileName);
if (!_pFileName)
{
_pFileName = new (std::nothrow) WCHAR[ fullPathLen + 1 ];
}
if (!_pFileName)
{
return FALSE;
}
StringCchCopyN(_pFileName, fullPathLen + 1, pFileName, fullPathLen);
_fileHandle = ::CreateFile(_pFileName, desiredAccess, sharedMode,
lpSecurityAttributes, creationDisposition, flagsAndAttributes, templateFileHandle);
if (_fileHandle == INVALID_HANDLE_VALUE)
{
return FALSE;
}
_wstat(pFileName, & _timeStamp);
_fileSize = ::GetFileSize(_fileHandle, NULL);
return TRUE;
}
//---------------------------------------------------------------------
//
// SetupReadBuffer
//
//---------------------------------------------------------------------
BOOL CFile::SetupReadBuffer()
{
debugPrint(L" CFile::CreateFile()");
BOOL ret = TRUE;
DWORD dwNumberOfByteRead = 0;
if(_fileSize < sizeof(WCHAR) )
{
ret = FALSE;
goto errorExit;
}
// Read file in allocated buffer
const WCHAR* pWideBuffer = new (std::nothrow) WCHAR[ _fileSize/sizeof(WCHAR) - 1 ];
if (!pWideBuffer)
{
ret = FALSE;
goto errorExit;
}
// skip unicode byte-order signature
SetFilePointer(_fileHandle, sizeof(WCHAR), NULL, FILE_BEGIN);
if (!ReadFile(_fileHandle, (LPVOID)pWideBuffer, (DWORD)(_fileSize - sizeof(WCHAR)), &dwNumberOfByteRead, NULL)
|| !IsTextUnicode(pWideBuffer, dwNumberOfByteRead, NULL))
{
delete [] pWideBuffer;
ret = FALSE;
goto errorExit;
}
_fileSize -= sizeof(WCHAR);
delete [] _pReadBuffer;
_pReadBuffer = pWideBuffer;
errorExit:
if (_fileHandle)
{
CloseHandle(_fileHandle);
_fileHandle = nullptr;
}
return ret;
}
_Ret_maybenull_
const WCHAR* CFile::GetReadBufferPointer(_Inout_opt_ BOOL *fileReloaded)
{
debugPrint(L" CFile::GetReadBufferPointer()");
if(fileReloaded) *fileReloaded = FALSE;
if (!_pReadBuffer)
{
if (!SetupReadBuffer())
{
return nullptr;
}
}
else
{
struct _stat timeStamp;
if (_wstat(_pFileName, &timeStamp) || //error for retrieving timestamp
(long(timeStamp.st_mtime>>32) != long(_timeStamp.st_mtime>>32)) || // or the timestamp not match previous saved one.
(long(timeStamp.st_mtime) != long(_timeStamp.st_mtime)) ) // then load the config. skip otherwise
{
debugPrint(L"the file is updated and need to reload");
if (_fileHandle)
{
CloseHandle(_fileHandle);
_fileHandle = nullptr;
}
if (CreateFile(_pFileName, GENERIC_READ, OPEN_EXISTING, FILE_SHARE_READ))
{
delete [] _pReadBuffer;
_pReadBuffer = nullptr;
if (!SetupReadBuffer())
{
return nullptr;
}
if(fileReloaded) *fileReloaded = TRUE;
}
}
}
return _pReadBuffer;
}
BOOL CFile::IsFileUpdated()
{
debugPrint(L" CFile::IsFileUpdated()");
struct _stat timeStamp;
if (_wstat(_pFileName, &timeStamp) || //error for retrieving timestamp
(long(timeStamp.st_mtime>>32) != long(_timeStamp.st_mtime>>32)) || // or the timestamp not match previous saved one.
(long(timeStamp.st_mtime) != long(_timeStamp.st_mtime)) ) // then load the config. skip otherwise
return TRUE;
else
return FALSE;
}