vote up 4 vote down star
2

Hi,

I would like to write a wrapper class with all operators overloaded such that I can detect when we write/read or modify its contents. For instance:

probe<int> x;
x = 5;     // write
if(x) {    // read
   x += 7; // modify
}

Anyone already did that? If not which operators must I overload to be sure I dont miss anything?

flag

2 Answers

vote up 1 vote down check

You can't, I think. operator?: isn't overloadable. Also, if T::T(int) is defined, T foo = 4 is legal but T foo = probe<int>(4) isn't. There's at most one user-defined conversion.

Furthermore, because probe is not a POD, the behavior of your program can change.

link|flag
T foo = probe<int>(4) is legal. – Mykola Golubyev Mar 3 at 12:26
can you provide an example of the problem you mentionned with "?:" – Helltone Mar 3 at 12:26
@Mykoala: T foo = T(probe<int>(4)); would be legal. probe->int->T is two conversions. A prob with ?: exists when you use probe<int> as second arg and probe<float> as the third. No common type. With operator+(probe<int>, probe<float>) you can fix it with lot of overloads. – MSalters Mar 3 at 15:57
Can't we fix it with a base class ? – Helltone Mar 5 at 8:13
No - int cannot be used as a base class. – MSalters Apr 22 at 11:19
vote up 2 vote down

Use this as a common idea. There are plenty of operators like &= |= [] which maybe are not principal in your case.

template < typename T >
struct monitor
{
    monitor( const T& data ):
        data_( data )
    {
        id_ = get_next_monitor_id(); 
    }

    monitor( const monitor& m )
    {
       id_ = get_next_monitor_id();

       m.notify_read();
       notify_write();

       data_ = m.data_;
    }

    operator T()
    {
        notify_read();
        return data_;    
    }

    monitor& operator = ( const monitor& m )
    {
        m.notify_read();
        notify_write();

        data_ = m.data_;
        return *this;
    }

    monitor& operator += ( const monitor& m )
    {
        m.notify_read();
        notify_write();

        data_ += m.data_;
        return *this;
    }
/*
    operator *=
    operator /=
    operator ++ ();
    operator ++ (int);
    operator -- ();
    operator -- (int);
*/
private:
    int id_;
    T data_;

    void notify_read()
    {
        std::cout << "object " << id_ << " was read" << std::endl;
    }

    void notify_write()
    {
        std::cout << "object " << id_ << " was written" << std::endl;
    }
};
link|flag
Why not the ++, -- as well? – dirkgently Mar 3 at 12:11
++ and -- postfix and prefix (parashift.com/c++-faq-lite/…) – Helltone Mar 3 at 12:13
Understood. Changed. Thanks. – Mykola Golubyev Mar 3 at 12:16
Still missing a ton? &=, |= are commonly used. Also, binary operators like + might not be needed. If they are, what overloads do you provide exactly, and how do you make it properly symmetric? – MSalters Mar 3 at 12:19
a simple example with std::cout << "read/write/modify" would be welcome – Helltone Mar 3 at 12:20
show 5 more comments

Your Answer

Get an OpenID
or

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