forked from adobe-flash/avmplus
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWinFile.cpp
81 lines (68 loc) · 1.84 KB
/
WinFile.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
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "WinFile.h"
namespace avmshell
{
WinFile::~WinFile()
{
if(file)
{
fclose(file);
}
}
bool WinFile::open(const char* filename, File::OpenAttribute flags)
{
const char* fileAttributes[] = { "r", "w", "a", "rb", "wb", "ab" };
file = fopen(filename, fileAttributes[flags] );
return file != NULL;
}
void WinFile::close()
{
fclose(file);
file = NULL;
}
size_t WinFile::read(void* buffer, size_t bytesToRead)
{
return fread(buffer, 1, bytesToRead, file);
}
size_t WinFile::write(const void* buffer, size_t bytesToWrite)
{
return fwrite(buffer, 1, bytesToWrite, file);
}
int64_t WinFile::getPosition() const
{
#if defined (UNDER_CE)
return ftell(file);
#else
return _ftelli64(file);
#endif
}
bool WinFile::setPosition(int64_t pos)
{
#if defined (UNDER_CE)
return fseek(file, (long)pos, SEEK_SET) == 0;
#else
return _fseeki64(file, pos, SEEK_SET) == 0;
#endif
}
int64_t WinFile::size() const
{
#if defined (UNDER_CE)
fseek(file, 0L, SEEK_END);
int64_t pos = ftell(file);
fseek (file, 0L, SEEK_SET);
#else
_fseeki64(file, 0LL, SEEK_END);
int64_t pos = _ftelli64(file);
_fseeki64 (file, 0LL, SEEK_SET);
#endif
return pos;
}
bool WinFile::isEOF() const
{
return feof(file) != 0;
}
}