The exception-safety tag has no wiki summary.
1
vote
3answers
101 views
Locking a mutex in a destructor in C++11
I have some code which need to be thread safe and exception safe. The code below is a very simplified version of my problem :
#include <mutex>
#include <thread>
std::mutex mutex;
int ...
0
votes
2answers
55 views
no-throw exception guarantee and stack overflow
There are several special functions which usually guarantee not to throw excpetions, e.g.:
Destructors
swap method
Consider the following swap implementation, as stated in this answer:
friend ...
2
votes
2answers
93 views
What prevents the compiler's optimization to reorder strongly exception-safe code?
Given Jon Kalb's strongly exception-safe code to solve the Cargill Widget example, what prevents the compiler from re-organizing the operations and thus making the code not strongly exception-safe?
...
0
votes
1answer
72 views
Lua, threads and C++ exceptions
I'm planning on suggesting to my development team that we start looking at lua instead of C++ for the project we're currently working on. On that subject I have a question that I need to clear up ...
1
vote
0answers
252 views
Creation of a strong reference to COM object in ROT with C#
I need to bind to a running COM instance (there can be many instances of what I am looking for, so I need to figure out which one is the right one by examinating the Running Object Table) Using ...
8
votes
1answer
162 views
How exception-safe is std::tie?
std::tie returns a tuple of references, so you can do the following:
int foo, bar, baz;
std::tie(foo, bar, baz) = std::make_tuple(1, 2, 3);
This is similar to foo, bar, baz = (1, 2, 3) in Python.
...
4
votes
3answers
114 views
How can an implementation guarantee that copy constructor of an iterator is no throw?
Clause 23.2.1.10 of C++11 standard says that
"no copy ctor of a returned iterator throws an exception"
Does this basically state that is it possible for a copy ctor of an iterator not to throw ...
4
votes
1answer
162 views
Exception-safety of C++ implicitly generated assignment operator
My understanding is that C++ implicitly generated assignment operator does a member-wise copy (this seems confirmed also by this answer). But, if during a member copy an exception is thrown (e.g. ...
7
votes
1answer
369 views
Is it safe to use emplace_back with a container of unique_ptrs?
Consider the following:
std::vector<std::unique_ptr<int>> ptrsToInts;
ptrsToInts.emplace_back(new int);
If reallocation occurs in the vector, and that fails (throwing std::bad_alloc), ...
3
votes
3answers
65 views
Idiom for exception safety relating to constructor parameters
I've been looking at some code I'm working on, and we have the equivalent of this:
AutoPtr<A> x;
...
/// x gets initialized
...
B* y = new B(x.Detach());
Where AutoPtr is our version of ...
5
votes
3answers
247 views
What is wrong with “checking for self-assignment” and what does it mean?
In Herb Sutter's book Exceptional C++ (1999), he has words in item 10's solution:
"Exception-unsafe" and "poor design" go hand in hand. If a piece of code isn't exception-safe, that's generally ...
0
votes
1answer
60 views
Is uninitialized_copy() exception-safe?
MSDN and other places say that uninitialized_copy provides a strong exception guarantee, but other C++ references don't.
Is this in fact guaranteed by C++, or not?
7
votes
3answers
526 views
Where can I find all the exception guarantees for the Standard Containers and Algorithms?
Yes, I've looked at the C++ standards that I could find (or the drafts), but I'm not finding any comprehensive of the exception guarantees given by STL containers. All I can find are occasional ...
7
votes
3answers
260 views
Exception safety regarding swap() operation - what's so wrong with that?
I keep reading that swap() operation, like this for example:
template<class T>
void swap (T &a, T &b)
{
T temp (a);
a = b;
b = temp;
}
is problematic when we are dealing with ...
3
votes
4answers
259 views
C++ exceptions vs. C# exceptions
In an old blog entry titled Cleaner, more elegant, and harder to recognize, the author states:
In C++ it's not quite so bad because C++ exceptions are raised only at specific points during ...
1
vote
2answers
190 views
Can Java exception safety be made less ugly?
Given the following code: We need to lock the model, then start a transaction (which could throw an exception so we have to make sure the lock is released), then do something kind of like getting a ...
6
votes
3answers
2k views
The simplest and neatest c++11 ScopeGuard
I'm attempting to write a simple ScopeGuard based on Alexandrescu concepts but with c++11 idioms.
namespace RAII
{
template< typename Lambda >
class ScopeGuard
{
mutable ...
4
votes
3answers
145 views
Should I clear() containers passed in as a parameter, or swap in a new object? [closed]
I'm in a discussion at work as to how to properly handle containers as parameters.
We have a function that takes in a container parameter, and wants to return the container filled ONLY with what the ...
2
votes
4answers
229 views
C++ exception safety paranoia: how much is too much?
The strong exception safety guarantee says that an operation won't change any program state if an exception occurs. An elegant way of implementing exception-safe copy-assignment is the copy-and-swap ...
4
votes
1answer
230 views
state of std::vector after std::bad_alloc
I'm trying to find a online reference to see the exception safety of several std containers.
In the case of std::vector, Does it keep the state previous to the push_back call? I would presume the ...
1
vote
2answers
303 views
Exception safety in memory arena
I'm writing a simple memory arena allocator and facing a small problem with exception safety. The situation is when you allocate an object which itself calls the allocator. The objective of the memory ...
3
votes
2answers
425 views
RAII in Objective-C pattern?
I find myself writing code like this to achieve exception safe code:
Container* container = [Container new];
@try {
while(someCondition) {
ElementType* value = [someObject ...
-1
votes
6answers
229 views
Is synchronized keyword exception-safe? [duplicate]
Possible Duplicate:
Side effects of throwing an exception inside a synchronized clause?
I am wondering if synchronized is exception-safe? Say, an uncaught exception happens within the ...
0
votes
7answers
287 views
Ensure that an object is not null
How can I make sure that a certain instance of a class will never be null? Someone told me to use Debug.Assert() but by doing so, I would only ensure that the code works in debug mode, whereas I want ...
4
votes
3answers
217 views
Is it OK to have a throwing swap member-implementation?
The general guideline when writing classes (using the copy-and-swap idiom) is to provide a non throwing swap member function. (Effective C++, 3rd edition, Item 25 and other resources)
However, what ...
3
votes
6answers
201 views
Java exception safety - how do I know details?
Is there a way to get some details regarding exception safety aspects of Java's standard classes? Mainly working with C++ and C#, I'm confused with Java exception specifications, so I need to ...
0
votes
2answers
190 views
Exception Safety example guarantee correct?
I discuss the Exception Safety Guaratees and devised an example that I think provides the Strong Guarantee:
template<typename E, typename LT>
void strongSort(vector<E*> &data, LT lt) ...
1
vote
1answer
295 views
InitOnceExecuteOnce exception safety
I have a exception safety issue on InitOnceExecuteOnce WinAPI function. Whenever exception is thrown from callback function deadlock is occurred. Callback returns boolean flag telling the caller ...
3
votes
1answer
125 views
On Exception-Safety in a Function-Call
Is the call to f() exception-safe?
inline std::auto_ptr<C> auto_new() {
return std::auto_ptr<C>(new C());
}
void f(std::auto_ptr<C> p1,
std::auto_ptr<C> p2);
// ...
