14#include "arccore/base/ArccoreGlobal.h"
15#include "arccore/base/TraceInfo.h"
16#include "arccore/base/PlatformUtils.h"
17#include "arccore/base/String.h"
18#include "arccore/base/IndexOutOfRangeException.h"
19#include "arccore/base/FatalErrorException.h"
24#include "arccore/base/Float16.h"
25#include "arccore/base/BFloat16.h"
32#ifndef ARCCORE_OS_WIN32
57static bool global_arccore_is_check =
true;
59static bool global_arccore_is_check =
false;
63extern "C++" ARCCORE_BASE_EXPORT
66 return global_arccore_is_check;
69extern "C++" ARCCORE_BASE_EXPORT
72 global_arccore_is_check = v;
80bool global_pause_on_error =
false;
83extern "C++" ARCCORE_BASE_EXPORT
void
86 global_pause_on_error = v;
89extern "C++" ARCCORE_BASE_EXPORT
void
92 if (global_pause_on_error){
93 std::ostringstream ostr;
95 ostr <<
"** FATAL: Debug mode activated. Execution paused\n"
96 <<
"** FATAL: message:" << msg <<
"\n"
97 <<
"** FATAL: To find the location of the error, start\n"
98 <<
"** FATAL: start the debugger using the process number\n"
100 std::cerr << ostr.str();
101#ifndef ARCCORE_OS_WIN32
110extern "C++" ARCCORE_BASE_EXPORT
void
120extern "C++" ARCCORE_BASE_EXPORT
void
124 throw IndexOutOfRangeException(A_FUNCINFO,String(),i,0,max_size);
130extern "C++" ARCCORE_BASE_EXPORT
void
140extern "C++" ARCCORE_BASE_EXPORT
void
143 std::cerr <<
"** FATAL: null pointer.\n";
144 std::cerr <<
"** FATAL: Trying to dereference a null pointer.\n";
152extern "C++" ARCCORE_BASE_EXPORT
void
166void _printFuncName(std::ostream& o,
const char* name)
168 const char* par_pos = std::strchr(name,
'(');
176 ptrdiff_t
len = par_pos - name;
177 ptrdiff_t last_scope = 0;
178 ptrdiff_t last_scope2 = 0;
179 for( ptrdiff_t i=0; i<
len; ++i ){
180 if (name[i]==
':' && name[i+1]==
':'){
181 last_scope2 = last_scope;
187 ptrdiff_t true_pos = last_scope2;
188 ptrdiff_t true_len =
len - true_pos;
189 o.write(&name[true_pos],true_len);
197extern "C++" ARCCORE_BASE_EXPORT std::ostream&
200 if (t.printSignature())
201 o << t.name() <<
":" << t.line();
203 _printFuncName(o,t.name());
217typedef void (*fDoAssert)(
const char*,
const char*,
const char*,size_t);
219typedef bool (*fCheckDebug)(
unsigned int);
229extern "C++" ARCCORE_BASE_EXPORT
void
230_doAssert(
const char* text,
const char* file,
const char* func,
int line)
232 if (g_do_assert_func)
233 (*g_do_assert_func)(text,file,func,line);
235 std::ostringstream ostr;
236 ostr << text <<
':' << file <<
':' << func <<
':' << line <<
": ";
244extern "C++" ARCCORE_BASE_EXPORT
void
251 vsnprintf(buffer,4095,format,ap);
253 std::cerr << buffer <<
"\n";
254 std::cout <<
"*E* " << buffer <<
"\n";
Gestion des références à une classe C++.
Exception lorsqu'une erreur fatale est survenue.
Exception lorsqu'une valeur n'est pas dans un intervalle donné.
Chaîne de caractères unicode.
Integer len(const char *s)
Retourne la longueur de la chaîne s.
void(* fDoAssert)(const char *, const char *, const char *, size_t)
Fonction appelée lorsqu'une assertion échoue.
std::ostream & operator<<(std::ostream &ostr, eItemKind item_kind)
Opérateur de sortie sur un flot.
Espace de nom de Arccore.
ARCCORE_BASE_EXPORT void arccoreThrowNullPointerError(const char *ptr_name, const char *text)
Signalee l'utilisation d'un pointeur nul en envoyant une exception.
ARCCORE_BASE_EXPORT void _doAssert(const char *text, const char *file, const char *func, int line)
ARCCORE_BASE_EXPORT void arccoreSetCheck(bool v)
Active ou désactive le mode vérification.
ARCCORE_BASE_EXPORT void arccoreRangeError(Int64 i, Int64 min_value_inclusive, Int64 max_value_exclusive)
Signale qu'une valeur n'est pas dans l'intervalle souhaité.
ARCCORE_BASE_EXPORT void arccoreNullPointerError()
Signalue l'utilisation d'un pointeur nul.
ARCCORE_BASE_EXPORT void arccorePrintf(const char *format,...)
Encapsulation de la fonction C printf.
ARCCORE_BASE_EXPORT void arccoreDebugPause(const char *msg)
Passe en mode pause ou lance une erreur fatale.
std::int64_t Int64
Type entier signé sur 64 bits.
ARCCORE_BASE_EXPORT bool arccoreIsCheck()
Vrai si on est en mode vérification.
ARCCORE_BASE_EXPORT void arccoreSetPauseOnError(bool v)
Indique si on l'appel à arccoreDebugPause() effectue une pause.