I'm working on a garbage-collection mechanism for a family of objects in one of my projects. What I want to have is allocate these objects dynamically with new and never having to call delete.

This is possible by overloading operator new to call into a specialized allocator object that implements GC for these objects (triggering collection when too much memory has been allocated). However, I have a problem: the user can still just do delete on these objects, and I don't want that.

Making operator delete private is problematic because of the way C++ handles failures in construction - if operator new is public, operator delete should be too. The alternative that's sometimes suggested is just make both operator new and operator delete private and only expose factory creation methods to the user. I can do this, but it feels less clean and requires extra code to write.

EDIT: Another approach is make operator delete empty (or throw an exception). Then, to actually release the objects my GC will call the destructor explicitly and then release the memory with the global ::operator delete.

Any other ideas?

link|improve this question

1  
Just an idea: throw an error when someone tries to delete an object, that should teach them not to ;) – Stormenet Mar 15 '11 at 16:36
Offtopic: How do you track that object is out of scope? Why just not use shared pointer? – rmflow Mar 15 '11 at 16:41
@Stormenet: I could do that although I wanted to use delete myself in the garbage collector (could've made it a friend if that operator were private). – Eli Bendersky Mar 15 '11 at 16:42
1  
@rmflow: I implement mark&sweep garbage collection, with tracing from known roots and all that – Eli Bendersky Mar 15 '11 at 16:44
"make operator delete empty" - but then how is the memory freed when the constructor throws in a new expression? There's a reason it needs to be public, it's not just to make it look symmetrical ;-) [Edit - d'oh, I can answer that myself. Just make sure the GC can get it even if it hasn't been constructed. I think if you do this, though, you have to make sure you don't call the destructor twice in the case where the user deletes the object, the delete expression calls the destructor and then operator delete, which thows, and some time later you GC the object] – Steve Jessop Mar 15 '11 at 17:09
show 5 more comments
feedback

3 Answers

Personally I think the idea of making both private and using the factory is the cleaner approach. Using new but not delete (or assigning to smart pointer) is going to confuse a lot of maintainers of the code.

If you can indicate that a pointer comes from a GC collected factory (or is owned by a GC collected factory) then it will make the code less confusing to maintain. By using a factory you are explicitly stating that the GC factory is the owner and thus should maintain the lifespan of the object:

class GCFactory
{
    public:
        template<T, P1>
        T& createGCObject(P1 const& p1) // Or return by pointer.
        {
            T* result = new T(p1);
            // Do stuff to register with garbage collector.

            // Then return object (I like reference) but I have not studied the
            // problem that hard so may be in-appropriate.
            return * result;
        }
        template<T, P1, P2>
        T& createGCObject(P1 const& p1, P2 const& p2)
        {
            T* result = new T(p1, p2);
            // Do stuff to register with garbage collector.

            return * result;
        }
        template<T, P1, P2, P3>
        T& createGCObject(P1 const& p1, P2 const& p2, P3 const& p3)
        {
            T* result = new T(p1, p2, p3);
            // Do stuff to register with garbage collector.

            return * result;
        }
};
link|improve this answer
The problem with this approach is when I have N different objects to allocate this way, each with its own constructor (one requiring two arguments, another a pointer and a reference, etc.) - this is a lot of code duplication (factory methods invoking corresponding constructors) – Eli Bendersky Mar 15 '11 at 18:59
@Eli: With the right support for C++0x features, you may be able to solve that with perfect forwarding and variadic templates. See vector::emplace_back – Steve Jessop Mar 15 '11 at 19:16
@Steve: ah, C++0x, the promise that isn't... Unfortunately I'd really like it to run across several C++ compilers (MSVC included, sigh.) so this is probably not an option currently. Hopefully in the near future it will be! – Eli Bendersky Mar 15 '11 at 19:40
@Eli Bendersky: You could get away with one method for n parameters by templatising all the parameters. Thus you only need one function for all constructors that take one parameter. One function for all constructors that take two parameters etc. Not a perfect solution but it will cut down on the code a lot. – Loki Astari Mar 15 '11 at 22:51
@Eli: MSVC support for C++0x features might be better than you think - it's not like C99, MS is positive about C++0x, and plans more-or-less a full implementation. But sure, feature support isn't reliable across multiple implementations. You could also take a look at what Boost does, there are places it wants to use variadic templates and it does that where they're supported, and otherwise falls back to what Martin says in the comment above, which is to define n templates with 0 ... n-1 parameters. IIRC typical value for n is 10. – Steve Jessop Mar 16 '11 at 10:07
feedback

Overload delete as a no-op. (more characters needed)

link|improve this answer
This leaves a problem: how does the GC actually delete these objects? I planned on using delete, alhtough I guess I can just call the destructor explicitly and then release the memory – Eli Bendersky Mar 15 '11 at 16:46
You answered your own question there, right? – Benjamin Lindley Mar 15 '11 at 16:50
I guess you're right - I added it in "EDIT", still looking for other ideas ;-) – Eli Bendersky Mar 15 '11 at 16:54
3  
Won't actually work. The compiler converts a delete x statement to x->~Type(); Type::operator delete(x). I.e. the object will be destroyed first and than the memory won't be released by the no-op operator delete. – Jan Hudec Mar 15 '11 at 17:20
feedback
boost::shared_ptr<Type> ptr = boost::make_shared<Type>(); 

You never call new, you never call delete.

Why reinvent the wheel? Smart pointers really are the way to go.

link|improve this answer
+1; do this at the smart-pointer level, not the new/delete level. – tenfour Mar 15 '11 at 16:40
4  
Chris, I'm well aware of the existence of shared_ptr. This is not what my question is about, though – Eli Bendersky Mar 15 '11 at 16:44
2  
@Chris: reference counting != garbage collection. For example, shared_ptr has real problems with cycles. – Ben Voigt Mar 15 '11 at 17:12
@Ben: 'shared_ptr has real problems with cycles' - could you elaborate please? I wouldn't be trying to reinvent the wheel in 2011 I guess was my point. – Chris Kaminski Mar 15 '11 at 19:03
@Chris: If two objects hold pointers to each other, shared_ptr will never free either one. But mark-and-sweep garbage collection will free both (assuming no pointers from the outside world). – Ben Voigt Mar 15 '11 at 19:10
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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