Coin3D is Free Software, published under the BSD 3-clause license. |
https://bitbucket.org/Coin3D/ http://www.kongsberg.com/kogt/ |
The SoMemoryError class is used to inform of problems with memory allocation. More...
#include <Inventor/errors/SoMemoryError.h>
Public Member Functions | |
virtual SoType | getTypeId (void) const |
Public Member Functions inherited from SoError | |
virtual | ~SoError () |
const SbString & | getDebugString (void) const |
SbBool | isOfType (const SoType type) const |
Static Public Member Functions | |
static void | setHandlerCallback (SoErrorCB *const callback, void *const data) |
static SoErrorCB * | getHandlerCallback (void) |
static void * | getHandlerData (void) |
static SoType | getClassTypeId (void) |
static void | post (const char *const whatWasAllocated) |
static void | initClass (void) |
Static Public Member Functions inherited from SoError | |
static void | setHandlerCallback (SoErrorCB *const func, void *const data) |
static SoErrorCB * | getHandlerCallback (void) |
static void * | getHandlerData (void) |
static SoType | getClassTypeId (void) |
static void | post (const char *const format,...) |
static SbString | getString (const SoNode *const node) |
static SbString | getString (const SoPath *const path) |
static SbString | getString (const SoEngine *const engine) |
static void | initClass (void) |
static void | initClasses (void) |
Protected Member Functions | |
virtual SoErrorCBPtr | getHandler (void *&data) const |
Protected Member Functions inherited from SoError | |
void | setDebugString (const char *const str) |
void | appendToDebugString (const char *const str) |
void | handleError (void) |
Additional Inherited Members | |
Static Protected Member Functions inherited from SoError | |
static void | defaultHandlerCB (const SoError *error, void *userdata) |
The SoMemoryError class is used to inform of problems with memory allocation.
Modern operating systems takes care of handling most out of memory conditions for you, but in certain situations it can be wise to do some manual checking and intervention. This class is provided as an aid to help out in these situations.
The basic design of the Coin library is to pass on the responsibility for handling failed attempts at memory allocation to the application programmer. If you want to detect and take care of these, you should compile Coin with the C++ exception throwing on and wrap your code within try{}
and catch{}
blocks. The most you can do if you get a failed allocation is typically to notify the user and then exit the application, though, and this is something most operating systems will do for you, so you probably need not consider this at all.
So, where does the SoMemoryError class come in handy? There are certain things which could happen within the library which are best taken care of by internally handling failed attempts at memory allocation. An example: the user tries to load a model file which contains a filename pointer to a huge bitmapfile with a texture map. The end-user's system does not provide enough memory to load the file and prepare the texture image for rendering, though. This is a case where it is possible to just emit a warning and continue. The warning will then be passed through this class.
Note that SoMemoryError is probably not of much use to the application programmer.
|
virtual |
|
static |
Posts a warning about a failed memory allocation. whatWasAllocated should contain a description of what we tried to allocate.
|
protectedvirtual |
This is just a convenience wrapper around the getHandlerCallback() and getHandlerData() methods.
Reimplemented from SoError.