vote up 4 vote down star

I've discovered that the following code:

public static class MimeHelper
    {
    	public static string GetMimeType(string strFileName)
    	{
    		string retval;
    		switch (System.IO.Path.GetExtension(strFileName).ToLower())
    		{
    			case ".3dm": retval = "x-world/x-3dmf"; break;
    			case ".3dmf": retval = "x-world/x-3dmf"; break;
    			case ".a": retval = "application/octet-stream"; break;
    			// etc...
    			default: retval = "application/octet-stream"; break;
    		}
    		return retval;
    	} 
    }

causes the compiler to create this namespaceless, internal class (copied from Reflector):

<PrivateImplementationDetails>{621DEE27-4B15-4773-9203-D6658527CF2B}
    - $$method0x60000b0-1 : Dictionary<String, Int32>
    - Used By: MimeHelper.GetMimeType(String) : String

Why is that? How would I change the above code so it doesn't happen (just out of interest)

Thanks

Andrew

flag

45% accept rate
as off-topic, why do you use additional string variable retval, if you can return from switch immediately? – abatishchev Apr 8 at 12:09
because it was a copy and paste job from somewhere, yes I could (and will) change it to do so – Andrew Bullock Apr 8 at 12:12

3 Answers

vote up 11 vote down check

It's creating the dictionary to handle the lookups of the various cases in the switch statement instead of making several branching ifs out of it to set the return value. Trust me -- you don't want to change how it's doing it -- unless you want to make the map explicit.

ASIDE: At first I was a little puzzled by why the Dictionary is of type <String,Int32>, but then it occurred to me that you have several keys that map onto the same values. Undoubtedly, the value is the index into an array of strings that holds the return value and using the indirection allows it to keep only one copy of each return value regardless of how many keys map onto it.

EDIT: Based on your comment, I think I might be tempted to store the mappings in an external configuration file, read them in during start up, and construct the actual map -- either a single level map from key to value or a similar multilevel map from key to index and index to value. I think it would be easier to maintain these mappings in a configuration file than to update the code every time you needed to add or remove a particular case.

link|flag
I thought that as well but when I compiled the type locally (both debug and release) I didn't see any compiler generated stuff. – Andrew Hare Apr 8 at 12:10
Different version of the compiler? Different context? – tvanfosson Apr 8 at 12:12
Or perhaps you didn't include as much in the code replaced by the ellipsis and it didn't kick off the need for optimizing it? – tvanfosson Apr 8 at 12:16
Must be - nicely done. +1 – Andrew Hare Apr 8 at 12:16
probably because in my version there's like 457 case statements, it probably doesnt optimise it in such a small case as provided above – Andrew Bullock Apr 8 at 12:17
vote up 0 vote down

What is happening is compiler is creating an internal class that it emits at compile time. This class is called <PrivateImplementationDetails>{99999999-9999-9999-9999-999999999999}, the GUID component of this class is generated at compile time so it changes with every build. Internally in this class there is a dictionary that contains the different case variables, and an int corresponding to each value. It then replaces the switch statement with a lookup in the dictionary to get the corresponding int, and does a switch on the int value (much more efficient than doing a bunch of sting compares).

link|flag
vote up 1 vote down

See this, for example.

link|flag

Your Answer

Get an OpenID
or

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