00001 /*======================================================================= 00002 * Copyright 1991-1996, Silicon Graphics, Inc. 00003 * ALL RIGHTS RESERVED 00004 * 00005 * UNPUBLISHED -- Rights reserved under the copyright laws of the United 00006 * States. Use of a copyright notice is precautionary only and does not 00007 * imply publication or disclosure. 00008 * 00009 * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND: 00010 * Use, duplication or disclosure by the Government is subject to restrictions 00011 * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights 00012 * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or 00013 * in similar or successor clauses in the FAR, or the DOD or NASA FAR 00014 * Supplement. Contractor/manufacturer is Silicon Graphics, Inc., 00015 * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311. 00016 * 00017 * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY 00018 * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION, 00019 * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY 00020 * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON 00021 * GRAPHICS, INC. 00022 **=======================================================================*/ 00023 /*======================================================================= 00024 ** Author : Paul S. Strauss (MMM yyyy) 00025 **=======================================================================*/ 00026 /*======================================================================= 00027 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00028 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00029 *** *** 00030 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00031 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00032 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00033 *** *** 00034 *** RESTRICTED RIGHTS LEGEND *** 00035 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00036 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00037 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00038 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00039 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00040 *** *** 00041 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00042 *** BORDEAUX, FRANCE *** 00043 *** ALL RIGHTS RESERVED *** 00044 **=======================================================================*/ 00045 /*======================================================================= 00046 ** Modified by : VSG (Feb 2010) 00047 **=======================================================================*/ 00048 00049 #ifndef _SO_ERROR 00050 #define _SO_ERROR 00051 00052 #include <Inventor/SbBase.h> 00053 #include <Inventor/SbString.h> 00054 #include <Inventor/SoTypedObject.h> 00055 00056 class SoError; 00057 class SoBase; 00058 class SoEngine; 00059 class SoNode; 00060 class SoPath; 00061 00066 typedef void SoErrorCB(const SoError *error, void *data); 00067 00107 class SoError: public SoTypedObject { 00108 00109 public: 00113 static void setHandlerCallback(SoErrorCB *cb, void *data); 00118 static SoErrorCB* getHandlerCallback(); 00123 static void* getHandlerData(); 00124 00128 const SbString& getDebugString() const { return debugString; } 00129 00133 static SoType getClassTypeId(); 00134 00138 virtual SoType getTypeId() const; 00139 00143 virtual ~SoError() {} 00144 00149 SoPRINTF static void post(const char *formatString ...); 00150 00151 private: 00152 // Initializes SoError class 00153 static void initClass(); 00154 static void exitClass(); 00155 00156 static SoErrorCB* getDefaultHandlerCB() { return defaultHandlerCB; } 00157 00158 private: 00159 // The default error handler callback - it just prints to stderr 00160 static void defaultHandlerCB(const SoError *error, void *data); 00161 00162 // Returns handler callback (and data) to use for a given instance 00163 virtual SoErrorCB * getHandler(void *&data) const; 00164 virtual bool isInit() const; 00165 00166 // Sets/appends to the debug string 00167 void setDebugString(const SbString& string) 00168 { debugString = string; } 00169 void appendToDebugString(const SbString& string) 00170 { debugString += string; } 00171 00172 // Calls appropriate handler for an error instance. Application 00173 // writers can set breakpoints at this when debugging. 00174 void handleError(); 00175 00180 virtual void setDebugStringCapacity( int capacity ); 00181 00182 private: 00183 // Type id of SoError class 00184 static SoType classTypeId; 00185 // Handler callback for SoError class 00186 static SoErrorCB *handlerCB; 00187 // User data for callback 00188 static void *cbData; 00189 // TRUE if handler initialized 00190 static SbBool wasInitted; 00191 // Detailed error message string 00192 SbString debugString; 00193 // The getString() methods use this one 00194 static SbString getBaseString(const SoBase *base, const char *what); 00195 // allow to disable user error handler and keep everything in stderr. 00196 // see SoPreferences env var OIV_FORCE_DEFAULT_ERROR_HANDLER 00197 static SbBool s_forceDefaultHandler; 00198 }; 00199 00200 #endif /* _SO_ERROR */ 00201 00202 00203