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"
26#include "arccore/base/Float128.h"
27#include "arccore/base/Int128.h"
34#ifndef ARCCORE_OS_WIN32
59static bool global_arccore_is_check =
true;
61static bool global_arccore_is_check =
false;
65extern "C++" ARCCORE_BASE_EXPORT
68 return global_arccore_is_check;
71extern "C++" ARCCORE_BASE_EXPORT
74 global_arccore_is_check = v;
82bool global_pause_on_error =
false;
85extern "C++" ARCCORE_BASE_EXPORT
void
88 global_pause_on_error = v;
91extern "C++" ARCCORE_BASE_EXPORT
void
94 if (global_pause_on_error){
95 std::ostringstream ostr;
97 ostr <<
"** FATAL: Debug mode activated. Execution paused\n"
98 <<
"** FATAL: message:" << msg <<
"\n"
99 <<
"** FATAL: To find the location of the error, start\n"
100 <<
"** FATAL: start the debugger using the process number\n"
102 std::cerr << ostr.str();
103#ifndef ARCCORE_OS_WIN32
112extern "C++" ARCCORE_BASE_EXPORT
void
113arccoreRangeError(
Int64 i,
Int64 min_value_inclusive,
Int64 max_value_exclusive)
116 throw IndexOutOfRangeException(A_FUNCINFO,String(),i,min_value_inclusive,max_value_exclusive);
122extern "C++" ARCCORE_BASE_EXPORT
void
126 throw IndexOutOfRangeException(A_FUNCINFO,String(),i,0,max_size);
132extern "C++" ARCCORE_BASE_EXPORT
void
136 throw IndexOutOfRangeException(A_FUNCINFO,String(),i,0,max_size);
142extern "C++" ARCCORE_BASE_EXPORT
void
143arccoreNullPointerError()
145 std::cerr <<
"** FATAL: null pointer.\n";
146 std::cerr <<
"** FATAL: Trying to dereference a null pointer.\n";
148 throw FatalErrorException(A_FUNCINFO,
"null pointer");
154extern "C++" ARCCORE_BASE_EXPORT
void
168void _printFuncName(std::ostream& o,
const char* name)
170 const char* par_pos = std::strchr(name,
'(');
178 ptrdiff_t
len = par_pos - name;
179 ptrdiff_t last_scope = 0;
180 ptrdiff_t last_scope2 = 0;
181 for( ptrdiff_t i=0; i<
len; ++i ){
182 if (name[i]==
':' && name[i+1]==
':'){
183 last_scope2 = last_scope;
189 ptrdiff_t true_pos = last_scope2;
190 ptrdiff_t true_len =
len - true_pos;
191 o.write(&name[true_pos],true_len);
199extern "C++" ARCCORE_BASE_EXPORT std::ostream&
202 if (t.printSignature())
203 o << t.name() <<
":" << t.line();
205 _printFuncName(o,t.name());
219typedef void (*fDoAssert)(
const char*,
const char*,
const char*,size_t);
221typedef bool (*fCheckDebug)(
unsigned int);
231extern "C++" ARCCORE_BASE_EXPORT
void
232_doAssert(
const char* text,
const char* file,
const char* func,
int line)
234 if (g_do_assert_func)
235 (*g_do_assert_func)(text,file,func,line);
237 std::ostringstream ostr;
238 ostr << text <<
':' << file <<
':' << func <<
':' << line <<
": ";
246extern "C++" ARCCORE_BASE_EXPORT
void
253 vsnprintf(buffer,4095,format,ap);
255 std::cerr << buffer <<
"\n";
256 std::cout <<
"*E* " << buffer <<
"\n";
Gestion des références à une classe C++.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Exception lorsqu'une erreur fatale est survenue.
Chaîne de caractères unicode.
std::ostream & operator<<(std::ostream &o, eExecutionPolicy exec_policy)
Affiche le nom de la politique d'exécution.
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.
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 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.
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.