Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Google's C++ style guide says "We do not use exceptions". The style does not mention STL with respect to usage of exception. Since STL allocators can fail, how do they handle exceptions thrown by containers?

  1. If they use STL, how is the caller informed of allocation failures? STL methods like push_back() or map operator[] do not return any status codes.
  2. If they do not use STL, what container implementation do they use?
share|improve this question
2  
Before I came in and yelled until I got my way, the shop I work at had the same silly convention. We just ignored reality. My bet is that this is also what google does. – Crazy Eddie Mar 3 '11 at 17:42
4  
Google has pretty archaic standards. Guess they hire a lot of students and only can afford a small number of C++ wizards. – Maxim Yegorushkin Mar 3 '11 at 17:56
5  
No need to assert NULL pointers. Just crash and burn. Rule of Repair: Repair what you can — but when you must fail, fail noisily and as soon as possible. – Maxim Yegorushkin Mar 3 '11 at 18:15
7  
@Maxim: that's why you need to assert null pointers, to follow that advice. If you don't assert, there's a risk that your code might fail to crash and burn, because "undefined behavior" does not mean "segfault immediately". Admittedly a small risk, but consider for example theregister.co.uk/2009/07/17/linux_kernel_exploit – Steve Jessop Mar 3 '11 at 18:30
4  
@Maxim: "Mapping a page at 0 address is asking for trouble." - quite, and attackers generally are asking for trouble when they maliciously pull some such stunt. That's just an example, though. If you act as though you're guaranteed to get a segfault from accessing a null pointer, eventually the compiler will surprise you (or someone else like you) by not guaranteeing that. Undefined behavior can travel back in time to make demons fly out of your nose as soon as the program starts. Either fail as soon as possible, or else don't, but don't expect to fail and then not fail. – Steve Jessop Mar 3 '11 at 22:20
show 7 more comments

5 Answers

They say that they don't use exceptions, not that nobody should use them. If you look at the rational they also write:

"Because most existing C++ code at Google is not prepared to deal with exceptions, it is comparatively difficult to adopt new code that generates exceptions".

The usual legacy problem. :-(

share|improve this answer
And the question is how they deal with the consequences of that decision for the STL container interfaces, not how anybody else does ;-) – Steve Jessop Mar 3 '11 at 17:36
1  
Not just a legacy problem. Writing exception-safe code is not trivial and no tool exists (that I know of) that helps the developers here too. So, even new codes are prone to exception dangers. – kirakun Mar 3 '11 at 17:37
1  
The question is not "is their decision reasonable, or shoudl everybody follow their decision". No, no, and no. The question is, is it possible to use stl containers and abide by this rule. – Andrei Mar 3 '11 at 18:54
Let's be fair. Of their 6 reasons against exceptions, only one is related to legacy. Five others "cons" do not have anything to do with legacy. – Andrei Mar 5 '11 at 5:43
4  
There are cons with their method as well, like having to all an Init() function for the objects. What if you forget one call? How do you do it for temporary objects? Don't use that? Do you have an empty Init() function for all classes, or do you add one just when you discover you need one? Then how do you find all places where you need to add an Init() call? They say that exceptions forces you to use RAII, and that is supposed to be hard. If you don't use exceptions, you must check return codes or object validity all over the place. That is even harder to get right. – Bo Persson Mar 5 '11 at 8:21

I'm pretty sure that they mean they do not use exceptions in their code. If you check out their cpplint script, it does check to ensure you are including the correct headers for STL containers (like vector, list, etc).

share|improve this answer
1  
Homm so do they wrap every single call to stl method into catch(...) ? – Andrei Mar 3 '11 at 17:36
2  
Mark, if you mean "they do not throw exceptions in ther code, but they allow the code they call to throwexceptions", this interpretation is wrong. CLick on small triangle to the left of the rule. From explanations, it becomes clear that they do not want exceptions thrown from underlying code, too. – Andrei Mar 3 '11 at 18:56
2  
As stated in the "Exceptions to the Rules" section "You may diverge from the rules when dealing with code that does not conform to this style guide." certainly STL was not designed with Google conventions in mind. – Ismael Mar 4 '11 at 15:07

We simply don't handle exceptions thrown by containers, at least in application-level code.

I've been an engineer at Google Search working in C++ since 2008. We do use STL containers often. I cannot personally recall a single major failure or bug that was ever traced back to something like vector::push_back() or map::operator[] failing, where we said "oh man, we have to rewrite this code because the allocation could fail" or "dang, if only we used exceptions, this could have been avoided." Does a process ever run out of memory? Yes, but this is usually a simple mistake (e.g., someone added a large new data file to the program and forgot to increase the RAM allocation) or a catastrophic failure where there's no good way to recover and proceed. Our system already manages and restarts jobs automatically to be robust to machines with faulty disks, cosmic rays, etc., and this is really no different.

So as far as I can tell, there is no problem here.

share|improve this answer
@Hinata Hyuga: You removed information that is relevant to the question. – Loki Astari Mar 22 at 7:07
2  
@Hinata Hyuga: Thanks for the suggestions, but I agree with Loki Astari; my answer relies entirely on my personal experience at Google, which, I believe, is a valid source when answering a Stack Overflow question. I have taken some of your suggestions for grammar though. Thanks, both! – hoffmanj Mar 22 at 18:01

There is only one possibility to handle allocation failure under assumptions outlined in the question:

  • that allocator force application exit on allocation failure. In particular, this requires the cusror allocator.

Index-out-of-bound exceptions are less interesting in this context, because application can ensure they won't happen using pre-checks.

share|improve this answer

I have found that Google mentions this explicitly about STL and exceptions (emphasis is mine):

Although you should not use exceptions in your own code, they are used extensively in the ATL and some STLs, including the one that comes with Visual C++. When using the ATL, you should define _ATL_NO_EXCEPTIONS to disable exceptions. You should investigate whether you can also disable exceptions in your STL, but if not, it is OK to turn on exceptions in the compiler. (Note that this is only to get the STL to compile. You should still not write exception handling code yourself.)

I don't like such decisions (lucky that I am not working for Google), but they are quite clear about their behaviour and intentions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.