I have some code that adds to a std::vector and a std::map after creating an object.
v.push_back(object); // std::vector
m[object->id] = object; // std::map
I want to make this have a strong exception guarantee. Normally, to make operations like these atomic, I would implement a swap method for each container, and call all of the functions that could throw on temporary copies of the container:
vector temp_v(v);
map temp_map(m);
temp_v.push_back(object);
temp_m[object->id] = object;
// The swap operations are no-throw
swap(temp_v, v)
swap(temp_m, m)
However, making temporary copies of the entire vector and map seems very expensive. Is there any way to implement a strong exception guarantee for this function without the expensive copies?
v.push_back(object);orm[object->id] = object;to throw would be the copy constructor/assignment operator ofobject. Well that orstd::bad_alloc, but in the event of such things, the objects will still be cleaned up. This is required by the spec. – Nicol Bolas Jan 13 '12 at 21:53std::bad_alloc(in the case you care aboutnewthrowing at all). – PlasmaHH Jan 13 '12 at 21:56