vote up 4 vote down star
3

Is that any library that aids in implementing design by contract principle in c++ application. EDIT:

Looking for much better than ASSERT something like this

flag

1  
You should clarify what leaves you unsatisfied about simple mechanisms with the assert (lower case) macro. – Daniel Daranas Jul 24 at 10:28
1  
See also stackoverflow.com/questions/179723/… – Daniel Daranas Jul 24 at 10:28
1  
You just linked to a library that does exactly what you're asking for. What do you expect us to say? "You could give codeproject.com/KB/cpp/… a shot"? If you want something more than what that library offers, then don't use it as an example of what you're after. Tell us what you want that it doesn't provide. – jalf Aug 23 at 14:04

4 Answers

vote up 3 vote down check

I followed the teachings of the following articles:

An exception or a bug? (Miro Samek)

Simple Support for Design by Contract in C++ (Pedro Guerreiro)

What I ultimately applied was very much Samek's approach. Just creating macros for REQUIRE, ENSURE, CHECK and INVARIANT (based on the existing assert macro) was very useful. Of course it's not as good as native language support but anyway, it allows you to get most of the practical value from the technique.

As for libraries, I don't think that it pays to use one, because one important value of the assertion mechanism is its simplicity.

For the difference between debug and production code, see When should assertions stay in production code?.

link|flag
vote up 3 vote down

Simplest?

Assert statements at the start of your function to test your requirements. Assert statements at the end of your function to test your results.

Yes, it's crude, its not a big system, but its simplicity makes it versatile and portable.

link|flag
Something better than this codeproject.com/KB/cpp/… – yesraaj Jul 24 at 7:06
And the major feature of DbC - that pre/postconditions are inherited - will not be emulated by Assert. – Tobias Langner Jul 24 at 7:43
Also "at the end of your functions" becomes very complex when you use "return" in few places. Not to mention exceptions. – Adam Badura Jul 24 at 8:52
True, you should at least use asserts at the beginning and each time you get data from elsewher (non-local) like when you get a pointer, you have to check that it's valid, when you get some values you have to check that they match your assumptions etc. The beginning asserts should purpose is to check the context of the function call, the other asserts check the assumptions about the extern data and the local operations. – Klaim Jul 24 at 10:54
vote up 2 vote down

Hi,

Some design patterns, such as the non-virtual interface make it natural to write pre/post-conditions for a given method:

#include <cassert>

class Car {
    virtual bool engine_running_impl() = 0;
    virtual void stop_impl() = 0;
    virtual void start_impl() = 0;

    public:
    bool engine_running() {
        return engine_running_impl();
    }

    void stop() {
        assert(engine_running());
        stop_impl();
        assert(! engine_running());
    }

    void start()
    {
        assert(! engine_running());
        start_impl();
        assert(engine_running());
    }
}


class CarImpl : public Car {
    bool engine_running_impl() {
        /* ... */
    }

    void stop_impl() {
        /* ... */
    }

    void start_impl() {
        /* ... */
    }
}
link|flag
vote up 0 vote down

assert.h

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.