Windows 8 introduces WinRT, which is like .NET but unmanaged. Why is it unmanaged? Is it a performance issue? Does it mean garbage collection is not suitable for lower level APIs?

link|improve this question

74% accept rate
6  
Not constructive? Really? Maybe more fit for P.SE, but it's not not constructive by any stretch. – Rei Miyasaka Apr 14 at 2:23
feedback

closed as not constructive by casperOne Jan 13 at 20:42

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

up vote 42 down vote accepted

The new Windows API is unmanaged because the leaders in the Windows teams (and Office team, whose former leader –Sinofsky- is now the president of the Windows and Windows Live Division) had no part in the design and distribution of .NET, never promoted it in any way, and its popularity is actually a threat to their personal careers (imagine: if .NET became an even bigger success, that could likely put its designers and contributors -like Scott Guthrie- ahead of people like Steven Sinofsky who focused on other areas).

They brought in Javascript to the picture, so now they can say:

Need the highest performance? Choose C++.

Need the easiest learnability (for the language, not for the APIs)/the easiest (UI) portability? Choose Javascript.

Need the cheapest maintainability, extensibility, reusability, highest safety, etc.? Senseless! Why would any software development want to focus on any of those areas?

Might sound like a joke, but it’s actually serious. Most of the Windows and Office teams are never going to use .NET related technologies, just like they never have before. For most of them, it’s a competitor technology. They will support .NET to pretty much the bare minimum they HAVE to (and if Sinofsky gets to an even higher level where he can happily ignore devdiv’s whine / (re)move its people as he pleases, that’ll get very close to zero).

link|improve this answer
5  
You've hit the nail on the head :) – macropas Oct 9 '11 at 9:57
3  
tl;dr: Politics. – Chris Charabaruk Oct 24 '11 at 1:44
42  
A fascinating conspiracy theory, but not one grounded in the truth. WinRT is unmanaged because the OS is unmanaged. And by designing WinRT the way it was designed, it gains the ability to be expressed in many different languages, not just C++, C# and JS. For instance, I could easily see a set of Perl modules which implement the WinRT APIs which work on the desktop. If we had implemented it in .Net, that would have been extremely difficult. – Larry Osterman Jan 13 at 2:54
9  
I'd have to agree, and since I don't work at Microsoft anymore, I'm not even required to :) If your goal was to create one library that bound to at least C# and JS, and you were Windows org writing your code in native C++, why wouldn't you use a derivative of COM? It's exactly what COM was designed to do, create an object model that is independent of any one language's quirks. Converting IE (at least Chakra) to managed code would be even more difficult. – Paul Betts Jan 22 at 4:17
11  
-1. Not good to criticize without citing some verifiable facts. – Lee - Slalom Jan 25 at 17:21
show 8 more comments
feedback

WinRT is a replacement for the age-old C-based Winapi. It is an api that must be usable in many runtime environments. Back 20 years ago, a C api was relatively easy to interop with. That has moved on since then, COM became the universal glue in the last half of the 1990s. Practically any language runtime in common use in Windows supports COM.

A garbage collector is a language runtime implementation detail. The collector for .NET is very different from the collector for Javascript for example. The native objects created in either must observe the very strict rules of the collector. Which in turn means that they would have had to create WinRT versions that are specific to each language runtime. That won't do, even a company as big as Microsoft cannot afford to create and support a specific WinRT version for every language binding. Nor is it necessary, given that these languages already support COM.

Right now, the best binding for WinRT is C++ since COM works more efficiently with explicit memory management. With ample help from the new C++ compiler extensions that make it automatic, very similar to _com_ptr_t of old with C++/CLI-like syntax to avoid it. Binding to managed languages is pretty simple since the CLR already has excellent COM interop support. With WinRT adopting the metadata format of .NET, the binding is trivial. Afaik, no work has been done at all on managed compilers or framework as of today, it just works right out of the box.

The elephant in the room is Marshal.ReleaseComObject() and IWeakReferenceSomething. Anders slipped a comment that the C# team actually is busy with WinRT details. Beyond await/async that's already done, I suspect something is a-foot to make COM interface references explicitly disposable and/or deal with cyclic references. It is necessary.

link|improve this answer
8  
I don't know about compilers, but I'm pretty sure that WinRT .NET projection had a lot of work done on CLR. They might have reused COM Interop code, but there are differences also (e.g. IInspectable lets you do things like query an object for its actual class type or the list of all supported interfaces, and with winmd files one can project WinRT metadata for all that into Reflection). And winmd files are not immediately usable as interop assemblies either, CLR has to handle them specially. – Pavel Minaev Sep 17 '11 at 22:16
3  
Not sure, you are ignoring the elephant. IInspectable is a replacement for IDispatch which got stuck in 1997. You work for Microsoft, feel free to give away some of the secrets here :) – Hans Passant Sep 17 '11 at 22:23
9  
There was work done in all 3 languages to support the language projections. – Larry Osterman Sep 18 '11 at 1:19
5  
I'd claim that right now 'the best binding for WinRT' is actually C#. The CLR binding is optimised even beyond the pretty fast COM interop, and the .NET languages in the dev preview already implement excellent support for the ubiquitous async functions with 'await'. In a few of the demos the C# code did a lot more than the C++ samples, and worked more easily. Maybe later C++ will get an async helper extension, but in this version C++ async looked terrible. And you're less likely to leak long-term memory from the garbage collecting CLR than the cycle-problematic C++ implementation. C# FTW! – Govert Sep 20 '11 at 20:36
5  
@Hans: The 3rd projection is the CLR for all CLR languages (primarily C# and VB). Also WinJS isn't a projection, it's a set of support libraries. The projection is directly built into the Chakra JS engine. – Larry Osterman Sep 26 '11 at 5:03
show 4 more comments
feedback

GC is a rather divisive topic, and many developers - especially C++ guys - don't want it anywhere near their apps. And if you use a library written in managed code, even via an unmanaged wrapper, you still end up with CLR and all its services loaded and running in your process.

A native implementation of WinRT system libraries places a higher burden on library developers, but lets the users of that library make a choice for themselves regarding how high-level or low-level they want to go; and if they want to use a runtime/VM, what it should look like.

link|improve this answer
feedback

My suspicion is interoperability with non .net code.

One thing where a GC is annoying is when interacting with other code that does use a different GC. In particular cycles that cross between different GCs are problematic.

A c based API on the other hand is the lowest common denominator. Pretty much every every programming language can interact with a c API. So it's only natural to choose a c based API as a low level API.

link|improve this answer
5  
@codekaizen: It's actually COM-based, which you can use from C. Just not very nicely. – Nicol Bolas Sep 17 '11 at 20:16
1  
My understanding is that COM defines a binary format for interfaces(in particular the format of their VMT) and most windows C++ compilers have been written in such a way that what they emit for for purely virtual classes is binary compatible with COM. C++ by itself doesn't define such a binary format. – CodeInChaos Sep 17 '11 at 20:36
4  
@CodeInChaos Pretty much, though in fact that vtable format has spread - e.g. g++ uses it on other platforms/architectures also, which is why Mozilla's XPCOM works, and why you can use COM Interop in Mono on Linux. – Pavel Minaev Sep 17 '11 at 20:43
1  
3  
@codekaizen I think one can reasonably say that it was designed to be object-oriented, and thus maps to C++ (even without language extensions) in a much more straightforward way. It also helps that low-level concepts (such as vtables) also match, so you can map those directly. But OO in C is not unprecedented - GObject/Gtk is one example - and WinRT could be projected into C that way as well. In the end, all you need are structs & pointers to them, __stdcall function pointers, and the ability to call __stdcall functions exported from DLLs. – Pavel Minaev Sep 17 '11 at 22:19
show 2 more comments
feedback

WinRT is unmanaged because it is intended to be a replacement for Win32 - the lowest level developer accessible API for Windows. An unmanaged API is still the most potentially performant one that can be exposed to the developer and the reasoning goes that it will always be possible to wrap a managed API on top of it, which is precisely what 'projections' do.

It also means that C++ developers can use WinRT without jumping through the hoops that C++/CLI introduces ( see http://www2.research.att.com/~bs/bs_faq.html#CppCLI ) It does mean though that you will still have to study COM if you want to use WinRT.

The real question is 'why is COM necessary? why did Microsoft have to invent it?' Because plain C++ without all the added facilities of COM is inadequate for real OOP work and Stroustrup's claims of C++ giving you 'portability' are very very disingenuous in light of the working reality. See http://webmechs.com/webpress/2011/11/c-versus-objective-c-as-api-substrate/

link|improve this answer
feedback

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