2 // This file is part of the aMule Project.
4 // Copyright (c) 2009-2011 aMule Team ( admin@amule.org / http://www.amule.org )
5 // Copyright (c) 2009-2011 Frediano Ziglio (freddy77@gamilc.com)
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2 of the License, or
10 // (at your option) any later version.
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "Types.h" // Needed for uint8_t
27 class CFileAreaSigHandler
;
31 * This class is used to optimize file read/write using mapped memory
36 friend class CFileAreaSigHandler
;
39 * Creates a uninitialized file area.
45 * Destructor, closes the file if opened.
55 * Init area with a given piece of file.
57 * @param file file to read.
58 * @param offset seek address in file.
59 * @param count bytes to read.
61 * Initialize buffer. Buffer will contain data from current file
62 * position for count length. Buffer will be a memory mapped area
63 * or a allocated buffer depending on systems.
65 void ReadAt(CFileAutoClose
& file
, uint64 offset
, size_t count
);
70 void StartWriteAt(CFileAutoClose
& file
, uint64 offset
, size_t count
);
73 * Flushes data not yet written.
75 bool FlushAt(CFileAutoClose
& file
, uint64 offset
, size_t count
);
78 * Get buffer that contains data readed or to write.
79 * @return allocated buffer or NULL if not initialized
81 uint8_t *GetBuffer() const { return m_buffer
; };
84 * Report error pending
89 //! A CFileArea is neither copyable nor assignable.
91 CFileArea(const CFileArea
&);
92 CFileArea
& operator=(const CFileArea
&);
96 * Pointer to buffer used for read/write operations.
97 * If mapped points inside m_mmap_buffer area otherwise
98 * point to an allocated buffer to be freed.
102 * Pointer to memory mapped area or NULL if not mapped.
104 uint8_t *m_mmap_buffer
;
106 * Length of the mapped region, currently used only for munmap.
114 * File handle to release
116 CFileAutoClose
* m_file
;
118 * true if error detected
124 // File_checked_for_headers