-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathfile.h
119 lines (102 loc) · 2.69 KB
/
file.h
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
#ifndef FILE_H
#define FILE_H
#include "Interface/File.h"
const int MODE_TEMP=4;
//#define MODE_STL //No 64bit
#ifdef _WIN32
# define MODE_WIN
#elif LINUX
# define MODE_LIN
#else
# define MODE_STL
# warning "using STL file access files>4GB are not supported"
#endif
#ifdef MODE_STL
# include <fstream>
#endif
#ifdef MODE_WIN
# include <windows.h>
# include "Interface/Mutex.h"
#endif
#ifdef MODE_LIN
#if !defined(_LARGEFILE64_SOURCE) && !defined(__APPLE__)
# define _LARGEFILE64_SOURCE
#endif
# include <fcntl.h>
# include <sys/stat.h>
# include <stdlib.h>
# include <unistd.h>
# define _unlink unlink
#if defined(__FreeBSD__) || defined(__APPLE__)
#define off64_t off_t
#endif
#endif
class File : public IFsFile
{
public:
File();
~File();
bool Open(std::string pfn, int mode=MODE_READ);
bool Open(void *handle, const std::string& pFilename);
bool OpenTemporaryFile(const std::string &tmpdir="", bool first_try=true);
std::string Read(_u32 tr, bool *has_error=NULL);
std::string Read(int64 spos, _u32 tr, bool *has_error = NULL);
_u32 Read(char* buffer, _u32 bsize, bool *has_error=NULL);
_u32 Read(int64 spos, char* buffer, _u32 bsize, bool *has_error = NULL);
_u32 Write(const std::string &tw, bool *has_error=NULL);
_u32 Write(int64 spos, const std::string &tw, bool *has_error = NULL);
_u32 Write(const char* buffer, _u32 bsize, bool *has_error=NULL);
_u32 Write(int64 spos, const char* buffer, _u32 bsize, bool *has_error = NULL);
bool Seek(_i64 spos);
_i64 Size(void);
_i64 RealSize();
void Close();
bool PunchHole( _i64 spos, _i64 size );
bool Sync();
bool Resize(int64 new_size, bool set_sparse=true);
void resetSparseExtentIter();
SSparseExtent nextSparseExtent();
std::vector<SFileExtent> getFileExtents(int64 starting_offset, int64 block_size, bool& more_data, unsigned int flags);
IFsFile::os_file_handle getOsHandle(bool release_handle = false);
IVdlVolCache* createVdlVolCache();
int64 getValidDataLength(IVdlVolCache* vol_cache);
#ifdef _WIN32
static void init_mutex();
static void destroy_mutex();
#endif
std::string getFilename(void);
private:
#ifdef MODE_STL
std::fstream fi;
#endif
#ifdef MODE_WIN
HANDLE hfile;
bool is_sparse;
#endif
#ifdef MODE_LIN
int fd;
#endif
std::string fn;
#ifdef _WIN32
class VdlVolCache : public IVdlVolCache
{
public:
~VdlVolCache();
std::string volfn;
HANDLE vol;
NTFS_VOLUME_DATA_BUFFER vol_data;
};
bool setSparse();
static size_t tmp_file_index;
static IMutex* index_mutex;
static std::string random_prefix;
bool more_extents;
std::vector<FILE_ALLOCATED_RANGE_BUFFER> res_extent_buffer;
size_t curr_extent;
int64 last_sparse_pos;
#else
off64_t last_sparse_pos;
#endif
};
bool DeleteFileInt(std::string pFilename);
#endif //FILE_H