|
OpenJPH
Open-source implementation of JPEG2000 Part-15
|
mem_outfile stores encoded j2k codestreams in memory More...
#include <ojph_file.h>
Public Member Functions | |
| mem_outfile () | |
| ~mem_outfile () override | |
| mem_outfile (mem_outfile const &)=delete | |
| mem_outfile & | operator= (mem_outfile const &)=delete |
| mem_outfile (mem_outfile &&) noexcept | |
| mem_outfile & | operator= (mem_outfile &&) noexcept |
| void | open (size_t initial_size=65536, bool clear_mem=false) |
| Call this function to open a memory file. | |
| size_t | write (const void *ptr, size_t size) override |
| Call this function to write data to the memory file. | |
| si64 | tell () override |
| Call this function to know the file size (i.e., number of bytes used to store the file). | |
| int | seek (si64 offset, enum outfile_base::seek origin) override |
| Call this function to change write pointer location; the function can expand file storage. | |
| void | close () override |
| const ui8 * | get_data () |
| Call this function to access memory file data. | |
| const ui8 * | get_data () const |
| Call this function to access memory file data (for const objects). | |
| void | write_to_file (const char *file_name) const |
| Call this function to write the memory file data to a file. | |
| size_t | get_used_size () const |
| Call this function to get the used size of the memory file. | |
| size_t | get_buf_size () const |
| Call this function to get the total buffer size of the memory file including unused space (this is the allocated memory). | |
| Public Member Functions inherited from ojph::outfile_base | |
| virtual | ~outfile_base () |
| virtual void | flush () |
Private Member Functions | |
| void | swap (mem_outfile &other) noexcept |
| A utility function to swap the contents of two instances. | |
| void | expand_storage (size_t new_size, bool clear_all) |
| This function expands storage by x1.5 needed space. | |
Private Attributes | |
| bool | is_open |
| bool | clear_mem |
| size_t | buf_size |
| size_t | used_size |
| ui8 * | buf |
| ui8 * | cur_ptr |
Static Private Attributes | |
| static const size_t | ALIGNED_ALLOC_MASK = 4096 - 1 |
Additional Inherited Members | |
| Public Types inherited from ojph::outfile_base | |
| enum | seek : int { OJPH_SEEK_SET = SEEK_SET , OJPH_SEEK_CUR = SEEK_CUR , OJPH_SEEK_END = SEEK_END } |
mem_outfile stores encoded j2k codestreams in memory
This code was first developed by Chris Hafey https://github.com/chafey I took the code and integrated with OpenJPH, with some modifications.
This class serves as a memory-based file storage. For example, generated j2k codestream is stored in memory instead of a conventional file. The memory buffer associated with this class grows with the addition of new data.
memory data can be accessed using get_data()
Definition at line 126 of file ojph_file.h.
| ojph::mem_outfile::mem_outfile | ( | ) |
A constructor
Definition at line 108 of file ojph_file.cpp.
References buf, buf_size, clear_mem, cur_ptr, is_open, and used_size.
Referenced by mem_outfile(), mem_outfile(), operator=(), operator=(), and swap().
|
override |
A destructor
Definition at line 126 of file ojph_file.cpp.
References buf, buf_size, clear_mem, cur_ptr, is_open, ojph::ojph_aligned_free(), and used_size.
|
delete |
References mem_outfile().
|
noexcept |
Move construction leaves the moved-from value in default constructed state and transfers ownership of the internal state to the moved-to instance.
Definition at line 136 of file ojph_file.cpp.
References mem_outfile(), and swap().
|
overridevirtual |
Call this function to close the file and deallocate memory
The object can be used again after calling close
Reimplemented from ojph::outfile_base.
Definition at line 166 of file ojph_file.cpp.
|
private |
This function expands storage by x1.5 needed space.
It sets cur_ptr correctly, and clears the extended area of the buffer. It optionally clear the whole buffer
| new_size | New size of the buffer |
| clear_all | Set to true to clear whole buffer, not just expansion |
Definition at line 233 of file ojph_file.cpp.
References ALIGNED_ALLOC_MASK, buf, buf_size, clear_mem, cur_ptr, ojph::ojph_aligned_free(), ojph::ojph_aligned_malloc(), OJPH_ERROR, tell(), and used_size.
|
inline |
Call this function to get the total buffer size of the memory file including unused space (this is the allocated memory).
Definition at line 233 of file ojph_file.h.
References buf_size.
|
inline |
Call this function to access memory file data.
It is not recommended to store the returned value because buffer storage address can change between write calls.
Definition at line 201 of file ojph_file.h.
References buf.
|
inline |
Call this function to access memory file data (for const objects).
This is similar to the above function, except that it can be used with constant objects.
Definition at line 212 of file ojph_file.h.
References buf.
|
inline |
Call this function to get the used size of the memory file.
Definition at line 225 of file ojph_file.h.
References used_size.
| void ojph::mem_outfile::open | ( | size_t | initial_size = 65536, |
| bool | clear_mem = false ) |
Call this function to open a memory file.
This function creates a memory buffer to be used for storing the generated j2k codestream.
| initial_size | is the initial memory buffer size. The default value is 2^16. |
| clear_mem | if set to true, all allocated memory is reset to 0 |
Definition at line 152 of file ojph_file.cpp.
References buf, clear_mem, cur_ptr, expand_storage(), is_open, and used_size.
Referenced by LLVMFuzzerTestOneInput(), and operator=().
|
noexcept |
move assignment with the same ownership transfer semantics as move construction.
Definition at line 142 of file ojph_file.cpp.
References mem_outfile(), and swap().
|
delete |
References clear_mem, mem_outfile(), open(), and write().
|
overridevirtual |
Call this function to change write pointer location; the function can expand file storage.
The seek function expands the buffer whenever offset goes beyond the buffer end
Reimplemented from ojph::outfile_base.
Definition at line 175 of file ojph_file.cpp.
References buf, cur_ptr, expand_storage(), ojph::outfile_base::OJPH_SEEK_CUR, ojph::outfile_base::OJPH_SEEK_END, ojph::outfile_base::OJPH_SEEK_SET, tell(), and used_size.
|
privatenoexcept |
A utility function to swap the contents of two instances.
Definition at line 116 of file ojph_file.cpp.
References buf, buf_size, clear_mem, cur_ptr, is_open, mem_outfile(), and used_size.
Referenced by mem_outfile(), and operator=().
|
inlineoverridevirtual |
Call this function to know the file size (i.e., number of bytes used to store the file).
Reimplemented from ojph::outfile_base.
Definition at line 177 of file ojph_file.h.
References buf, cur_ptr, and tell().
Referenced by expand_storage(), seek(), tell(), and write().
|
overridevirtual |
Call this function to write data to the memory file.
This function adds new data to the memory file. The memory buffer of the file grows as needed.
| ptr | is a pointer to new data. |
| size | the number of bytes in the new data. |
Whenever the need arises, the buffer is expanded by a factor approx 1.5x
Implements ojph::outfile_base.
Definition at line 200 of file ojph_file.cpp.
References buf, buf_size, cur_ptr, expand_storage(), is_open, ojph_max, tell(), and used_size.
Referenced by operator=().
| void ojph::mem_outfile::write_to_file | ( | const char * | file_name | ) | const |
Call this function to write the memory file data to a file.
Definition at line 220 of file ojph_file.cpp.
References buf, is_open, OJPH_ERROR, and used_size.
|
staticprivate |
Definition at line 262 of file ojph_file.h.
Referenced by expand_storage().
|
private |
Definition at line 258 of file ojph_file.h.
Referenced by close(), expand_storage(), get_data(), get_data(), mem_outfile(), open(), seek(), swap(), tell(), write(), write_to_file(), and ~mem_outfile().
|
private |
Definition at line 256 of file ojph_file.h.
Referenced by expand_storage(), get_buf_size(), mem_outfile(), swap(), write(), and ~mem_outfile().
|
private |
Definition at line 255 of file ojph_file.h.
Referenced by expand_storage(), mem_outfile(), open(), operator=(), swap(), and ~mem_outfile().
|
private |
Definition at line 259 of file ojph_file.h.
Referenced by close(), expand_storage(), mem_outfile(), open(), seek(), swap(), tell(), write(), and ~mem_outfile().
|
private |
Definition at line 254 of file ojph_file.h.
Referenced by close(), mem_outfile(), open(), swap(), write(), write_to_file(), and ~mem_outfile().
|
private |
Definition at line 257 of file ojph_file.h.
Referenced by expand_storage(), get_used_size(), mem_outfile(), open(), seek(), swap(), write(), write_to_file(), and ~mem_outfile().