USING REFLECTION

 

Add a note hereIn this section, you take a closer look at the System.Type class, which enables you to access information concerning the definition of any data type. You'll also look at the System.Reflection.Assembly class, which you can use to access information about an assembly or to load that assembly into your program. Finally, you will combine the code in this section with the code in the previous section to complete the WhatsNewAttributes example.

Add a note hereThe System.Type Class

Add a note hereSo far you have used the Type class only to hold the reference to a type as follows:


   Type t = typeof(double);

Add a note hereAlthough previously referred to as a class, Type is an abstract base class. Whenever you instantiate a Type object, you are actually instantiating a class derived from Type. Type has one derived class corresponding to each actual data type, though in general the derived classes simply provide different overloads of the various Type methods and properties that return the correct data for the corresponding data type. They do not typically add new methods or properties. In general, there are three common ways to obtain a Type reference that refers to any given type.

  • Add a note hereYou can use the C# typeof operator as shown in the preceding code. This operator takes the name of the type (not in quotation marks, however) as a parameter.

  • Add a note hereYou can use the GetType method, which all classes inherit from System.Object:

    
       double d = 10;
       Type t = d.GetType();
    

    Add a note hereGetType is called against a variable, rather than taking the name of a type. Note, however, that the Type object returned is still associated with only that data type. It does not contain any information that relates to that instance of the type. The GetType method can be useful if you have a reference to an object but you are not sure what class that object is actually an instance of.

  • Add a note hereYou can call the static method of the Type class, GetType:

    
       Type t = Type.GetType("System.Double");
    

Add a note hereType is really the gateway to much of the reflection functionality. It implements a huge number of methods and properties—far too many to provide a comprehensive list here. However, the following subsections should give you a good idea of the kinds of things you can do with the Type class. Note that the available properties are all read-only; you use Type to find out about the data type—you cannot use it to make any modifications to the type!

Type Properties

Add a note hereYou can divide the properties implemented by Type into three categories. First, a number of properties retrieve the strings containing various names associated with the class, as shown in the following table:

Add a note herePROPERTY

Add a note hereRETURNS

Add a note hereName

Add a note hereThe name of the data type

Add a note hereFullName

Add a note hereThe fully qualified name of the data type (including the namespace name)

Add a note hereNamespace

Add a note hereThe name of the namespace in which the data type is defined

Add a note hereSecond, it is possible to retrieve references to further type objects that represent related classes, as shown in the following table.

Add a note herePROPERTY

Add a note hereRETURNS TYPE REFERENCE CORRESPONDING TO

Add a note hereBaseType

Add a note hereThe immediate base type of this type

Add a note hereUnderlyingSystemType

Add a note hereThe type to which this type maps in the .NET runtime (recall that certain .NET base types actually map to specific predefined types recognized by IL)

Add a note hereA number of Boolean properties indicate whether this type is, for example, a class, an enum, and so on. These properties include IsAbstract, IsArray, IsClass, IsEnum, IsInterface, IsPointer, IsPrimitive (one of the predefined primitive data types), IsPublic, IsSealed, and IsValueType. The following example uses a primitive data type:


   Type intType = typeof(int);
   Console.WriteLine(intType.IsAbstract);   // writes false
   Console.WriteLine(intType.IsClass);      // writes false
   Console.WriteLine(intType.IsEnum);       // writes false
   Console.WriteLine(intType.IsPrimitive);  // writes true
   Console.WriteLine(intType.IsValueType);  // writes true

Add a note hereThis example uses the Vector class:


   Type vecType = typeof(Vector);
   Console.WriteLine(vecType.IsAbstract);  // writes false
   Console.WriteLine(vecType.IsClass);     // writes true
   Console.WriteLine(vecType.IsEnum);      // writes false
   Console.WriteLine(vecType.IsPrimitive); // writes false
   Console.WriteLine(vecType.IsValueType); // writes false

Add a note hereFinally, you can also retrieve a reference to the assembly in which the type is defined. This is returned as a reference to an instance of the System.Reflection.Assembly class, which is examined shortly:


   Type t = typeof (Vector);
   Assembly contai6ningAssembly = new Assembly(t);
Methods

Add a note hereMost of the methods of System.Type are used to obtain details about the members of the corresponding data type—the constructors, properties, methods, events, and so on. Quite a large number of methods exist, but they all follow the same pattern. For example, two methods retrieve details about the methods of the data type: GetMethod and GetMethods.GetMethod() returns a reference to a System.Reflection.MethodInfo object, which contains details about a method. GetMethods returns an array of such references. As the names suggest, the difference is that GetMethods returns details about all the methods, whereas GetMethod returns details about just one method with a specified parameter list. Both methods have overloads that take an extra parameter, a BindingFlags enumerated value that indicates which members should be returned — for example, whether to return public members, instance members, static members, and so on.

Add a note hereFor example, the simplest overload of GetMethods takes no parameters and returns details about all the public methods of the data type:


   Type t = typeof(double);
   MethodInfo[] methods = t.GetMethods();
   foreach (MethodInfo nextMethod in methods)
   {
      // etc.
          }

Add a note hereThe member methods of Type that follow the same pattern are shown in the following table. Note that plural names return an array.

Add a note hereTYPE OF OBJECT RETURNED

Add a note hereMETHOD(S)

Add a note hereConstructorInfo

Add a note hereGetConstructor(), GetConstructors()

Add a note hereEventInfo

Add a note hereGetEvent(), GetEvents()

Add a note hereFieldInfo

Add a note hereGetField(), GetFields()

Add a note hereMemberInfo

Add a note hereGetMember(), GetMembers(), GetDefaultMembers()

Add a note hereMethodInfo

Add a note hereGetMethod(), GetMethods()

Add a note herePropertyInfo

Add a note hereGetProperty(), GetProperties()

Add a note hereThe GetMember and GetMembers methods return details about any or all members of the data type, regardless of whether these members are constructors, properties, methods, and so on.

Add a note hereThe TypeView Example

Add a note hereThis section demonstrates some of the features of the Type class with a short example, TypeView, which you can use to list the members of a data type. The example demonstrates how to use TypeView for a double; however, you can swap this type with any other data type just by changing one line of the code in the example. TypeView displays far more information than can be displayed in a console window, so we're going to take a break from our normal practice and display the output in a message box. Running TypeView for a double produces the results shown in Figure 15-1.

Image from book
Add a note hereFigure 15-1

Add a note hereThe message box displays the name, full name, and namespace of the data type as well as the name of the underlying type and the base type. Next, it simply iterates through all the public instance members of the data type, displaying for each member the declaring type, the type of member (method, field, and so on), and the name of the member. The declaring type is the name of the class that actually declares the type member (for example, System.Double if it is defined or overridden in System.Double, or the name of the relevant base type if the member is simply inherited from a base class).

Add a note hereTypeView does not display signatures of methods because you are retrieving details about all public instance members through MemberInfo objects, and information about parameters is not available through a MemberInfo object. To retrieve that information, you would need references to MethodInfo and other more specific objects, which means that you would need to obtain details about each type of member separately.

Add a note hereTypeView does display details about all public instance members; but for doubles, the only ones defined are fields and methods. For this example, you will compile TypeView as a console application — there is no problem with displaying a message box from a console application. However, because you are using a message box, you need to reference the base class assembly System.Windows.Forms.dll, which contains the classes in the System.Windows.Forms namespace in which the MessageBox class that you will need is defined. The code for TypeView is as follows. To begin, you need to add a few using statements:


   using System;
   using System.Reflection;
   using System.Text;
   using System.Windows.Forms;

Add a note hereYou need System.Text because you will be using a StringBuilder object to build up the text to be displayed in the message box, and System.Windows.Forms for the message box itself. The entire code is in one class, MainClass, which has a couple of static methods and one static field, a StringBuilder instance called OutputText, which will be used to build the text to be displayed in the message box. The main method and class declaration look like this:


   class MainClass
   {
      static StringBuilder OutputText = new StringBuilder();

      static void Main()
      {
         // modify this line to retrieve details of any
         // other data type
         Type t = typeof(double);

         AnalyzeType(t);
         MessageBox.Show(OutputText.ToString(), "Analysis of type "
                                                 + t.Name);
         Console.ReadLine();
      }

Add a note hereThe Main method implementation starts by declaring a Type object to represent your chosen data type. You then call a method, AnalyzeType, which extracts the information from the Type object and uses it to build the output text. Finally, you show the output in a message box. Using the MessageBox class is fairly intuitive. You just call its static Show method, passing it two strings, which will, respectively, be the text in the box and the caption. AnalyzeType is where the bulk of the work is done:


   static void AnalyzeType(Type t)
   {
      AddToOutput("Type Name: " + t.Name);
      AddToOutput("Full Name: " + t.FullName);
      AddToOutput("Namespace: " + t.Namespace);

      Type tBase = t.BaseType;

      if (tBase != null)
      {
         AddToOutput("Base Type:" + tBase.Name);
      }

      Type tUnderlyingSystem = t.UnderlyingSystemType;

      if (tUnderlyingSystem != null)
      {
         AddToOutput("UnderlyingSystem Type:" + tUnderlyingSystem.Name);
      }

      AddToOutput("\nPUBLIC MEMBERS:");
      MemberInfo [] Members = t.GetMembers();

      foreach (MemberInfo NextMember in Members)
      {
         AddToOutput(NextMember.DeclaringType + " " +
         NextMember.MemberType + " " + NextMember.Name);
      }
   }

Add a note hereYou implement the AnalyzeType method by calling various properties of the Type object to get the information you need concerning the type names, then call the GetMembers method to get an array of MemberInfo objects that you can use to display the details for each member. Note that you use a helper method, AddToOutput, to build the text to be displayed in the message box:


   static void AddToOutput(string Text)
   {
      OutputText.Append("\n" + Text);
   }

Add a note hereCompile the TypeView assembly using this command:


   csc /reference:System.Windows.Forms.dll Program.cs

Add a note hereThe Assembly Class

Add a note hereThe Assembly class is defined in the System.Reflection namespace and provides access to the metadata for a given assembly. It also contains methods that enable you to load and even execute an assembly — assuming that the assembly is an executable. As with the Type class, Assembly contains too many methods and properties to cover here, so this section is confined to covering those methods and properties that you need to get started and that you will use to complete the WhatsNewAttributes example.

Add a note hereBefore you can do anything with an Assembly instance, you need to load the corresponding assembly into the running process. You can do this with either the static members Assembly.Load or Assembly.LoadFrom. The difference between these methods is that Load takes the name of the assembly, and the runtime searches in a variety of locations in an attempt to locate the assembly. These locations include the local directory and the global assembly cache. LoadFrom takes the full path name of an assembly and does not attempt to find the assembly in any other location:


   Assembly assembly1 = Assembly.Load("SomeAssembly");
   Assembly assembly2 = Assembly.LoadFrom
      (@"C:\My Projects\Software\SomeOtherAssembly");

Add a note hereA number of other overloads of both methods exist, which supply additional security information. After you have loaded an assembly, you can use various properties on it to find out, for example, its full name:


   string name = assembly1.FullName;
Getting Details About Types Defined in an Assembly

Add a note hereOne nice feature of the Assembly class is that it enables you to obtain details about all the types that are defined in the corresponding assembly. You simply call the Assembly.GetTypes method, which returns an array of System.Type references containing details about all the types. You can then manipulate these Type references as explained in the previous section:


   Type[] types = theAssembly.GetTypes();

   foreach(Type definedType in types)
   {
      DoSomethingWith(definedType);
   }
Getting Details About Custom Attributes

Add a note hereThe methods you use to find out which custom attributes are defined on an assembly or type depend on the type of object to which the attribute is attached. If you want to find out what custom attributes are attached to an assembly as a whole, you need to call a static method of the Attribute class, GetCustomAttributes, passing in a reference to the assembly:

 Note 

Add a note hereThis is actually quite significant. You may have wondered why, when you defined custom attributes, you had to go to all the trouble of actually writing classes for them, and why Microsoft didn't come up with some simpler syntax. Well, the answer is here. The custom attributes genuinely exist as objects, and when an assembly is loaded you can read in these attribute objects, examine their properties, and call their methods


   Attribute[] definedAttributes =
                Attribute.GetCustomAttributes(assembly1);
                // assembly1 is an Assembly object

Add a note hereGetCustomAttributes, which is used to get assembly attributes, has a few overloads. If you call it without specifying any parameters other than an assembly reference, it simply returns all the custom attributes defined for that assembly. You can also call GetCustomAttributes by specifying a second parameter, which is a Type object that indicates the attribute class in which you are interested. In this case, GetCustomAttributes returns an array consisting of all the attributes present that are of the specified type.

Add a note hereNote that all attributes are retrieved as plain Attribute references. If you want to call any of the methods or properties you defined for your custom attributes, you need to cast these references explicitly to the relevant custom attribute classes. You can obtain details about custom attributes that are attached to a given data type by calling another overload of Assembly.GetCustomAttributes, this time passing a Type reference that describes the type for which you want to retrieve any attached attributes. To obtain attributes that are attached to methods, constructors, fields, and so on, however, you need to call a GetCustomAttributes method that is a member of one of the classes MethodInfo, ConstructorInfo, FieldInfo, and so on.

Add a note hereIf you expect only a single attribute of a given type, you can call the GetCustomAttribute method instead, which returns a single Attribute object. You will use GetCustomAttribute in the WhatsNewAttributes example to find out whether the SupportsWhatsNew attribute is present in the assembly. To do this, you call GetCustomAttribute, passing in a reference to the WhatsNewAttributes assembly, and the type of the SupportsWhatsNewAttribute attribute. If this attribute is present, you get an Attribute instance. If no instances of it are defined in the assembly, you get null. If two or more instances are found, GetCustomAttribute throws a System.Reflection.AmbiguousMatchException. This is what that call would look like:


   Attribute supportsAttribute =
             Attribute.GetCustomAttributes(assembly1,
             typeof(SupportsWhatsNewAttribute));

Add a note hereCompleting the WhatsNewAttributes Example

Add a note hereYou now have enough information to complete the WhatsNewAttributes example by writing the source code for the final assembly in the sample, the LookUpWhatsNew assembly. This part of the application is a console application. However, it needs to reference the other assemblies of WhatsNewAttributes and VectorClass. Although this is going to be a command-line application, you will follow the previous TypeView example in that you actually display the results in a message box because there is a lot of text output—too much to show in a console window screenshot.

Add a note hereThe file is called LookUpWhatsNew.cs, and the command to compile it is as follows:


   csc /reference:WhatsNewAttributes.dll /reference:VectorClass.dll LookUpWhatsNew.cs

Add a note hereIn the source code of this file, you first indicate the namespaces you want to infer. System.Text is there because you need to use a StringBuilder object again:


   using System;
   using System.Reflection;
   using System.Windows.Forms;
   using System.Text;
   using WhatsNewAttributes;

   namespace LookUpWhatsNew
   {

Add a note hereThe class that contains the main program entry point as well as the other methods is WhatsNewChecker. All the methods you define are in this class, which also has two static fields — outputText, which contains the text as you build it in preparation for writing it to the message box, and backDateTo, which stores the date you have selected. All modifications made since this date will be displayed. Normally, you would display a dialog inviting the user to pick this date, but we don't want to get sidetracked into that kind of code. For this reason, backDateTo is hard-coded to a value of 1 Feb 2010. You can easily change this date when you download the code:


   internal class WhatsNewChecker
   {
      private static readonly StringBuilder outputText = new StringBuilder(1000);
      private static DateTime backDateTo = new DateTime(2010, 2, 1);

      static void Main()
      {
         Assembly theAssembly = Assembly.Load("VectorClass");
         Attribute supportsAttribute =
            Attribute.GetCustomAttribute(
               theAssembly, typeof(SupportsWhatsNewAttribute));
         string name = theAssembly.FullName;

         AddToMessage("Assembly: " + name);

         if (supportsAttribute == null)
         {
            AddToMessage(
                "This assembly does not support WhatsNew attributes");
            return;
         }
         else
         {
            AddToMessage("Defined Types:");
         }

         Type[] types = theAssembly.GetTypes();

         foreach(Type definedType in types)
            DisplayTypeInfo(definedType);

         MessageBox.Show(outputText.ToString(),
            "What\'s New since " + backDateTo.ToLongDateString());
         Console.ReadLine();
      }

Add a note hereThe Main method first loads the VectorClass assembly, and then verifies that it is marked with the SupportsWhatsNew attribute. You know VectorClass has the SupportsWhatsNew attribute applied to it because you have only recently compiled it, but this is a check that would be worth making if users were given a choice of which assembly they wanted to check.

Add a note hereAssuming that all is well, you use the Assembly.GetTypes method to get an array of all the types defined in this assembly, and then loop through them. For each one, you call a method, DisplayTypeInfo, which adds the relevant text, including details regarding any instances of LastModifiedAttribute, to the outputText field. Finally, you show the message box with the complete text. The DisplayTypeInfo method looks like this:


   private static void DisplayTypeInfo(Type type)
   {
      // make sure we only pick out classes
      if (!(type.IsClass))
      {
         return;
      }

      AddToMessage("\nclass " + type.Name);

      Attribute [] attribs = Attribute.GetCustomAttributes(type);

      if (attribs.Length == 0)
      {
         AddToMessage("No changes to this class\n");
      }
      else
      {
         foreach (Attribute attrib in attribs)
         {
            WriteAttributeInfo(attrib);
         }
      }

      MethodInfo [] methods = type.GetMethods();
      AddToMessage("CHANGES TO METHODS OF THIS CLASS:");

      foreach (MethodInfo nextMethod in methods)
      {
         object [] attribs2 =
            nextMethod.GetCustomAttributes(
               typeof(LastModifiedAttribute), false);

         if (attribs2 != null)
         {
            AddToMessage(
               nextMethod.ReturnType + " " + nextMethod.Name + "()");
            foreach (Attribute nextAttrib in attribs2)
            {
               WriteAttributeInfo(nextAttrib);
            }
         }
      }
   }

Add a note hereNotice that the first thing you do in this method is check whether the Type reference you have been passed actually represents a class. Because, to keep things simple, you have specified that the LastModified attribute can be applied only to classes or member methods, you would be wasting time by doing any processing if the item is not a class (it could be a class, delegate, or enum).

Add a note hereNext, you use the Attribute.GetCustomAttributes method to determine whether this class has any LastModifiedAttribute instances attached to it. If so, you add their details to the output text, using a helper method, WriteAttributeInfo.

Add a note hereFinally, you use the Type.GetMethods method to iterate through all the member methods of this data type, and then do the same with each method as you did for the class — check whether it has any LastModifiedAttribute instances attached to it; if so, you display them using WriteAttributeInfo.

Add a note hereThe next bit of code shows the WriteAttributeInfo method, which is responsible for determining what text to display for a given LastModifiedAttribute instance. Note that this method is passed an Attribute reference, so it needs to cast this to a LastModifiedAttribute reference first. After it has done that, it uses the properties that you originally defined for this attribute to retrieve its parameters. It confirms that the date of the attribute is sufficiently recent before actually adding it to the text for display:


   private static void WriteAttributeInfo(Attribute attrib)
   {

      LastModifiedAttribute lastModifiedAttrib =
         attrib as LastModifiedAttribute;

      if (lastModifiedAttrib == null)
      {
         return;
      }
      // check that date is in range
      DateTime modifiedDate = lastModifiedAttrib.DateModified;

      if (modifiedDate < backDateTo)
      {
         return;
      }

      AddToMessage(" MODIFIED: " +
         modifiedDate.ToLongDateString() + ":");
      AddToMessage(" " + lastModifiedAttrib.Changes);

      if (lastModifiedAttrib.Issues != null)
      {
         AddToMessage(" Outstanding issues:" +
            lastModifiedAttrib.Issues);
      }
   }

Add a note hereFinally, here is the helper AddToMessage method:


      static void AddToMessage(string message)
      {
         outputText.Append("\n" + message);
      }
    }
  }

Add a note hereRunning this code produces the results shown in Figure 15-2.

Image from book
Add a note hereFigure 15-2

Add a note hereNote that when you list the types defined in the VectorClass assembly, you actually pick up two classes: Vector and the embedded VectorEnumerator class. In addition, note that because the backDateTo date of 1 Feb is hard-coded in this example, you actually pick up the attributes that are dated 14 Feb (when you added the collection support) but not those dated 10 Feb (when you added the IFormattable interface).

转载于:https://www.cnblogs.com/hellohongfu/p/4252819.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值