Files
contract/example/features/introduction.cpp
2015-10-25 09:33:05 -07:00

92 lines
2.7 KiB
C++

// Copyright (C) 2008-2015 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).
// Home at http://www.boost.org/libs/contract
#include <boost/detail/lightweight_test.hpp>
template<typename T>
class pushable;
//[introduction
#include <boost/contract.hpp>
#include <vector>
#include <cstddef>
template<typename T>
class vector
#define BASES public pushable<T>
: BASES
{
public:
typedef BOOST_CONTRACT_BASE_TYPES(BASES) base_types; // Subcontracting.
#undef BASES
void invariant() const { // Checked in AND with base class invariants.
BOOST_CONTRACT_ASSERT(size() <= capacity()); // Line 27.
}
virtual void push_back(T const& value, boost::contract::virtual_* v = 0)
/* override */ {
boost::contract::old_ptr<std::size_t> old_size =
BOOST_CONTRACT_OLDOF(v, size()); // Old values.
boost::contract::guard c = boost::contract::public_function<
override_push_back>(v, &vector::push_back, this, value)
.precondition([&] { // Checked in OR with base preconditions.
BOOST_CONTRACT_ASSERT(size() < max_size()); // Line 36.
})
.postcondition([&] { // Checked in AND with base postconditions.
BOOST_CONTRACT_ASSERT(size() == *old_size + 1); // Line 39.
})
;
vect_.push_back(value);
}
BOOST_CONTRACT_OVERRIDE(push_back)
std::size_t size() const { return vect_.size(); }
std::size_t max_size() const { return vect_.max_size(); }
std::size_t capacity() const { return vect_.capacity(); }
private:
std::vector<T> vect_;
};
//]
template<typename T>
class pushable {
public:
void invariant() const {
BOOST_CONTRACT_ASSERT(capacity() <= max_size());
}
virtual void push_back(T const& value, boost::contract::virtual_* v = 0)
= 0;
virtual std::size_t max_size() const = 0;
virtual std::size_t capacity() const = 0;
};
template<typename T> // Contract for pure virtual function.
void pushable<T>::push_back(T const& value, boost::contract::virtual_* v) {
boost::contract::old_ptr<std::size_t> old_capacity =
BOOST_CONTRACT_OLDOF(v, capacity());
boost::contract::guard c = boost::contract::public_function(v, this)
.precondition([&] {
BOOST_CONTRACT_ASSERT(capacity() < max_size());
})
.postcondition([&] {
BOOST_CONTRACT_ASSERT(capacity() >= *old_capacity);
})
;
}
int main() {
vector<int> vect;
vect.push_back(123);
BOOST_TEST_EQ(vect.size(), 1);
return boost::report_errors();
}