How do you use std.typecons.RefCounted!(T) to make a reference-counted object in D?

I've tried to figure out what std.array.Array does internally by looking at the source, but while I can read the source, I just can't figure what a "payload" is or how it all works when there's things like bitwise struct copying involved, as well as why some things are duplicated in the internal and external structure.

Could anyone provide an example or a link on how to use it to, say, wrap a simple Win32 HANDLE?

Thanks!

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

Disclaimer: I haven't tested my claims, just read the documentation.

Payload is referring what is being stored. In your case the payload is the Win32 HANDLE. Since HANDLE is just an integer you wouldn't want to just do:

auto refHandle = RefCounted!HANDLE(WhatGetsMeAHandle());

Since this you would also need to call a Windows function when you are done with the handle.

When you were looking at std.containers.Array what you saw as a struct called Payload, which had a field called _payload. This is saying is that we are going to store this data in _payload inside this structure. And what this provides a level of indirection.

You will notice that RefCounted is actually used on the Array structure. This means the destructor for that struct will only be called when the reference count is 0. So the ~this() inside of Payload is where you would want to clean up the your HANDLE.

What is happening since struct is a value type, every time the structure goes out of scope the destructor is called, there isn't one for Array, but then we have a Payload which is wrapped in a RefCounted, the destructor for your RefCounted!Payload is also called. And only when the reference count reaches zero is the destructor for Payload itself called.

Now, RefCounted itself has reference semantics this means that having an Array a, you can then assign to auto b = a; and everything will be copied over, but RefCounted has a postblits defined meaning the data will not be copied, but the reference count will be incremented.

I will now try and provide you with a wrapper outline for what you want. It will probably help you visualize the information above, but it may not be entirely correct. Let me know if something needs fixing.

struct MyWinWrapper {
    struct Payload {
        HANDLE _payload;
        this(HANDLE h) { _payload = h; }
        ~this() { freeHandleHere(_payload); }

        // Should never perform these operations
        this(this) { assert(false); }
        void opAssign(MyWinWrapper.Payload rhs) { assert(false); }
    }

    private alias RefCounted!(Payload, RefCountedAutoInitialize.no) Data;
    private Data _data;

    this(HANDLE h) { _data = Data(h); }
}

Since there is no default constructor for a struct you will probably want to provide a free function that returns this structure.

link|improve this answer
Thank you for the detailed answer! You made it look so easy! :) – Mehrdad Jan 8 '11 at 21:20
@Lambert, originally I was going to stick with saying not to use the first code snippet as I didn't know how to do what you wanted. But then I got interested and just started writing down what I was learning. – he_the_great Jan 8 '11 at 22:48
1  
Shouldn't the ctor for myWinWrapper do _data = Data(h);? – Andrej M. Jul 24 '11 at 22:37
feedback

Your Answer

 
or
required, but never shown

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