Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / Runtime / InteropServices / TCEAdapterGen / TCEAdapterGenerator.cs / 1 / TCEAdapterGenerator.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System.Runtime.InteropServices.TCEAdapterGen {
using System.Runtime.InteropServices;
using System;
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using System.Threading;
internal class TCEAdapterGenerator
{
public void Process(ModuleBuilder ModBldr, ArrayList EventItfList)
{
// Store the input/output module.
m_Module = ModBldr;
// Generate the TCE adapters for all the event sources.
int NumEvItfs = EventItfList.Count;
for ( int cEventItfs = 0; cEventItfs < NumEvItfs; cEventItfs++ )
{
// Retrieve the event interface info.
EventItfInfo CurrEventItf = (EventItfInfo)EventItfList[cEventItfs];
// Retrieve the information from the event interface info.
Type EventItfType = CurrEventItf.GetEventItfType();
Type SrcItfType = CurrEventItf.GetSrcItfType();
String EventProviderName = CurrEventItf.GetEventProviderName();
// Generate the sink interface helper.
Type SinkHelperType = new EventSinkHelperWriter( m_Module, SrcItfType, EventItfType ).Perform();
// Generate the event provider.
new EventProviderWriter( m_Module, EventProviderName, EventItfType, SrcItfType, SinkHelperType ).Perform();
}
}
internal static void SetClassInterfaceTypeToNone(TypeBuilder tb)
{
// Create the ClassInterface(ClassInterfaceType.None) CA builder if we haven't created it yet.
if (s_NoClassItfCABuilder == null)
{
Type []aConsParams = new Type[1];
aConsParams[0] = typeof(ClassInterfaceType);
ConstructorInfo Cons = typeof(ClassInterfaceAttribute).GetConstructor(aConsParams);
Object[] aArgs = new Object[1];
aArgs[0] = ClassInterfaceType.None;
s_NoClassItfCABuilder = new CustomAttributeBuilder(Cons, aArgs);
}
// Set the class interface type to none.
tb.SetCustomAttribute(s_NoClassItfCABuilder);
}
internal static TypeBuilder DefineUniqueType(String strInitFullName, TypeAttributes attrs, Type BaseType, Type[] aInterfaceTypes, ModuleBuilder mb)
{
String strFullName = strInitFullName;
int PostFix = 2;
// Find the first unique name for the type.
for (; mb.GetType(strFullName) != null; strFullName = strInitFullName + "_" + PostFix, PostFix++);
// Define a type with the determined unique name.
return mb.DefineType(strFullName, attrs, BaseType, aInterfaceTypes);
}
internal static void SetHiddenAttribute(TypeBuilder tb)
{
if (s_HiddenCABuilder == null)
{
// Hide the type from Object Browsers
Type []aConsParams = new Type[1];
aConsParams[0] = typeof(TypeLibTypeFlags);
ConstructorInfo Cons = typeof(TypeLibTypeAttribute).GetConstructor(aConsParams);
Object []aArgs = new Object[1];
aArgs[0] = TypeLibTypeFlags.FHidden;
s_HiddenCABuilder = new CustomAttributeBuilder(Cons, aArgs);
}
tb.SetCustomAttribute(s_HiddenCABuilder);
}
internal static MethodInfo[] GetNonPropertyMethods(Type type)
{
MethodInfo[] aMethods = type.GetMethods();
ArrayList methods = new ArrayList(aMethods);
PropertyInfo[] props = type.GetProperties();
foreach(PropertyInfo prop in props)
{
MethodInfo[] accessors = prop.GetAccessors();
foreach (MethodInfo accessor in accessors)
{
for (int i=0; i < methods.Count; i++)
{
if ((MethodInfo)methods[i] == accessor)
methods.RemoveAt(i);
}
}
}
MethodInfo[] retMethods = new MethodInfo[methods.Count];
methods.CopyTo(retMethods);
return retMethods;
}
internal static MethodInfo[] GetPropertyMethods(Type type)
{
MethodInfo[] aMethods = type.GetMethods();
ArrayList methods = new ArrayList();
PropertyInfo[] props = type.GetProperties();
foreach(PropertyInfo prop in props)
{
MethodInfo[] accessors = prop.GetAccessors();
foreach (MethodInfo accessor in accessors)
{
methods.Add(accessor);
}
}
MethodInfo[] retMethods = new MethodInfo[methods.Count];
methods.CopyTo(retMethods);
return retMethods;
}
private ModuleBuilder m_Module = null;
private Hashtable m_SrcItfToSrcItfInfoMap = new Hashtable();
private static CustomAttributeBuilder s_NoClassItfCABuilder = null;
private static CustomAttributeBuilder s_HiddenCABuilder = null;
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System.Runtime.InteropServices.TCEAdapterGen {
using System.Runtime.InteropServices;
using System;
using System.Reflection;
using System.Reflection.Emit;
using System.Collections;
using System.Threading;
internal class TCEAdapterGenerator
{
public void Process(ModuleBuilder ModBldr, ArrayList EventItfList)
{
// Store the input/output module.
m_Module = ModBldr;
// Generate the TCE adapters for all the event sources.
int NumEvItfs = EventItfList.Count;
for ( int cEventItfs = 0; cEventItfs < NumEvItfs; cEventItfs++ )
{
// Retrieve the event interface info.
EventItfInfo CurrEventItf = (EventItfInfo)EventItfList[cEventItfs];
// Retrieve the information from the event interface info.
Type EventItfType = CurrEventItf.GetEventItfType();
Type SrcItfType = CurrEventItf.GetSrcItfType();
String EventProviderName = CurrEventItf.GetEventProviderName();
// Generate the sink interface helper.
Type SinkHelperType = new EventSinkHelperWriter( m_Module, SrcItfType, EventItfType ).Perform();
// Generate the event provider.
new EventProviderWriter( m_Module, EventProviderName, EventItfType, SrcItfType, SinkHelperType ).Perform();
}
}
internal static void SetClassInterfaceTypeToNone(TypeBuilder tb)
{
// Create the ClassInterface(ClassInterfaceType.None) CA builder if we haven't created it yet.
if (s_NoClassItfCABuilder == null)
{
Type []aConsParams = new Type[1];
aConsParams[0] = typeof(ClassInterfaceType);
ConstructorInfo Cons = typeof(ClassInterfaceAttribute).GetConstructor(aConsParams);
Object[] aArgs = new Object[1];
aArgs[0] = ClassInterfaceType.None;
s_NoClassItfCABuilder = new CustomAttributeBuilder(Cons, aArgs);
}
// Set the class interface type to none.
tb.SetCustomAttribute(s_NoClassItfCABuilder);
}
internal static TypeBuilder DefineUniqueType(String strInitFullName, TypeAttributes attrs, Type BaseType, Type[] aInterfaceTypes, ModuleBuilder mb)
{
String strFullName = strInitFullName;
int PostFix = 2;
// Find the first unique name for the type.
for (; mb.GetType(strFullName) != null; strFullName = strInitFullName + "_" + PostFix, PostFix++);
// Define a type with the determined unique name.
return mb.DefineType(strFullName, attrs, BaseType, aInterfaceTypes);
}
internal static void SetHiddenAttribute(TypeBuilder tb)
{
if (s_HiddenCABuilder == null)
{
// Hide the type from Object Browsers
Type []aConsParams = new Type[1];
aConsParams[0] = typeof(TypeLibTypeFlags);
ConstructorInfo Cons = typeof(TypeLibTypeAttribute).GetConstructor(aConsParams);
Object []aArgs = new Object[1];
aArgs[0] = TypeLibTypeFlags.FHidden;
s_HiddenCABuilder = new CustomAttributeBuilder(Cons, aArgs);
}
tb.SetCustomAttribute(s_HiddenCABuilder);
}
internal static MethodInfo[] GetNonPropertyMethods(Type type)
{
MethodInfo[] aMethods = type.GetMethods();
ArrayList methods = new ArrayList(aMethods);
PropertyInfo[] props = type.GetProperties();
foreach(PropertyInfo prop in props)
{
MethodInfo[] accessors = prop.GetAccessors();
foreach (MethodInfo accessor in accessors)
{
for (int i=0; i < methods.Count; i++)
{
if ((MethodInfo)methods[i] == accessor)
methods.RemoveAt(i);
}
}
}
MethodInfo[] retMethods = new MethodInfo[methods.Count];
methods.CopyTo(retMethods);
return retMethods;
}
internal static MethodInfo[] GetPropertyMethods(Type type)
{
MethodInfo[] aMethods = type.GetMethods();
ArrayList methods = new ArrayList();
PropertyInfo[] props = type.GetProperties();
foreach(PropertyInfo prop in props)
{
MethodInfo[] accessors = prop.GetAccessors();
foreach (MethodInfo accessor in accessors)
{
methods.Add(accessor);
}
}
MethodInfo[] retMethods = new MethodInfo[methods.Count];
methods.CopyTo(retMethods);
return retMethods;
}
private ModuleBuilder m_Module = null;
private Hashtable m_SrcItfToSrcItfInfoMap = new Hashtable();
private static CustomAttributeBuilder s_NoClassItfCABuilder = null;
private static CustomAttributeBuilder s_HiddenCABuilder = null;
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ElementAction.cs
- MiniConstructorInfo.cs
- RecipientInfo.cs
- Listbox.cs
- DataServiceProviderMethods.cs
- SpotLight.cs
- sortedlist.cs
- DataObjectCopyingEventArgs.cs
- SqlNamer.cs
- Interlocked.cs
- TerminateSequence.cs
- RoutedEventHandlerInfo.cs
- TextShapeableCharacters.cs
- PersonalizationState.cs
- DataExpression.cs
- PackageRelationshipCollection.cs
- ProcessProtocolHandler.cs
- XPathNavigator.cs
- SqlDataSourceSelectingEventArgs.cs
- IssuedTokenParametersEndpointAddressElement.cs
- UTF7Encoding.cs
- Graph.cs
- RemotingConfigParser.cs
- CustomErrorCollection.cs
- BinaryFormatter.cs
- GeometryCollection.cs
- followingquery.cs
- SqlRetyper.cs
- _ListenerResponseStream.cs
- CompleteWizardStep.cs
- ComNativeDescriptor.cs
- UrlMappingsSection.cs
- CurrentChangingEventManager.cs
- SafeCryptoHandles.cs
- PropertyIDSet.cs
- EmptyElement.cs
- StaticExtension.cs
- DeferredElementTreeState.cs
- TableCell.cs
- JsonReader.cs
- WorkflowServiceNamespace.cs
- SetUserLanguageRequest.cs
- unsafenativemethodstextservices.cs
- BamlLocalizableResource.cs
- DesignerPainter.cs
- DBBindings.cs
- AlternateViewCollection.cs
- MailMessage.cs
- ArgumentDesigner.xaml.cs
- BamlTreeMap.cs
- Timeline.cs
- DispatcherHookEventArgs.cs
- DesignerListAdapter.cs
- DbSourceParameterCollection.cs
- ObjectList.cs
- TcpProcessProtocolHandler.cs
- ButtonBase.cs
- FloatAverageAggregationOperator.cs
- ColumnWidthChangedEvent.cs
- TemplatingOptionsDialog.cs
- BamlBinaryReader.cs
- DeviceFilterEditorDialog.cs
- BufferedStream.cs
- PointValueSerializer.cs
- ToolStripProgressBar.cs
- ButtonAutomationPeer.cs
- PageThemeParser.cs
- ExportOptions.cs
- WebColorConverter.cs
- XmlAtomicValue.cs
- Repeater.cs
- Table.cs
- FontStyles.cs
- DataListItemCollection.cs
- OleStrCAMarshaler.cs
- StringReader.cs
- PublishLicense.cs
- SHA512CryptoServiceProvider.cs
- DataSourceXmlClassAttribute.cs
- UnsafeNativeMethods.cs
- String.cs
- CustomBindingElementCollection.cs
- MetafileHeaderWmf.cs
- DataSourceXmlClassAttribute.cs
- DbProviderServices.cs
- CatalogPart.cs
- DataGridViewColumnEventArgs.cs
- DesignerResources.cs
- LongValidatorAttribute.cs
- Matrix3DConverter.cs
- HtmlHistory.cs
- EntityDataSourceDesigner.cs
- SspiWrapper.cs
- ExceptionHandlers.cs
- PageThemeParser.cs
- ProxySimple.cs
- ByteConverter.cs
- DataTableClearEvent.cs
- assertwrapper.cs
- PrivacyNoticeElement.cs