vote up 0 vote down star

I am writing a lib and a demo project. The project doesn't care which version of the lib I use (I can use sdl, directx or whatever I like as the gfx backend). To get the object I do

Obj *obj = libname_newDevice();

Now, should I use delete or should I do obj->deleteMe();? I ask because I am not exactly doing new so I shouldn't be doing the delete? -edit- I have obj->create(theType); which returns a class with the Obj interface. My real question is do i need a libname_deleteDevice(); or is obj->deleteMe() fine since i have a deleteMe in the interface?

flag

41% accept rate

5 Answers

vote up 2 vote down check

I would take one step further.
If you are using a factory function to create, it may be logical to use a factory function to destroy. In addition to this to make it all nice and exetion safe wrap in in an object.

class ObjWrap
{
    public:
        ObjWrap()
            :obj(libname_newDevice())
        {}
        ~ObjWrap()
        {    libname_deleteDevice(obj);}
    private:
        ObjWrap(ObjWrap const&);        // Dont copy
        void operator=(ObjWrap const&); // Dont copy
        Obj* obj;
}; // If you want to copy then you need to extra work on ref counting
   // This may need some form of smart pointer.
link|flag
vote up 1 vote down

I think the best way would be to honor RAII and have some reference counting wrapper object (you can even use shared_ptr with a custom deallocator).

link|flag
vote up 0 vote down

You definitely don't want to implement Obj::deleteMe(). It would have to do something like:

delete this;

while you were still inside this->deleteMe(). Follow Jaywalker's suggestion and make the destroy function take an Obj* as a parameter.

link|flag
"delete this;" may make ones skin crawl, but it isn't necessarily bad. Objects which implement their own reference counting always have to do this. For examples, see Release() in every "my first COM implementation". – RobH Nov 13 '08 at 16:22
vote up 4 vote down

Please try to clarify your question. It's totally unclear to me.

  • Why do you speak of a graphical back end? Is it relevant to the question?
  • Are you asking how you should design your library or how you should use it?

It's good practice to have an object factory to create the object. I assume this is the role of libname_newDevice().

The library should also provide a way to delete the object (such as obj->DeleteMe() or libname_Delete(obj) ).

Don't rely on C++'s delete: caller and library might have been compiled with different version of the compiler, which would do different things regarding memory and resources allocation. It's therefore safer if your lib deletes the object it created.

link|flag
I gues graphics is not relevant. Specifically i want to know if i should do libname_Delete() or if i should do obj->DeleteMe(); I also have a obj->create(theType); – acidzombie24 Nov 12 '08 at 17:01
It is safer (in Windows) if the lib deletes objects it creates. But your reasoning for why is flawed. – Martin York Nov 12 '08 at 18:08
vote up 11 vote down

Since you are abstracting the creation inside libname_newDevice(), which I believe isn't a good way either, you should destroy using something like libname_destroyDevice (obj).

link|flag
Yes, symmetry is nice. Then you should wrap the whole thing inside an object where these two functions are called by the constructor/destructor. – Martin York Nov 12 '08 at 17:11

Your Answer

Get an OpenID
or

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