This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of C++17 status.
Allocators must be no-throw swappableSection: 16.4.4.6 [allocator.requirements] Status: C++17 Submitter: Daniel Krügler Opened: 2010-11-17 Last modified: 2017-07-30
Priority: 2
View other active issues in [allocator.requirements].
View all other issues in [allocator.requirements].
View all issues with C++17 status.
Discussion:
During the Batavia meeting it turned out that there is a definition
hole for types satisfying the Allocators requirements: The problem
became obvious when it was discussed whether all swap functions
of Containers with internal data handles can be safely tagged
with noexcept or not. While it is correct that the implicit
swap function of an allocator is required to be a no-throw
operation (because move/copy-constructors and assignment operators are
required to be no-throw functions), there are no such requirements
for specialized swap overloads for a particular allocator.
Containers are
required to support swappable Allocators, when the value
allocator_traits<>::propagate_on_container_swap evaluates
to true.
[2011-02-10 Alberto, Daniel, and Pablo collaborated on the proposed wording]
The proposed resolution (based on N3225) attempts to solve the following problems:
X::propagate_on_container_copy_assignment, X::propagate_on_container_move_assignment, and
X::propagate_on_container_swap only describe operations, but no requirements. In fact, if and only
if these compile-time predicates evaluate to true, the additional requirements
CopyAssignable, no-throw MoveAssignable, and no-throw lvalue Swappable,
respectively, are imposed on the allocator types.a.get_allocator() == b.get_allocator()
or allocator_traits<allocator_type>::propagate_on_container_swap::value == true), which should be cleaned up.[2011-04-08 Pablo comments]
I'm implementing a version of list now and I actually do find it impossible to write an exception-safe assignment operator unless I can assume that allocator assignment does not throw. (The problem is that I use a sentinel node and I need to allocate a new sentinel using the new allocator without destroying the old one -- then swap the allocator and sentinel pointer in atomically, without risk of an exception leaving one inconsistent with the other.
Please update the proposed resolution to add the nothrow requirement to copy-assignment.[2014-02-14 Issaquah: Move to Ready]
Fix a couple of grammar issues related to calling swap and move to Ready.
Proposed resolution:
Adapt the following three rows from Table 44 — Allocator requirements:
Table 44 — Allocator requirements Expression Return type Assertion/note
pre-/post-conditionDefault X::propagate_on_container_copy_assignmentIdentical to or derived from true_type
orfalse_typetrue_typeonly if an allocator of typeXshould be copied
when the client container is copy-assigned. See Note B, below.false_typeX::propagate_on_container_move_assignmentIdentical to or derived from true_type
orfalse_typetrue_typeonly if an allocator of typeXshould be moved
when the client container is move-assigned. See Note B, below.false_typeX::propagate_on_container_swapIdentical to or derived from true_type
orfalse_typetrue_typeonly if an allocator of typeXshould be swapped
when the client container is swapped. See Note B, below.false_type
Following 16.4.4.6 [allocator.requirements] p. 3 insert a new normative paragraph:
Note B: If
X::propagate_on_container_copy_assignment::valueis true,Xshall satisfy theCopyAssignablerequirements (Table 39 [copyassignable]) and the copy operation shall not throw exceptions. IfX::propagate_on_container_move_assignment::valueis true,Xshall satisfy theMoveAssignablerequirements (Table 38 [moveassignable]) and the move operation shall not throw exceptions. IfX::propagate_on_container_swap::valueis true, lvalues ofXshall be swappable (16.4.4.3 [swappable.requirements]) and theswapoperation shall not throw exceptions.
Modify 23.2.2 [container.requirements.general] p. 8 and p. 9 as indicated:
8 - [..] The allocator may be replaced only via assignment or
9 - The expressionswap(). Allocator replacement is performed by copy assignment, move assignment, or swapping of the allocator only ifallocator_traits<allocator_type>::propagate_on_container_copy_assignment::value,allocator_traits<allocator_type>::propagate_on_container_move_assignment::value, orallocator_traits<allocator_type>::propagate_on_container_swap::valueis true within the implementation of the corresponding container operation.The behavior of a call to a container's. In all container types defined in this Clause, the memberswapfunction is undefined unless the objects being swapped have allocators that compare equal orallocator_traits<allocator_type>::propagate_on_container_swap::valueis trueget_allocator()returns a copy of the allocator used to construct the container or, if that allocator has been replaced, a copy of the most recent replacement.a.swap(b), for containersaandbof a standard container type other thanarray, shall exchange the values ofaandbwithout invoking any move, copy, or swap operations on the individual container elements. Lvalues of aAnyCompare,Pred, orHashobjectstypes belonging toaandbshall be swappable and shall be exchanged byunqualified calls to non-membercallingswapas described in 16.4.4.3 [swappable.requirements]. Ifallocator_traits<allocator_type>::propagate_on_container_swap::valueistrue, then lvalues ofallocator_typeshall be swappable and the allocators ofaandbshall also be exchangedusing an unqualified call to non-memberby callingswapas described in 16.4.4.3 [swappable.requirements]. Otherwise,theythe allocators shall not be swapped, and the behavior is undefined unlessa.get_allocator() == b.get_allocator(). Every iterator referring to an element in one container before the swap shall refer to the same element in the other container after the swap. It is unspecified whether an iterator with valuea.end()before the swap will have valueb.end()after the swap.