-
-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added missing virtual destructors #218
base: master
Are you sure you want to change the base?
Added missing virtual destructors #218
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #218 +/- ##
=======================================
Coverage 95.53% 95.54%
=======================================
Files 16 17 +1
Lines 1075 1077 +2
=======================================
+ Hits 1027 1029 +2
Misses 48 48 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if the general assumption that not having a virtual destructor leads to memory holds water, but there should be a virtual destructor if there's at least one virtual function in the class (or in a base class).
@@ -81,7 +81,7 @@ class String | |||
explicit String(unsigned long, unsigned char base=10); | |||
explicit String(float, unsigned char decimalPlaces=2); | |||
explicit String(double, unsigned char decimalPlaces=2); | |||
~String(void); | |||
virtual ~String(void); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you think that String
warrants a virtual
destructor? Is there any virtual
function in the class? On a quick glance I could not find one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This question answer is as simple as understanding if we want to allow the user to extend the arduino::String
class
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This question answer is as simple as understanding if we want to allow the user to extend the
arduino::String
class
Undefined behaviour is related to having any virtual function, not to inheritance.
So currently, we do need to add a virtual destructor to Print
because it has a virtual functions.
Thus, a virtual destructor is not currently a necessity for String
. I can inherit from String
, ex. MyString
and use MyString
all along my code, without any undefined behaviour.
However, you might want to add a virtual destructor to String
because you expect users to add virtual functions to their MyString
. But that's more about securing the code about expected usages than fixing the current code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can have memory leaks if in MyString
class I allocate something that needs to be deleted, I create a proper destructor, I reference it with a pointer to String
then I delete it, the derived class destructor is not called.
The answer, in my opinion, is not strictly limited to "String
doesn't have virtual methods", because I could want some features of String
class and extend them with my custom features. I think you can implement a solution in other better ways, like by embedding String
instead. Thus my question: do we want to allow the user to extend String
class?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need further investigation, both on functionality and code size increase (if any)
It is enough to add virtual destructor to Print, because Stream, Client, Server, HardwareI2C and HardwareSerial are inherited from Print with |
@JAndrassy I think that removing the virtual destructor from the classes derived from Print may lead to the same issue when referencing, for example, a derived class of Client with a |
@andreagilardoni I think the existence of virtual destructor in the top class of the hierarchy is enough. it forces the runtime to look into the table of virtual functions and execute the right destructor (as it works for any other virtual function) |
@JAndrassy I tried that and you are right. Below you can find how I checked that, for future reference. I will then delete the virtual modifier from derived classes #include <iostream>
class A {
public:
virtual ~A() { std::cout << "destroyng A" << std::endl; }
virtual void foo() = 0;
};
class B: public A {
public:
~B() { std::cout << "destroyng B" << std::endl; }
void foo() { std::cout << "foo B" << std::endl; }
};
class C: public B {
public:
~C() { std::cout << "destroyng C" << std::endl; }
void foo() { std::cout << "foo C" << std::endl; }
};
int main() {
std::cout << "example 1" << std::endl;
A* a = new C();
a->foo();
delete a;
std::cout << "example 2" << std::endl;
B* b = new C();
b->foo();
delete b;
return 0;
} |
ac60f9c
to
722dd67
Compare
@andreagilardoni |
722dd67
to
9f42b34
Compare
9f42b34
to
c37cff5
Compare
The crucial point about virtual destructors is that if you delete an object of a derived class using a base class pointer, the base class must have a virtual destructor, or you will have undefined behavior. Which can have any implications really, depending on what the compiler chooses to do - not just, or even, memory leaks. Compilers can emit very strange machine code for undefined behavior, and the emitted code can vary a lot depending on many different factors that are hard to predict. So even thinking it's ok because you tested and nothing went wrong is a false assumption. I think the rule about adding a virtual destructor if there's a virtual function arose from the Joint Strike Fighter project's coding standard (at least there's where I saw it first), but you can have undefined behavior even without virtual functions. It's not a matter of what is logical either, but a matter of the compiler writers being free to do whatever they like that makes their lives easier, when the compiler encounters undefined behavior. So you can use one or both of the following rules:
The relevant part of the standard is 5.3.5 point 3 for C++11, for example. |
Not exactly. For example, in:
We must add the virtual keyword above to get the undefined behaviour warning from gcc. It doesn't show without it. Namely, there is absolutely no problem in having class inheritance without any virtual destructor (though the destructor of the inheriting class might not be called then if there is no virtual destructor on the base class and the delete function is called on a pointer to the base class, but that's another issue). So, undefined behaviour is related to having any virtual function, not to inheritance. |
That doesn't contradict it being undefined behavior. There's no requirement in the standard to issue a diagnostic message for undefined behavior, neither is it forbidden to do so (see 1.3.24). Which means that a compiler may give you a warning about undefined behavior, or it may not. For sure, your example with the virtual keyword is an example of undefined behavior, and GCC is nice enough to warn you even though it's not required. But that doesn't mean that cases where it doesn't emit warnings aren't undefined behavior. The only way to determine if it's undefined behavior or not is to compare the code with the wording of the standard. And 5.3.5 point 3 of the standard makes the case in this issue undefined behavior. Undefined behavior doesn't require your compiled code to break - it just allows the compiler writers to do whatever is convenient for them. They may do that in a way that makes the code work flawlessly on a particular compiler version. And then they might not decide to issue a warning for that code even though it contains undefined behavior. But you can never rely on a specific compiler version - even combined with a huge amount of testing of the generated code - to determine that there's no undefined behavior present. Even a future version of the same compiler might behave differently, and then, all that's required is a recompile to have the latent bug manifest itself. You might get lucky that they add a warning when they make the change, or they might not, because they're not required to by the standard. |
The missing destructor also leads to linker errors. I'm facing this exact issue when e.g. cross-compiling with newer gnu compiler versions gccarmnoneeabi code for nrf52 target on a raspberry pi. |
When we have classes that may be derived in c++ it is important to always put a virtual empty destructor, in particular on abstract classes, because this can lead to memory leaks.