Generic Type Checking - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T10:14:38Zhttp://stackoverflow.com/feeds/question/8941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8941/generic-type-checking7Generic Type CheckingRob Cooper2008-08-12T15:07:40Z2009-03-26T17:08:12Z
<p>OK, here we go again! Following on from my <a href="http://beta.stackoverflow.com/questions/8625/generic-type-conversion-from-string" rel="nofollow">previous question</a> on Converting to a Generic Type from String, I thought I would ask another Generics-related question!</p>
<p>This time, <strong>is there a way to enforce/limit the types that are passed to PRIMITIVE's?</strong> <em>(bool, int, string, etc)</em></p>
<p>Now, I know you can limit the generic type parameter to a type or interface implementation via the <em>where</em> clause, however, this doesn't fit the bill for primitives (AFAIK) because the do not all have common ground (apart from <em>object</em> before someone says! :P).</p>
<p>So, my current thoughts are to just grit my teeth and do a big <em>switch</em> statement and throw an <em>ArgumentException</em> on failure..</p>
<p>Just thought I would check here to see if the awesome pool of wisdom that is StackOverflow could offer any better ideas? :)</p>
<p>Many thanks.
<hr /></p>
<p><strong>EDIT</strong>
Just to clarify:</p>
<p>The code definition should be like:</p>
<pre><code>public class MyClass<GenericType> ....
</code></pre>
<p>And instantiation:</p>
<pre><code>MyClass<bool> = new MyClass<bool>(); // Legal
MyClass<string> = new MyClass<string>(); // Legal
MyClass<DataSet> = new MyClass<DataSet>(); // Illegal
MyClass<RobsFunkyHat> = new MyClass<RobsFunkyHat>(); // Illegal (but looks awesome!)
</code></pre>
<p><hr /></p>
<p><strong>EDIT:</strong> This was so simple following on from <a href="http://beta.stackoverflow.com/questions/8941/generic-type-checking#8956" rel="nofollow">Jon Limjaps Pointer</a>.. So simple I almost want to cry, but it's great because the code works like a charm!</p>
<p>So here is what I did (you'll laugh!):</p>
<h2>Code Added to the Generic Class</h2>
<pre><code>bool TypeValid()
{
// Get the TypeCode from the Primitive Type
TypeCode code = Type.GetTypeCode(typeof(PrimitiveDataType));
// All of the TypeCode Enumeration refer Primitive Types
// with the exception of Object and Empty (Null).
// Since I am willing to allow Null Types (at this time)
// all we need to check for is Object!
switch (code)
{
case TypeCode.Object:
return false;
default:
return true;
}
}
</code></pre>
<p>Then a little utility method to check the type and throw an Exception...</p>
<pre><code>private void EnforcePrimitiveType()
{
if (!TypeValid())
throw new InvalidOperationException(
"Unable to Instantiate SimpleMetadata based on the Generic Type of '" + typeof(PrimitiveDataType).Name +
"' - this Class is Designed to Work with Primitive Data Types Only.");
}
</code></pre>
<p>All that then needs to be done is to call <em>EnforcePrimitiveType()</em> in the classes constructors.. Job done! :)</p>
<p>The only one downside, it only throws an Exception at runtime (obviously) rather than design time.. But thats no big deal and could be picked up with utilities like FxCop (which we don't use at work).</p>
<p>Special thanks to Jon Limjap on this one!</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8945#894515Answer by Lars Mæhlum for Generic Type CheckingLars Mæhlum2008-08-12T15:11:58Z2008-08-12T15:21:59Z<pre><code>public class Class1<GenericType> where GenericType : struct
{
}
</code></pre>
<p>This one seemed to do the job..</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8946#89460Answer by Rob Cooper for Generic Type CheckingRob Cooper2008-08-12T15:14:05Z2008-08-12T15:14:05Z<p>@Lars, thanks for the answer, but you missed the key thing.. <strong>AFAIK Primitives don't have a common BaseType</strong> (apart from <em>Object</em> which is useless).. I want to limit the generic to work with any primitive, but nothing else.</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8947#89470Answer by Jon Limjap for Generic Type CheckingJon Limjap2008-08-12T15:14:15Z2008-08-12T15:14:15Z<p>Well, I don't know how but a main point of contention between objects and primitves is that most primitives are actually structs, not classes.</p>
<p>I'll look for a way to figure them out programmatically :)</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8951#89514Answer by Rob Cooper for Generic Type CheckingRob Cooper2008-08-12T15:17:53Z2008-08-12T15:17:53Z<p>@Jon Limjap - Good point, and something I was already considering.. I'm sure there is a generic method that can be used to determine if the type is of a value or reference type..</p>
<p>This could be useful in instantly removing a lot of the objects I dont want to deal with (but then you need to worry about the structs that are used such as <em>Size</em> ).. Interesting problem no? :)</p>
<p><strong>EDIT:</strong>
Ah yes, here it is:</p>
<pre><code>where T : struct
</code></pre>
<p>Taken from <a href="http://msdn.microsoft.com/en-us/library/d5x73970.aspx" rel="nofollow">MSDN</a>.</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8954#89540Answer by JoshL for Generic Type CheckingJoshL2008-08-12T15:21:05Z2008-08-12T15:21:05Z<p>How about a custom FxCop rule that flags undesirable usage of MyClass<>?</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8956#89568Answer by Jon Limjap for Generic Type CheckingJon Limjap2008-08-12T15:21:44Z2008-08-12T15:21:44Z<p>Primitives appear to be specified in the TypeCode enumeration:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.typecode.aspx" rel="nofollow"><a href="http://msdn.microsoft.com/en-us/library/system.typecode.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.typecode.aspx</a></a></p>
<p>Perhaps there is a way to find out if an object contains the TypeCode enum without having to cast it to an specific object or call GetType() or typeof()?</p>
<p><strong>Update</strong> It was right under my nose. The code sample there shows this:</p>
<pre><code>static void WriteObjectInfo(object testObject)
{
TypeCode typeCode = Type.GetTypeCode( testObject.GetType() );
switch( typeCode )
{
case TypeCode.Boolean:
Console.WriteLine("Boolean: {0}", testObject);
break;
case TypeCode.Double:
Console.WriteLine("Double: {0}", testObject);
break;
default:
Console.WriteLine("{0}: {1}", typeCode.ToString(), testObject);
break;
}
}
}
</code></pre>
<p>It's still an ugly switch. But it's a good place to start!</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8959#89590Answer by Rob Cooper for Generic Type CheckingRob Cooper2008-08-12T15:23:34Z2008-08-12T15:23:34Z<p>I'm curious.. I wonder if this could be done in .NET 3.x using extension methods.. Create an interface.. Implement the interface in the extension methods.. (which would probably be cleaner than a bit fat switch).. Plus if you then need to later extend to any lightweight custom types, they can also implement the same interface, with no changes required to the base code.</p>
<p>What do you guys think?</p>
<p>Sad news is I am working in framework 2!! :D</p>
<p><strong>EDIT:</strong> Leaving the office in like 5 mins, will pick this up when I get back home! :D</p>
http://stackoverflow.com/questions/8941/generic-type-checking/8980#89800Answer by Keith for Generic Type CheckingKeith2008-08-12T15:43:37Z2008-08-12T15:43:37Z<p>Pretty much what @Lars already said:</p>
<pre><code>//force T to be a value (primitive) type
public class Class1<T> where T: struct
//force T to be a reference type
public class Class1<T> where T: class
//force T to be a parameterless constructor
public class Class1<T> where T: new
</code></pre>
<p>All work in .Net 2, 3 and 3.5</p>
http://stackoverflow.com/questions/8941/generic-type-checking/9008#90080Answer by Jon Limjap for Generic Type CheckingJon Limjap2008-08-12T16:03:30Z2008-08-12T16:03:30Z<blockquote>
<p>public class Class1 where
GenericType : struct { }</p>
<p>This one seemed to do the job..</p>
</blockquote>
<p>The problem I see with that implementation is that if you have a custom struct it will still come across as a primitive, which is not the case.</p>
http://stackoverflow.com/questions/8941/generic-type-checking/9046#90460Answer by Rob Cooper for Generic Type CheckingRob Cooper2008-08-12T16:58:15Z2008-08-12T16:58:15Z<p>@<a href="http://beta.stackoverflow.com/questions/8941/generic-type-checking#8956" rel="nofollow">Jon Limjap</a>
Brilliantly done my friend, I knew I should have investigated more in the Type class.
I will knock some code together and see how it runs! +1 for this, and may well end up the answer! :)</p>
<p>Thanks again!</p>
<p>@<a href="http://beta.stackoverflow.com/questions/8941/generic-type-checking#8980" rel="nofollow">Keith</a> Thanks for the input, however, you didn't read the earlier comments! We are aware of the <em>where</em> clause being able to <strong>partially</strong> constrain the generic type, but it doesn't <em>enforce</em> it! Thanks for the input though!</p>
http://stackoverflow.com/questions/8941/generic-type-checking/69673#696730Answer by Doug McClean for Generic Type CheckingDoug McClean2008-09-16T05:52:05Z2008-09-16T17:18:20Z<p>If you can tolerate using factory methods (instead of the constructors MyClass you asked for) you could always do something like this:</p>
<pre><code>class MyClass<T>
{
private readonly T _value;
private MyClass(T value) { _value = value; }
public static MyClass<int> FromInt32(int value) { return new MyClass<int>(value); }
public static MyClass<string> FromString(string value) { return new MyClass<string>(value); }
// etc for all the primitive types, or whatever other fixed set of types you are concerned about
}
</code></pre>
<p>A problem here is that you would need to type <code>MyClass<AnyTypeItDoesntMatter>.FromInt32</code>, which is annoying. There isn't a very good way around this if you want to maintain the private-ness of the constructor, but here are a couple of workarounds:</p>
<ul>
<li>Create an abstract class <code>MyClass</code>. Make <code>MyClass<T></code> inherit from <code>MyClass</code> <strong>and nest it within <code>MyClass</code></strong>. Move the static methods to <code>MyClass</code>. This will all the visibility work out, at the cost of having to access <code>MyClass<T></code> as <code>MyClass.MyClass<T></code>.</li>
<li>Use <code>MyClass<T></code> as given. Make a static class <code>MyClass</code> which calls the static methods in <code>MyClass<T></code> using <code>MyClass<AnyTypeItDoesntMatter></code> (probably using the appropriate type each time, just for giggles).</li>
<li>(Easier, but certainly weird) Make an abstract type <code>MyClass</code> <strong>which inherits from <code>MyClass<AnyTypeItDoesntMatter></code></strong>. (For concreteness, let's say <code>MyClass<int></code>.) Because you can call static methods defined in a base class through the name of a derived class, you can now use <code>MyClass.FromString</code>.</li>
</ul>
<p>This gives you static checking at the expense of more writing.</p>
<p>If you are happy with dynamic checking, I would use some variation on the TypeCode solution above.</p>
http://stackoverflow.com/questions/8941/generic-type-checking/217079#2170790Answer by Vivek for Generic Type CheckingVivek2008-10-19T22:38:42Z2008-10-19T22:43:51Z<p>You can simplify the <code>EnforcePrimitiveType</code> method by using <a href="http://msdn.microsoft.com/en-us/library/system.type.isprimitive.aspx" rel="nofollow"><code>typeof(PrimitiveDataType).IsPrimitive</code></a> property. Am I missing something?</p>
http://stackoverflow.com/questions/8941/generic-type-checking/686709#6867090Answer by Matt Boehlig for Generic Type CheckingMatt Boehlig2009-03-26T17:08:12Z2009-03-26T17:08:12Z<p>@Rob, <code>Enum</code>'s will slip through the <code>TypeValid</code> function as it's <code>TypeCode</code> is <code>Integer</code>. I've updated the function to also check for <code>Enum</code>.</p>
<pre><code>Private Function TypeValid() As Boolean
Dim g As Type = GetType(T)
Dim code As TypeCode = Type.GetTypeCode(g)
' All of the TypeCode Enumeration refer Primitive Types
' with the exception of Object and Empty (Nothing).
' Note: must also catch Enum as it's type is Integer.
Select Case code
Case TypeCode.Object
Return False
Case Else
' Enum's TypeCode is Integer, so check BaseType
If g.BaseType Is GetType(System.Enum) Then
Return False
Else
Return True
End If
End Select
End Function
</code></pre>