vote up 0 vote down star

I need to create a generic object carrier class. I came up with something simple like

template<typename T>
class ObjectCarrier
{

public:
    const T& item() const
    {
    	return item_;
    }

    void setItem(T& item)
    {
    	item_ = item;
    }

private:
    T item_;
};

This works well when T has got a default constructor (parameterless). Things gets complicated when T has parameterized constructors. So I rewrote the class like

template<typename T>
class ObjectCarrier
{

public:
    const T& item() const
    {
    	return *item_;
    }

    void setItem(T& item)
    {
    	item_ = new T ( item );
    }

private:
    T* item_;
};

Changed the item_ variable to T* and created a new instance using the copy constructor of T. Again this worked well until T is a pointer type. I mean ObjectCarrier<Foo*> won't work.

I am wondering how can I design this class so that it works for almost all kind of types. I think I may need to create a traits type specialized for pointers. But unfortunately, I am not able to make that work.

Any help would be great.

flag

68% accept rate
1  
Why does the first not work with constructors with parameters? Surely you only need a copy constructor? Or am i missing something? – Goz Nov 8 at 8:28

3 Answers

vote up 0 vote down

You can use template specialization for the T* type and rewrite the methods to suite pointers. You can do something like:

template<typename T>
class ObjectCarrier<T*>
{
    public:
    const T* item() const
    {
        return item_;
    }

    void setItem(T* item)
    {
        item_ = item;
    }

private:
    T* item_;

};
link|flag
You mean specialize ObjectCarrier itself for pointers? – Appu Nov 8 at 5:10
This is OK for small classes like the ObjectCarrier. But is this the only option? I think this will be tough when creating custom collections that will have several methods. How STL implements this? Do they have specializations of vector for all types? Thanks for replying. – Appu Nov 8 at 5:24
2  
vector requires objects to be default-constructible so this problem doesn't arise. There is a specialization of vector for vector<bool> to implement a sort of bitfields, although that implementation is dangerous to use. – Naveen Nov 8 at 5:31
1  
@Naveen, Maybe someone with a standard can comment but as far as I know std::vector doesn't require a default constructor. You can try it yourself easily, I just did and no compile time error even with no default constructor. – DeusAduro Nov 8 at 5:42
@DeusAduro: You are right, only when I am using the vector constructor with initial size, we require a default constructor. Otherwise it is not required. – Naveen Nov 8 at 5:53
vote up 0 vote down

There is a design patern that is possibly relevant to this - Memento.

A bit off topic, but bear in mind that as soon as you start newing objects up inside your class, you'll need a way to manage the memory. I'd suggest using an std::auto_ptr at the least. You'll also need to provide a copy constructor and an assignment operator, when using std::auto_ptr.

link|flag
vote up 0 vote down

It might be possible to hold the object by value and still defer its construction with the use of placement new and something like the following:

#include <iostream>
#include <cassert>

template <class T>
class ObjectCarrier
{
public:
    ObjectCarrier(): ref(0) {}
    ObjectCarrier(const ObjectCarrier& other): ref(0)
    {
        set_data(other.ref);
    }
    ~ObjectCarrier()
    {
        clear();
    }
    const ObjectCarrier& operator = (const ObjectCarrier& other)
    {
        if (other.empty())
            clear();
        else
            set_data(other.ref);
        return *this;
    }
    void set(const T& value)
    {
        set_value(value);
    }
    const T& get() const
    {
        assert(!empty() && "No object being carried");
        return *ref;
    }
    bool empty() const
    {
        return ref == 0;
    }
    void clear()
    {
        if (!empty()) {
            ref->~T();
            ref = 0;
        }
    }
private:
    char data[sizeof(T)];
    T* ref;
    void set_value(const T& value)
    {
        if (!empty()) {
            *ref = value;
        }
        else {
            ref = new (data) T(value);
        }
    }
    void set_data(const T* value)
    {
        if (value) {
            set_value(*value);
        }
    }
};

int main()
{
    ObjectCarrier<int> i;
    ObjectCarrier<int> j(i);
    i = j;
    i.set(10);
    std::cout << i.get() << '\n';
    j = i;
    i.set(20);
    std::cout << i.get() << ' ' << j.get() << ' ' << ObjectCarrier<int>(i).get() << '\n';
}

However, I would somewhat question the usefulness of this class. Perhaps the only purpose it could have, would be to act as Boost.Optional.

But if you don't want the class to be able to not hold a value, just give it a parametrized constructor:

template<typename T>
class ObjectCarrier
{

public:
    ObjectCarrier(const T& value = T()):
        item_(value)
    {
    }
    const T& item() const
    {
        return item_;
    }

    void setItem(T& item)
    {
        item_ = item;
    }

private:
    T item_;
};

(It's just that this class seems rather useless, unless perhaps as a facade for code that expects variables to have item and setItem methods, rather than, say, an assignment operator.)

link|flag
Your first idea might need a hint at alignment problems. – sbi Nov 9 at 12:47
Sorry, what alignment problems? – UncleBens Nov 9 at 17:06
Maybe I'm missing something, but when you write char data[sizeof(T)], how do you know the array will be aligned for an object of type T? – sbi Nov 10 at 20:57
I don't. Alignment issues is something I haven't run into (but then I don't do weird things). Wouldn't ObjectCarrier<T> itself be aligned and data as the first member (not that I can entirely see why that should matter) with it? – UncleBens Nov 10 at 21:19
@UncleBens: The problem is that char data[sizeof(T)];. That's going to be aligned for char, but not for T. On popular platforms this isn't a problem (although misaligned data on x86 will cause a performance loss, IIRC), but when you're going to port thsi to platforms where there are relevant alignment differences between char and T, you will have a problem. Currently, C++ offers nothing to solve this std-conforming. People play all kind of tricks using union which are reasonably portable. ISTR that C++1x will solve this portably, but I'm not sure. – sbi Nov 12 at 23:16

Your Answer

Get an OpenID
or

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