escaping addresses of ref parameters - not
Jason House
jason.james.house at gmail.com
Sun Feb 8 21:10:31 PST 2009
Andrei Alexandrescu wrote:
> Hey,
>
>
> I've been doing a hecatomb of coding in D lately, and had an insight
> that I think is pretty cool. Consider:
>
> struct Widget
> {
> private Midget * m;
> ...
> this(ref Midget mdgt) { m = &mdgt; ... }
> }
>
> It's a rather typical pattern in C++ for forwarding objects that need to
> store a reference/pointer to their parent and also nicely warn their
> user that a NULL pointer won't do.
>
> But I'm thinking this is unduly dangerous because the unwitting user can
> easily get all sorts of wrong code to compile:
>
> Widget makeACoolWidget()
> {
> Midget coolMidget;
> return Widget(coolMidget); // works! or...?
> }
>
> The compiler's escape detection mechanism can't help quite a lot here
> because the escape hatch is rather indirect.
>
> Initially I thought SafeD should prevent such escapes, whereas D allows
> them. Now I start thinking the pattern above is dangerous enough to be
> disallowed in all of D. How about this rule?
>
> ***************
> Rule: ref parameters are PASS-DOWN and RETURN only. No escaping of
> addresses of ref parameters is allowed. If you want to escape the
> address of a ref parameter, use a pointer in the first place.
> ***************
>
> This rule is powerful and leads to an honest style of programming: if
> you plan on escaping some thing's address, you make that clear in the
> public signature. The fix to the idiom above is:
>
> struct Widget
> {
> private Midget * m;
> ...
> this(Midget * mdgt) { enforce(mdgt); m = mdgt; ... }
> }
>
> Widget makeACoolWidget()
> {
> auto coolMidget = new Midget;
> return Widget(coolMidget); // works!
> }
>
> Whaddaya think?
>
>
> Andrei
What constitutes escaping? If any other functions are called with the parameter, even if they're const(T), it can still escape. It may be easiest to start with worrying about mutable references for now and then extend to const references later.
Also, please find another way than pointer vs. non-pointer to communicate if something can escape. Once upon a time, D was going to have scope parameters. I always assumed that meant no escape. I'd really love to see something along those lines come back.
More information about the Digitalmars-d
mailing list