1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
// Copyright (C) 2008-2018 Lorenzo Caminiti
// Distributed under the Boost Software License, Version 1.0 (see accompanying
// file LICENSE_1_0.txt or a copy at http://www.boost.org/LICENSE_1_0.txt).
// See: http://www.boost.org/doc/libs/release/libs/contract/doc/html/index.html
#include <boost/contract.hpp>
#include <vector>
#include <algorithm>
#include <cassert>
//[public_class_begin
class unique_identifiers :
private boost::contract::constructor_precondition<unique_identifiers>
{
public:
void invariant() const {
BOOST_CONTRACT_ASSERT(size() >= 0);
}
//]
//[public_constructor
public:
// Contract for a constructor.
unique_identifiers(int from, int to) :
boost::contract::constructor_precondition<unique_identifiers>([&] {
BOOST_CONTRACT_ASSERT(from >= 0);
BOOST_CONTRACT_ASSERT(to >= from);
})
{
boost::contract::check c = boost::contract::constructor(this)
.postcondition([&] {
BOOST_CONTRACT_ASSERT(size() == (to - from + 1));
})
;
// Constructor body.
for(int id = from; id <= to; ++id) vect_.push_back(id);
}
//]
//[public_destructor
public:
// Contract for a destructor.
virtual ~unique_identifiers() {
// Following contract checks class invariants.
boost::contract::check c = boost::contract::destructor(this);
// Destructor body here... (do nothing in this example).
}
//]
int size() const {
// Following contract checks invariants.
boost::contract::check c = boost::contract::public_function(this);
return vect_.size();
}
//[public_function
public:
// Contract for a public function (but no static, virtual, or override).
bool find(int id) const {
bool result;
boost::contract::check c = boost::contract::public_function(this)
.precondition([&] {
BOOST_CONTRACT_ASSERT(id >= 0);
})
.postcondition([&] {
if(size() == 0) BOOST_CONTRACT_ASSERT(!result);
})
;
// Function body.
return result = std::find(vect_.begin(), vect_.end(), id) !=
vect_.end();
}
//]
//[public_virtual_function
public:
// Contract for a public virtual function (but no override).
virtual int push_back(int id, boost::contract::virtual_* v = 0) { // Extra `v`.
int result;
boost::contract::old_ptr<bool> old_find =
BOOST_CONTRACT_OLDOF(v, find(id)); // Pass `v`.
boost::contract::old_ptr<int> old_size =
BOOST_CONTRACT_OLDOF(v, size()); // Pass `v`.
boost::contract::check c = boost::contract::public_function(
v, result, this) // Pass `v` and `result`.
.precondition([&] {
BOOST_CONTRACT_ASSERT(id >= 0);
BOOST_CONTRACT_ASSERT(!find(id)); // ID cannot be already present.
})
.postcondition([&] (int const result) {
if(!*old_find) {
BOOST_CONTRACT_ASSERT(find(id));
BOOST_CONTRACT_ASSERT(size() == *old_size + 1);
}
BOOST_CONTRACT_ASSERT(result == id);
})
;
// Function body.
vect_.push_back(id);
return result = id;
}
//]
private:
std::vector<int> vect_;
//[public_class_end
/* ... */
};
//]
//[public_derived_class_begin
class identifiers
#define BASES public unique_identifiers
: BASES
{
public:
typedef BOOST_CONTRACT_BASE_TYPES(BASES) base_types; // Bases typedef.
#undef BASES
void invariant() const { // Check in AND with bases.
BOOST_CONTRACT_ASSERT(empty() == (size() == 0));
}
//]
//[public_function_override
public:
// Contract for a public function override.
int push_back(int id, boost::contract::virtual_* v = 0) /* override */ {
int result;
boost::contract::old_ptr<bool> old_find =
BOOST_CONTRACT_OLDOF(v, find(id));
boost::contract::old_ptr<int> old_size =
BOOST_CONTRACT_OLDOF(v, size());
boost::contract::check c = boost::contract::public_function<
override_push_back // Pass override type plus below function pointer...
>(v, result, &identifiers::push_back, this, id) // ...and arguments.
.precondition([&] { // Check in OR with bases.
BOOST_CONTRACT_ASSERT(id >= 0);
BOOST_CONTRACT_ASSERT(find(id)); // ID can be already present.
})
.postcondition([&] (int const result) { // Check in AND with bases.
if(*old_find) BOOST_CONTRACT_ASSERT(size() == *old_size);
})
;
// Function body.
if(!find(id)) unique_identifiers::push_back(id); // Else, do nothing.
return result = id;
}
BOOST_CONTRACT_OVERRIDE(push_back) // Define `override_push_back`.
//]
bool empty() const {
// Following contract checks invariants.
boost::contract::check c = boost::contract::public_function(this);
return size() == 0;
}
identifiers(int from, int to) : unique_identifiers(from, to) {
// Following contract checks invariants.
boost::contract::check c = boost::contract::constructor(this);
}
//[public_derived_class_end
/* ... */
};
//]
int main() {
unique_identifiers uids(1, 4);
assert(uids.find(2));
assert(!uids.find(5));
uids.push_back(5);
assert(uids.find(5));
identifiers ids(10, 40);
assert(!ids.find(50));
ids.push_back(50);
ids.push_back(50);
assert(ids.find(50));
return 0;
}
|