Would you like to wrap any pointer data members with the class template “std::unique_ptr” (or “QScopedPointer”)? Update candidates: * EditorPrivate https://github.com/KDE/ktexteditor/blob/14aa5fbf3722d1aad90a26952a87551c9daede0a/src/utils/kateglobal.cpp#L80 * GlobalState https://github.com/KDE/ktexteditor/blob/ac3c74dbc8a0b92f6e58993ce5744c5dec7912d6/src/vimode/globalstate.cpp#L34 * TextLoader https://github.com/KDE/ktexteditor/blob/917e2109126daedf7f8b718ac4410d2f5bde37ac/src/buffer/katetextloader.h#L53
The question is what specific problem is addressed with such a potential change? And the next one, even if we use a unique_ptr and an exception happens, who will catch the exception? In the Qt and KDE world exceptions are pretty much not used at all. So if an exception is thrown and no one catches it, the application will crash just like before. Using a std::unique_ptr is certainly good practice in certain contexts, e.g. when using the pimpl approach (the d-pointers). Besides that, it is also common in Qt to have the parent/child hierarchy, so many objects' lifetime is managed by the parent QObject; in this case we do not need a unique_ptr at all typically. Since there is no particular issue here at hand that needs a fix, I'll close as "not a bug" for now. If you have patches for KSyntaxHighlighting, KTextEditor, or Kate, please contact us again best on http://phabricator.kde.org, or for bugs of course here via the bug tracker :-)
(In reply to Dominik Haumann from comment #1) > In the Qt and KDE world exceptions are pretty much not used at all. They can eventually be thrown because of standard functionality by the C++ programming language. > So if an exception is thrown and no one catches it, > the application will crash just like before. Would you like to achieve an adjusted software behaviour for a robust text editor? > Besides that, it is also common in Qt to have the parent/child hierarchy, > so many objects' lifetime is managed by the parent QObject; Does this information apply to the mentioned source code places (which I pointed out as update candidates)? > in this case we do not need a unique_ptr at all typically. This can be fine for other software situations. > Since there is no particular issue here at hand that needs a fix, Do you care for advice from known programming guide lines? https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#r11-avoid-calling-new-and-delete-explicitly > I'll close as "not a bug" for now. I suggest to reconsider this view. Does this software still depend on a build configuration which uses a compilation parameter like “-fno-exceptions”?
Hi, exception safety is of no concern for us. If any of the standard functions throws (like e.g. new), we can't recover anyways and the standard handler will abort (or we will crash). The same holds for any out-of-bounds/... errors, they shall terminate. We don't use exceptions for recoverable error handling. If you take a look at what Qt promises, it is more or less the same on the level beyond pure containers. http://doc.qt.io/qt-5/exceptionsafety.html On the other side, I have no issues with improving the use of raw pointers. I can agree that the guidelines to avoid them and wrap them in zero-cost unique_ptr's for example if feasible sounds ok. For example m_macros = new Macros(); m_mappings = new Mappings(); m_registers = new Registers(); m_searchHistory = new History(); m_replaceHistory = new History(); in GlobalState looks like such a case. On the other side, I am not sure why this things are not just in-place members, which would avoid the heap-allocation. (perhaps to hide them from the header, but given this is a purely internal class, I would not mind that being changed). If you have time to do such cleanups, which lead to less potential memory handling errors, any patch on http://phabricator.kde.org is welcome.
(In reply to Christoph Cullmann from comment #3) > exception safety is of no concern for us. * I find such information strange for C++ programmers. * I assume that involved parties would care more for involved software development concerns under specific circumstances. > If any of the standard functions throws (like e.g. new), we can't recover > anyways and the standard handler will abort (or we will crash). Can it become more interesting to let some destructors perform useful work at the end? > in GlobalState looks like such a case. Thanks that you can follow my development view to some degree here. > On the other side, I am not sure why this things are not just in-place members, > which would avoid the heap-allocation. Would you like to reduce dynamic memory allocation instead?
>> exception safety is of no concern for us. >* I find such information strange for C++ programmers. >* I assume that involved parties would care more for involved software development concerns under specific circumstances. Why? We don't use exceptions, like a lot of other software projects. See e.g. LLVM/clang's stance for this http://llvm.org/docs/CodingStandards.html#do-not-use-rtti-or-exceptions As we don't use them nor do we use any libraries that emit any exceptions that we want to catch, it is totally valid to not care for them. Even if we would need to catch some emitted by low-level libraries, one should do that directly at the call-sites to encapsule that. 0% of the code in KTextEditor is prepared to be interrupted by exceptions, it makes no sense to no start to pseudo-care for that at a few locations. I see value in making code easier to maintain for things we need to take care of, e.g. resource management via smart pointers, doing locking via mutex lockers and not manual lock/unlock, .... > > On the other side, I am not sure why this things are not just in-place members, > > which would avoid the heap-allocation. > Would you like to reduce dynamic memory allocation instead? If that change doesn't lead to some include nightmare, I would go for in-place members, yes.
(In reply to Christoph Cullmann from comment #5) > As we don't use them nor do we use any libraries that emit any exceptions Do you use the C++ standard library occasionally? > that we want to catch, it is totally valid to not care for them. I suggest to reconsider such a view once more. Would you like to be prepared for “std::bad_alloc” (as a well-known example)? > 0% of the code in KTextEditor is prepared to be interrupted by exceptions, I find this information questionable. Interruptions can occur. I guess that it can become more important if reasonable program behaviour is provided also in exceptional software situations. > I see value in making code easier to maintain for things we need to take care > of, e.g. resource management via smart pointers, doing locking via mutex > lockers and not manual lock/unlock, .... Does this feedback qualify to reopen the bug report? > If that change doesn't lead to some include nightmare, Are you concerned for such software build dependencies? > I would go for in-place members, yes. I am curious if the reduction of dynamic memory allocation can evolve further.
>> As we don't use them nor do we use any libraries that emit any exceptions > Do you use the C++ standard library occasionally? We do, but as said, any exceptions that will be emitted there will always lead to program abort for us, as we can't handle them anyways. See below > I suggest to reconsider such a view once more. > Would you like to be prepared for “std::bad_alloc” (as a well-known example)? That is a good example for 1) we can't do anything then anyways, there is really no way to handle that in a sane way for a GUI application beside just die, which happens without any special handling 2) you will get that close to never, as e.g. Linux over-commits, you will just later silently segfault (and yes, that is the cruel reality, in my daily work I must always cope with that) Same holds for any of the other exceptions e.g. std::vector might throw for out-of-bounds accesses. It's perfectly fine to abort, we can't handle that anyways, if we could, we shall have already done an out-of-bound check before. (like we do in many places) > Interruptions can occur. I guess that it can become more important if reasonable program behaviour is provided also in exceptional software situations. => As told above: Interruptions can only for occur situations in which we don't care, as we will die anyways. We don't use exceptions for any recoverable error handling. > Does this feedback qualify to reopen the bug report? No, but you can provide patches for improvements, but please not for exceptions safety issues that just not exist given the lack of them. Bugs are not there to discuss about theoretical software engineering improvements but for concrete issues ;=) If you can point out that we have a leak, crash, ..., please open a bug for that.
(In reply to Christoph Cullmann from comment #7) > 1) we can't do anything then anyways, … Can you catch a C++ exception in the function “main” and choose a more appropriate program error code? > 2) you will get that close to never, as e.g. Linux over-commits, System administrators can select other settings. https://lwn.net/Articles/317814/ > you will just later silently segfault > (and yes, that is the cruel reality, in my daily work I must always cope > with that) Did you get used also to any special software situations? > No, but you can provide patches for improvements, but please not for > exceptions safety issues Would you pick any change possibilities up for better software maintenance? > that just not exist given the lack of them. Exception-unsafety exists if a compilation parameter like “-fno-exceptions” will be omitted from a software build configuration, won't it? > If you can point out that we have a leak, crash, ..., > please open a bug for that. I have tried this here once again.
Hi, I will not comment on your last response in detail, this will just re-iterate. I stand to my position, more iterating will just waste my time and yours ;=) We are open for any code improvements, if you have one, open a review request at http://phabricator.kde.org If they are valuable, I am sure they will be approved. Not me alone will take a look there, I would propose to start with a small change and see how it is perceived and if the direction is the right one. If you have a concrete bug figured out, aka a missing delete, double delete, crash, ...., a dedicated bug is ok, or, even more cool if you have the time, submit a fixing patch at http://phabricator.kde.org
(In reply to Christoph Cullmann from comment #9) > We are open for any code improvements, … It seems that you have got still a restricted development view around safer handling of C++ exception safety. I am curious if other contributors can adjust this software situation better.
Markus: Discussion this in a bug report where there is no bug does not make sense, and you do not reach any audience here. I suggest you write to https://lists.qt-project.org/mailman/listinfo/development for a discussion on Qt level or to https://mail.kde.org/mailman/listinfo/kde-devel for a discussion on KDE level. This bug is closed, and no further discussions will happen here from our side.
(In reply to Dominik Haumann from comment #11) Source files contain questionable implementation details. It is just harder to achieve consensus for corresponding software adjustments.