From my understanding C++/CX doesn't use garbage collection, it use a reference counted approach instead.

The problem with reference counting is that it cannot dispose of cycles. Cycles are usually solved using weak references, such as weak_ptr in standard C++.

But I cannot find a way in C++/CX to explicitly specify a weak reference. From that I would assume that this is handled by C++/CX itself. I am wondering how C++/CX would solve this.

For instance, look at the following code:

ref class Foo
{
public:
    Bar^ bar;
};

ref class Bar
{
public:
    Foo^ foo;
};

ref class App
{
public:
    virtual void OnLaunched(LaunchActivatedEventArgs^ args)
    {
        Foo^ foo = ref new Foo();
        Bar^ bar = ref new Bar();
        foo.bar = bar;
        bar.foo = foo;
    }
};

How does C++/CX detect this cycle?

How does C++/CX solve this cycle?

How does C++/CX decide which one of these objects should be the "root object" and which one should be the "weak reference"?

link|improve this question

Why should it detect the cycle? It cannot dispose neither, since both are in use, when you delete the last of those two objects, both will be free'd. Done. – RedX Sep 16 '11 at 7:07
There are well known cycle-detection algorithms for reference counted GCs... secure.wikimedia.org/wikipedia/en/wiki/… – CAFxX Sep 16 '11 at 7:09
@RedX: If C++/WinRT doesn't handle cycles the application will leak memory. – dalle Sep 16 '11 at 7:23
1  
@CAFxX: WinRT doesn't use a GC. – dalle Sep 16 '11 at 7:24
1  
WinRT itself supports weak references - have a look at "C:\Program Files (x86)\Windows Kits\8.0\Include\winrt\WeakReference.idl". I don't yet know how it is projected to VC++ language extensions, though. – Pavel Minaev Sep 16 '11 at 16:00
feedback

5 Answers

up vote 8 down vote accepted

Short answer: No, C++/CX doesn't detect and solve cycles of objects.

Long answer: WinRT itself has a standard mechanism for weak references. On ABI level, this is defined in terms of interfaces IWeakReference and IWeakReferenceSource, which you can see in "%ProgramFiles%\Windows Kits\8.0\Include\winrt\WeakReference.idl".

In C++/CX, all your classes will automatically implement IWeakReferenceSource, and hence all their instances can be weakly referenced. To obtain and store a weak reference to an object, you should use the helper class Platform::WeakReference (defined in vccorlib.h):

Foo^ foo = ref new Foo;
Platform::WeakReference weakRef(foo);

to retrieve back the object, use Resolve<T>:

foo = weakRef.Resolve<Foo>();

As usual, you will get nullptr is the object has already been destroyed.

Other than that, an instance of WeakReference behaves more or less like a smart pointer - it's copyable, movable, comparable, assignable from nullptr, has an implicit conversion to an unspecified bool type etc.

Note that, as of VS11 Beta, IDE Intellisense will balk at WeakReference if you try to use it, underlining it with squiggles etc. The compiler can handle them just fine despite all that, though.

link|improve this answer
hmm. another reason not to have created the C++/CX extensions and stuck with the weak_ptr<wrapper class> like we all want it to be :) – gbjbaanb Feb 14 at 18:12
@gbjbaanb Please keep in mind that this describes the status quo as of Developer Preview. It doesn't mean that things will remain the same in future releases. – Pavel Minaev Feb 14 at 21:44
of course, and Microsoft can have all my applauds if it listens to us and changes the nasty .NET-style interface to a more native looking one. I guess this is a chance for MS to contribute to the Modules spec that unfortunately didn't make it into the latest standard, now a Boost::Modules that also works as a way to access WinRT components, that'd be good. – gbjbaanb Feb 24 at 17:39
@gbjbaanb C++/CX is not forced on you - if you prefer vanilla C++ with smart pointer templates etc, you can use that - regular IDL files are supplied for all WinRT interfaces, and WRL is the helper library with ComPtr<T> and other stuff. See this video for more details: channel9.msdn.com/Shows/C9-GoingNative/… – Pavel Minaev Feb 24 at 18:17
I've rewritten the answer to match the current state of affairs in beta (which has proper weak reference support in C++/CX). – Pavel Minaev Mar 20 at 23:54
feedback

Check out Include\winrt\WeakReference.h in the SDK. It define IWeakReference that can be used for this purpose.

link|improve this answer
I tried whipping up a sample using reinterpret_cast and friends to go from T^ to IWeakReferenceSource*, but the QI retuns E_NOINTERFACE for classes defined via ref class - it looks like those don't support weak interfaces (yet)? Does work for WinRT components from Windows.*, though. – Pavel Minaev Sep 16 '11 at 22:44
feedback

It will the same old way of COM programming, manual thinking and adding explicit decref calls.

link|improve this answer
There are times when this isn't an option, such as when setting Window::Current->Content = foo in OnLaunched before returning. – dalle Sep 16 '11 at 7:28
@Pavel: Decref would look like t = nullptr;, probably. – Ben Voigt Sep 17 '11 at 2:06
There's IWeakReference so this answer isn't entirely correct. Need to find out about how to do weak references in C++/CX though. – Pavel Minaev Sep 17 '11 at 3:59
From what I've heard so far, this answer is the most accurate. There's a lot of hand waving going on but nothing concrete. Pre-emptive +1. – Hans Passant Sep 17 '11 at 4:52
@Hans Please see my answer. – Pavel Minaev Sep 17 '11 at 8:21
feedback

As Pavel Minaev said, WinRT has a standard mechanism for weak references: the IWeakReferenceSource/IWeakReference interfaces, the WRL::WeakRef helper class, and so on.

Unfortunately classes defined via ref class do not implement IWeakReferenceSource and, at least in this Developer Preview version, I could not find any way to add this interface.

A possible workaround is to implement the WinRT class without using C++/CX extensions, in 'native' C++. The WRL framework simplifies this task considerably (it does for WinRT what ATL was doing for COM).

There is one of the WinRT samples (the “DLL server authoring" sample) that shows how to implement a WinRT object without using ref. By default, classes that inherit from WRL::RuntimeClass<Interface> automatically implement IWeakReferenceSource and so provide weak references.

link|improve this answer
feedback

Those aren't WinRT objects, those are objects of your custom type. Because you've declared them as .NET reference types (ref class) using the C++/CLI syntax, they're garbage collected like all .NET reference types, via a reachability test, not reference counting.

Win32 objects have always been reference counted, so it doesn't seem like WinRT changes anything there. It just provides the C++ RAII classes for you, under Win32 programmers wrote their own wrappers to take advantage of RAII.

link|improve this answer
3  
This is not C++/CLI, this is VC++ Component Extensions. Syntax is (mostly) the same, semantics is not. In VC++/CX, ref class is refcountable, and copying T^ will update it automatically. No GC is involved. – Pavel Minaev Sep 16 '11 at 22:23
@Pavel: Wait, so the same code can be correct C++/CLI and broken VC++ Component Extensions? That idea needs to die immediately. Or at least require a #pragma at the top of each file to specify which build environment it's written for. – Ben Voigt Sep 16 '11 at 22:30
Oh, now I see, you can tell which environment it's meant for based on either ref new or gcnew. Still a very trouble-prone idea, IMO. – Ben Voigt Sep 16 '11 at 22:33
There are other differences there (e.g. cli is now lang, and System::String is Platform::String), but you're right, one can write code that is visually indistinguishable from C++/CLI but with different semantics. C++/CLI is not officially supported in Metro style apps, however. Docs are here: msdn.microsoft.com/en-us/library/windows/apps/…; also see Herb's talk here: channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-532T - starting at 9:20 – Pavel Minaev Sep 16 '11 at 22:44
feedback

Your Answer

 
or
required, but never shown

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