umbrello 2.34.3
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
|
Public Attributes | |
const char * | name |
bool | state |
const char * | filePath |
The client info filled by registerClass() needs to be Plain Old Data (not requiring a constructor) as opposed to C++ class with complex constructor because registerClass() is called very early in program execution, in the "static initialization". The static initialization is done before the main program starts executing. The compiler/linker determines the order in which static data are initialized, and the compiler/linker chosen order may not coincide with the programmer's expectation. If a global or static object of a class has a constructor in which methods of other global/static class objects are called then these calls can easily result in crash. It cannot be naively assumed that the other objects have already been constructed at the time of the call because the compiler/linker may have chosen a contrary ordering whereby their static initialization is done afterwards.
First example of problem: Controlled termination via fatal message from Qt, "QWidget: Must construct a QApplication before a QWidget" in this case happening on CodeEditorTracer but happens on other classes as well, #5 QMessageLogger::fatal (this=this@entry=0x7fffffffd2e0, msg=msg@entry=0x7ffff63cebc8 "QWidget: Must construct a QApplication before a QWidget") at global/qlogging.cpp:893 #6 0x00007ffff600c8d1 in QWidgetPrivate::QWidgetPrivate (this=<optimized out>, this@entry=0xb1b070, version=<optimized out>, version@entry=331522) at kernel/qwidget.cpp:191 #7 0x00007ffff61069ae in QFramePrivate::QFramePrivate (this=this@entry=0xb1b070) at widgets/qframe.cpp:60 #8 0x00007ffff6107989 in QAbstractScrollAreaPrivate::QAbstractScrollAreaPrivate (this=this@entry=0xb1b070) at widgets/qabstractscrollarea.cpp:167 #9 0x00007ffff6286179 in QAbstractItemViewPrivate::QAbstractItemViewPrivate (this=this@entry=0xb1b070) at itemviews/qabstractitemview.cpp:119 #10 0x00007ffff6313e2b in QTreeViewPrivate::QTreeViewPrivate (this=0xb1b070) at ../../include/QtWidgets/5.15.2/QtWidgets/private/../../../../../src/widgets/itemviews/qtreeview_p.h:88 #11 QTreeWidgetPrivate::QTreeWidgetPrivate (this=0xb1b070) at ../../include/QtWidgets/5.15.2/QtWidgets/private/../../../../../src/widgets/itemviews/qtreewidget_p.h:225 #12 QTreeWidget::QTreeWidget (this=0xb17bd0, parent=0x0) at itemviews/qtreewidget.cpp:2662 #13 0x000000000048ff02 in Tracer::Tracer (this=0xb17bd0, parent=0x0) at /umbrello-master/umbrello/debug/debug_utils.cpp:33 #14 0x000000000048fec7 in Tracer::instance () at /umbrello-master/umbrello/debug/debug_utils.cpp:23 #15 0x0000000000490237 in Tracer::registerClass (name="CodeEditor", state=true, filePath="/umbrello-master/umbrello/dialogs/codeeditor.cpp") at /umbrello-master/umbrello/debug/debug_utils.cpp:109 #16 0x000000000049ef7f in CodeEditorTracer::CodeEditorTracer (this=0xadd6c0 <CodeEditorTracerGlobal>) at /umbrello-master/umbrello/dialogs/codeeditor.cpp:54 #17 0x000000000049e742 in __static_initialization_and_destruction_0 (__initialize_p=1, __priority=65535) at /umbrello-master/umbrello/dialogs/codeeditor.cpp:54 #18 0x000000000049e758 in _GLOBAL__sub_I_codeeditor.cpp(void) () at /umbrello-master/umbrello/dialogs/codeeditor.cpp:1534 #19 0x00007ffff4bf46fd in call_init (env=<optimized out>, argv=0x7fffffffd578, argc=1) at ../csu/libc-start.c:145 #20 __libc_start_main_impl (main=0x46f255 <main(int, char**)>, argc=1, argv=0x7fffffffd578, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffd568) at ../csu/libc-start.c:379 #21 0x000000000046ea75 in _start () at ../sysdeps/x86_64/start.S:116
Second example of problem: Crash in different client classes of Tracer, in this example running unittests/testoptionstate the SEGV happens on Tracer::registerClass call from UMLApp but also happens from other classes, (gdb) bt #0 std::__atomic_base<int>::load (__m=std::memory_order_relaxed, this=0x0) at /usr/include/c++/11/bits/atomic_base.h:481 #1 QAtomicOps<int>::loadRelaxed<int> (_q_value=...) at /usr/include/qt5/QtCore/qatomic_cxx11.h:239 #2 0x00000000004721c8 in QBasicAtomicInteger<int>::loadRelaxed (this=0x0) at /usr/include/qt5/QtCore/qbasicatomic.h:107 #3 0x000000000047162c in QtPrivate::RefCount::isShared (this=0x0) at /usr/include/qt5/QtCore/qrefcount.h:101 #4 0x000000000051c2b3 in QMap<QString, MapEntry>::detach (this=0xac5c30 <s_classes>) at /usr/include/qt5/QtCore/qmap.h:361 #5 0x000000000051bf27 in QMap<QString, MapEntry>::operator[] (this=0xac5c30 <s_classes>, akey="UMLApp") at /usr/include/qt5/QtCore/qmap.h:680 #6 0x000000000051b325 in Tracer::registerClass (name="UMLApp", state=true, filePath="/umbrello-master/umbrello/uml.cpp") at /umbrello-master/umbrello/debug/debug_utils.cpp:123 #7 0x0000000000497cd9 in UMLAppTracer::UMLAppTracer (this=0xac5640 <UMLAppTracerGlobal>) at /umbrello-master/umbrello/uml.cpp:127 #8 0x0000000000496240 in __static_initialization_and_destruction_0 (__initialize_p=1, __priority=65535) at /umbrello-master/umbrello/uml.cpp:127 #9 0x0000000000496256 in _GLOBAL__sub_I_uml.cpp(void) () at /umbrello-master/umbrello/uml.cpp:3590 #10 0x00007ffff4b9a6fd in call_init (env=<optimized out>, argv=0x7fffffffd568, argc=1) at ../csu/libc-start.c:145 #11 __libc_start_main_impl (main=0x4754fe <main(int, char**)>, argc=1, argv=0x7fffffffd568, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffd558) at ../csu/libc-start.c:379 #12 0x000000000046e9e5 in _start () at ../sysdeps/x86_64/start.S:116
const char* ClientInfo_POD::filePath |
const char* ClientInfo_POD::name |
bool ClientInfo_POD::state |