LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+f5613e8b4f,g1470d8bcf6+190ad2ba91,g14a832a312+311607e4ab,g2079a07aa2+86d27d4dc4,g2305ad1205+a8e3196225,g295015adf3+b67ee847e5,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+a761f810f3,g487adcacf7+17c8fdbcbd,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+65b5bd823e,g5a732f18d5+53520f316c,g64a986408d+f5613e8b4f,g6c1bc301e9+51106c2951,g858d7b2824+f5613e8b4f,g8a8a8dda67+585e252eca,g99cad8db69+6729933424,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+ef4e3a5875,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e9bba80f27,gc120e1dc64+eee469a5e5,gc28159a63d+0e5473021a,gcf0d15dbbd+a761f810f3,gdaeeff99f8+f9a426f77a,ge6526c86ff+d4c1d4bfef,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf1cff7945b+f5613e8b4f,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Friends | List of all members
lsst::afw::fits::MemFileManager Class Reference

Lifetime-management for memory that goes into FITS memory files. More...

#include <fits.h>

Public Member Functions

 MemFileManager ()
 Construct a MemFileManager with no initial memory buffer.
 
 MemFileManager (std::size_t len)
 Construct a MemFileManager with (len) bytes of initial memory.
 
 MemFileManager (void *ptr, std::size_t len)
 Construct a MemFileManager that references and does not manage external memory.
 
void reset ()
 Return the manager to the same state it would be if default-constructed.
 
void reset (std::size_t len)
 Set the size of the internal memory buffer, freeing the current buffer if necessary.
 
void reset (void *ptr, std::size_t len)
 Set the internal memory buffer to an manually-managed external block.
 
 ~MemFileManager ()
 
 MemFileManager (const MemFileManager &)=delete
 
MemFileManageroperator= (const MemFileManager &)=delete
 
 MemFileManager (MemFileManager &&)=delete
 
MemFileManageroperator= (MemFileManager &&)=delete
 
void * getData () const
 Return the buffer.
 
std::size_t getLength () const
 Return the buffer length.
 

Friends

class Fits
 

Detailed Description

Lifetime-management for memory that goes into FITS memory files.

Definition at line 125 of file fits.h.

Constructor & Destructor Documentation

◆ MemFileManager() [1/5]

lsst::afw::fits::MemFileManager::MemFileManager ( )
inline

Construct a MemFileManager with no initial memory buffer.

The manager will still free the memory when it goes out of scope, but all allocation and reallocation will be performed by cfitsio as needed.

Definition at line 133 of file fits.h.

133: _ptr(nullptr), _len(0), _managed(true) {}

◆ MemFileManager() [2/5]

lsst::afw::fits::MemFileManager::MemFileManager ( std::size_t len)
inlineexplicit

Construct a MemFileManager with (len) bytes of initial memory.

The manager will free the memory when it goes out of scope, and cfitsio will be allowed to reallocate the internal memory as needed.

Definition at line 141 of file fits.h.

141: _ptr(nullptr), _len(0), _managed(true) { reset(len); }
void reset()
Return the manager to the same state it would be if default-constructed.
Definition fits.cc:486

◆ MemFileManager() [3/5]

lsst::afw::fits::MemFileManager::MemFileManager ( void * ptr,
std::size_t len )
inline

Construct a MemFileManager that references and does not manage external memory.

The manager will not manage the given pointer, and it will not allow cfitsio to do so either. The user must provide enough initial memory and is responsible for freeing it manually after the FITS file has been closed.

Definition at line 150 of file fits.h.

150: _ptr(ptr), _len(len), _managed(false) {}
uint64_t * ptr
Definition RangeSet.cc:95

◆ ~MemFileManager()

lsst::afw::fits::MemFileManager::~MemFileManager ( )
inline

Definition at line 184 of file fits.h.

184{ reset(); }

◆ MemFileManager() [4/5]

lsst::afw::fits::MemFileManager::MemFileManager ( const MemFileManager & )
delete

◆ MemFileManager() [5/5]

lsst::afw::fits::MemFileManager::MemFileManager ( MemFileManager && )
delete

Member Function Documentation

◆ getData()

void * lsst::afw::fits::MemFileManager::getData ( ) const
inline

Return the buffer.

Definition at line 195 of file fits.h.

195{ return _ptr; }

◆ getLength()

std::size_t lsst::afw::fits::MemFileManager::getLength ( ) const
inline

Return the buffer length.

Definition at line 198 of file fits.h.

198{ return _len; }

◆ operator=() [1/2]

MemFileManager & lsst::afw::fits::MemFileManager::operator= ( const MemFileManager & )
delete

◆ operator=() [2/2]

MemFileManager & lsst::afw::fits::MemFileManager::operator= ( MemFileManager && )
delete

◆ reset() [1/3]

void lsst::afw::fits::MemFileManager::reset ( )

Return the manager to the same state it would be if default-constructed.

This must not be called while a FITS file that uses this memory is open.

Definition at line 486 of file fits.cc.

486 {
487 if (_managed) std::free(_ptr);
488 _ptr = nullptr;
489 _len = 0;
490 _managed = true;
491}
T free(T... args)

◆ reset() [2/3]

void lsst::afw::fits::MemFileManager::reset ( std::size_t len)

Set the size of the internal memory buffer, freeing the current buffer if necessary.

This must not be called while a FITS file that uses this memory is open.

Memory allocated with this overload of reset can be reallocated by cfitsio and will be freed when the manager goes out of scope or is reset.

Definition at line 493 of file fits.cc.

493 {
494 reset();
495 _ptr = std::malloc(len);
496 _len = len;
497 _managed = true;
498}
T malloc(T... args)

◆ reset() [3/3]

void lsst::afw::fits::MemFileManager::reset ( void * ptr,
std::size_t len )
inline

Set the internal memory buffer to an manually-managed external block.

This must not be called while a FITS file that uses this memory is open.

Memory passed to this overload of reset cannot be reallocated by cfitsio and will not be freed when the manager goes out of scope or is reset.

Definition at line 177 of file fits.h.

177 {
178 reset();
179 _ptr = ptr;
180 _len = len;
181 _managed = false;
182 }

Friends And Related Symbol Documentation

◆ Fits

friend class Fits
friend

Definition at line 201 of file fits.h.


The documentation for this class was generated from the following files: