Page properties | ||
---|---|---|
| ||
This has nothing to do with CTR as a group, and everything to do with the algorithmic requirements of the STL. However, I cannot think of a better place for this rule to live (aside from MSC, and I think CTR is an improvement). If we wind up with an STL category, this should probably go there. |
The C++ Standard Library standard library implements numerous common algorithms which that accept a predicate function object. According to the The C++ Standard, [algorithms.general], paragraph 10 , states [ISO/IEC 14882-2014], states the following:
[Note: Unless otherwise specified, algorithms that take function objects as arguments are permitted to copy those function objects freely. Programmers for whom object identity is important should consider using a wrapper class that points to a noncopied implementation object such as
reference_wrapper<T>
, or some equivalent solution. — end note]
Because it is implementation-defined whether an algorithm uses copies of a predicate function objects, all predicate function objects object, any such object must either
- implement
...
- a function call operator that does not mutate state related to the function object's identity,
...
- such as nonstatic data members or captured values, or
- wrap the predicate function object in a
std::reference_wrapper<T>
(or an equivalent solution).
Marking Pure function calls are ones for which the return value depends only on the function parameters, and not stateful information. Note that marking the function call operator as const
is beneficial, but insufficient, for creating a pure function, as because data members with the mutable
storage class specifier may still be modified within a const
member function.
Noncompliant Code Example (
...
Functor)
This noncompliant code example attempts to remove the third item in a container using a predicate that returns true
only on its third invocation.
Code Block | ||||
---|---|---|---|---|
| ||||
#include <algorithm> #include <functional> #include <iostream> #include <iterator> #include <vector> class BadPredicateMutablePredicate : public std::unary_function<int, bool> { size_t timesCalled; public: BadPredicateMutablePredicate() : timesCalled(0) {} bool operator()(const int &) { return ++timesCalled == 3; } }; template <typename Iter> void print_container(Iter Bb, Iter Ee) { std::cout << "Contains: "; std::copy(Bb, Ee, std::ostream_iterator<decltype(*Bb)>(std::cout, " ")); std::cout << std::endl; } void f() { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; print_container(v.begin(), v.end()); v.erase(std::remove_if(v.begin(), v.end(), BadPredicateMutablePredicate()), v.end()); print_container(v.begin(), v.end()); } |
However, std::remove_if()
is permitted to construct and use extra copies of its predicate function. Any such extra copies may result in unexpected output.
Implementation Details
This program produces the following results , using gcc 4.8.1 with libstdc++:.
Code Block | ||
---|---|---|
| ||
Contains: 0 1 2 3 4 5 6 7 8 9 |
...
Contains: 0 1 3 4 6 7 8 9 |
This result arises because std::remove_if
makes two copies of the predicate before invoking it. The first copy is used to determine the location of the first element in the sequence for which the predicate returns true
. The subsequent copy is used for removing other elements in the sequence. This results in the third element (2
) being removed, as well as the and sixth element (5
) – being removed; two distinct predicate functions are used.
Noncompliant Code Example (
...
Lambda)
Similar to the functor noncompliant code example, this noncompliant code example attempts to remove the third item in a container using a predicate lambda function that returns true
only on its third invocation. As with the functor, this lambda carries local state information, which it attempts to mutate within its function call operator.
Code Block | ||||
---|---|---|---|---|
| ||||
#include <algorithm> #include <iostream> #include <iterator> #include <vector> template <typename Iter> void print_container(Iter Bb, Iter Ee) { std::cout << "Contains: "; std::copy(Bb, Ee, std::ostream_iterator<decltype(*Bb)>(std::cout, " ")); std::cout << std::endl; } void f() { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; print_container(v.begin(), v.end()); int timesCalled = 0; v.erase(std::remove_if(v.begin(), v.end(), [timesCalled](const int &) mutable { return ++timesCalled == 3; }), v.end()); print_container(v.begin(), v.end()); } |
Compliant Solution (std::reference_wrapper
)
This compliant solution wraps uses std::ref
to wrap the predicate in a std::reference_wrapper<T>
object, ensuring that copies of the wrapper object all refer to the same underlying predicate object.
Code Block | ||||
---|---|---|---|---|
| ||||
#include <algorithm> #include <functional> #include <iostream> #include <iterator> #include <vector> class BadPredicateMutablePredicate : public std::unary_function<int, bool> { size_t timesCalled; public: BadPredicateMutablePredicate() : timesCalled(0) {} bool operator()(const int &) { return ++timesCalled == 3; } }; template <typename Iter> void print_container(Iter Bb, Iter Ee) { std::cout << "Contains: "; std::copy(Bb, Ee, std::ostream_iterator<decltype(*Bb)>(std::cout, " ")); std::cout << std::endl; } void f() { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; print_container(v.begin(), v.end()); BadPredicateMutablePredicate BPmp; v.erase(std::remove_if(v.begin(), v.end(), std::ref(BPmp)), v.end()); print_container(v.begin(), v.end()); } |
The above compliant compliant solution demonstrates using a reference wrapper over a functor object , but can similarly be used with a stateful lambda. The above code produces the expected results, where only the third element is removed:.
Code Block | ||
---|---|---|
| ||
Contains: 0 1 2 3 4 5 6 7 8 9 |
...
Contains: 0 1 3 4 5 6 7 8 9 |
...
Compliant Solution (Iterator
...
Arithmetic)
Removing a specific element of a container does not require a predicate function , but can instead simply use std::vector::erase()
, as in this compliant solution:.
Code Block | ||||
---|---|---|---|---|
| ||||
#include <algorithm> #include <iostream> #include <iterator> #include <vector> template <typename Iter> void print_container(Iter B, Iter E) { std::cout << "Contains: "; std::copy(B, E, std::ostream_iterator<decltype(*B)>(std::cout, " ")); std::cout << std::endl; } void f() { std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; print_container(v.begin(), v.end()); v.erase(v.begin() + 3); print_container(v.begin(), v.end()); } |
Risk Assessment
Using a predicates predicate function object that contains state can produce unexpected values after usage.
Rule | Severity | Likelihood | Remediation Cost | Priority | Level |
---|
CTR58-CPP | Low | Likely | High | P3 | L3 |
Automated Detection
Tool | Version | Checker | Description |
---|
Helix QAC |
| C++3225, C++3226, C++3227, C++3228, C++3229, C++3230, C++3231, C++3232, C++3233, C++3234 | |||||||
Parasoft C/C++test |
| CERT_CPP-CTR58-a | Make predicates const pure functions | ||||||
Polyspace Bug Finder |
| CERT C++: CTR58-CPP | Checks for function object that modifies its state (rule fully covered). |
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
Related Guidelines
...
...
Bibliography
[ISO/IEC 14882-2014] | Subclause 25.1, "General" |
[Meyers |
2001] | Item 39, "Make Predicates Pure Functions" |
...
...