I don't quite get type providers after watching Don Symes's pdc video http://player.microsoftpdc.com/Session/04092962-4ed1-42c6-be07-203d42115274

Do I understand this correctly. You can get ready made type providers for Twitter, Excel...

What if I have a custom Xml structure, do I need to implement my own type provider for that and how is this different from creating my own custom mapper?

link|improve this question

48% accept rate
feedback

2 Answers

Say you have some arbitrary data entity out in the world. For this example, let's say it's a spreadsheet.

Let's also say you have some way to get/infer schema/metadata for that data - that is, you can know types (e.g. double versus string) and relationships (e.g. this column means 'salary') and metadata (e.g. this sheet is for the June 2009 budget).

Type providers lets you code up a kind of 'shim library' that knows about some kind of data entity (e.g. a spreadsheet) and use that library as part of the compiler/IDE toolchain so that you can write code like

mySpreadsheet.ByRowAndColumn.C4

or something, and get Intellisense (autocompletion) and tooltips (e.g. describing cell C4 as Salary for Bob) and static typing (e.g. have it be a double or a string or whatever it is). Essentially this gives you the tooling affordances of statically-typed object models with the ease-of-use leverage of various dynamic or code-generation systems, with some improvements on both. The 'cost' is that someone has to write the shim library (the 'type provider'), but many such providers are very general (e.g. one that speaks OData or Excel or WMI or whatnot) and so a small handful of type provider libraries makes vast quantities of the world's data available in your programming language with static typing and first-class tooling support.

The architecture is an open compiler, where provider-authors implement a small interface that allows them to inject new names/types into the programming context. A type provider might be just another library you pass to the compiler (a reference in your project, -r-ed), with extra metadata that marks it as a type provider that participates in the compilation/IDE/codegen portions of development.

I don't know exactly what a "custom mapper" is in your xml example to draw a comparison.

link|improve this answer
any chance you have info on when type providers will become availible ?Thanks – jlezard Jan 17 '11 at 11:09
Nope, sorry, no info yet. – Brian Jan 17 '11 at 11:15
By custom mapper I meant a library that maps a xml file into a strongly typed object model. I can't see the big difference between such a library and a type providers library – TT. Jan 17 '11 at 12:04
Because there can be one type provider written for XSD files, and you get strongly typed, discoverable access to any XML file compatible with any XSD, without having to write that mapper or the object model. – Joel Mueller Jan 17 '11 at 16:24
Note also that I assume that the 'custom mapper' involves 'code generation' (which comes with its own baggage) and is a specific tool for xml. Whereas type providers are an open mechanism where anyone can author a provider for any kind of data using the same interface/machanism, rather than relying on a fixed set of unique tools for certain domains/data. – Brian Jan 17 '11 at 19:25
feedback

Have a look at the Gosu language: http://www.gosu-lang.org

Its open type system has all the features of f# type providers and a bit more. Read this blog post for some insight: http://guidewiredevelopment.wordpress.com/2010/11/18/gosus-secret-sauce-the-open-type-system/

link|improve this answer
how is this relevant to the question? might have been a good comment though – AK_ Nov 14 '11 at 13:30
feedback

Your Answer

 
or
required, but never shown

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