LSST Applications g04a91732dc+b257dfc5ef,g07dc498a13+7e3c5f68a2,g12483e3c20+719ef69748,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+9f35e23ec3,g35bb328faa+fcb1d3bbc8,g3bd4b5ce2c+376b67b515,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+719ef69748,g6a5c94f25a+5f44f05f97,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g794fd9dcec+ed0768eb49,g7b71ed6315+fcb1d3bbc8,g8852436030+a85a031248,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g919ac25b3e+7deac9a2c2,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+c9b5dfb7a3,ga9baa6287d+719ef69748,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+5c5d870f02,gb44bc621b2+6e77abaf78,gb58c049af0+f03b321e39,gbaa7868d32+719ef69748,gc45c3306ec+33b3578538,gc99c83e5f0+76d20ab76d,gcf25f946ba+a85a031248,gd315a588df+0122250889,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+aaea62184c,ge278dab8ac+932305ba37,gfba249425e+fcb1d3bbc8,w.2025.08
LSST Data Management Base Package
Loading...
Searching...
No Matches
Persistable.h File Reference
#include <climits>
#include "lsst/base.h"
#include "lsst/pex/exceptions.h"
#include "lsst/afw/fitsDefaults.h"

Go to the source code of this file.

Classes

class  lsst::afw::table::io::PersistenceError
 An exception thrown when problems occur during persistence. More...
 
class  lsst::afw::table::io::MalformedArchiveError
 An exception thrown when an InputArchive's contents do not make sense. More...
 
class  lsst::afw::table::io::Persistable
 A base class for objects that can be persisted via afw::table::io Archive classes. More...
 
class  lsst::afw::table::io::PersistableFacade< T >
 A CRTP facade class for subclasses of Persistable. More...
 
class  lsst::afw::table::io::PersistableFactory
 A base class for factory classes used to reconstruct objects from records. More...
 

Namespaces

namespace  lsst
 
namespace  lsst::afw
 
namespace  lsst::afw::fits
 
namespace  lsst::afw::table
 
namespace  lsst::afw::table::io
 

Macros

#define LSST_ARCHIVE_ASSERT(EXPR)
 An assertion macro used to validate the structure of an InputArchive.
 

Macro Definition Documentation

◆ LSST_ARCHIVE_ASSERT

#define LSST_ARCHIVE_ASSERT ( EXPR)
Value:
if (!(EXPR)) \
throw LSST_EXCEPT(lsst::afw::table::io::MalformedArchiveError, "Archive assertion failed: " #EXPR)
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
An exception thrown when an InputArchive's contents do not make sense.
Definition Persistable.h:39

An assertion macro used to validate the structure of an InputArchive.

This assertion is not enabled/disabled by NDEBUG, and throws an exception rather than aborting, and should be reserved for errors that should only occur when an InputArchive is found to be in a state that could not have been produced by an OutputArchive.

Definition at line 48 of file Persistable.h.

48#define LSST_ARCHIVE_ASSERT(EXPR) \
49 if (!(EXPR)) \
50 throw LSST_EXCEPT(lsst::afw::table::io::MalformedArchiveError, "Archive assertion failed: " #EXPR)