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?
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.
|
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). | |||||||||||||||||||||
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. | |||||||||||||||||||||
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. | |||
|
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. | |||||||||||||||||||||
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/ | |||
|
feedback
|