Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / System / data / design / TypedRowGenerator.cs / 3 / TypedRowGenerator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //----------------------------------------------------------------------------- namespace System.Data.Design { using System; using System.Data; using System.CodeDom; using System.Reflection; using System.CodeDom.Compiler; internal sealed class TypedRowGenerator { private TypedDataSourceCodeGenerator codeGenerator = null; private MethodInfo convertXmlToObject = null; internal TypedRowGenerator(TypedDataSourceCodeGenerator codeGenerator) { this.codeGenerator = codeGenerator; // this is an internal method in the DataColumn class that we need to access // convertXmlToObject = typeof(DataColumn).GetMethod("ConvertXmlToObject", BindingFlags.Instance | BindingFlags.NonPublic, null, CallingConventions.Any, new Type[] { typeof(string)}, null); } internal MethodInfo ConvertXmlToObject { get { return convertXmlToObject; } } internal void GenerateRows(CodeTypeDeclaration dataSourceClass) { foreach(DesignTable table in codeGenerator.TableHandler.Tables) { dataSourceClass.Members.Add(GenerateRow(table)); } } internal void GenerateTypedRowEventHandlers(CodeTypeDeclaration dataSourceClass) { if (this.codeGenerator.CodeProvider.Supports(GeneratorSupport.DeclareEvents) && this.codeGenerator.CodeProvider.Supports(GeneratorSupport.DeclareDelegates)) { foreach (DesignTable table in codeGenerator.TableHandler.Tables) { dataSourceClass.Members.Add(GenerateTypedRowEventHandler(table)); } } } internal void GenerateTypedRowEventArgs(CodeTypeDeclaration dataSourceClass) { if (this.codeGenerator.CodeProvider.Supports(GeneratorSupport.DeclareEvents) && this.codeGenerator.CodeProvider.Supports(GeneratorSupport.DeclareDelegates)) { foreach (DesignTable table in codeGenerator.TableHandler.Tables) { dataSourceClass.Members.Add(CreateTypedRowEventArg(table)); } } } // generates the typed row EventArg class for a specific table private CodeTypeDeclaration CreateTypedRowEventArg(DesignTable designTable) { if(designTable == null) { throw new InternalException("DesignTable should not be null."); } DataTable table = designTable.DataTable; string rowClassName = designTable.GeneratorRowClassName; string tableClassName = designTable.GeneratorTableClassName; string rowConcreteClassName = designTable.GeneratorRowClassName; CodeTypeDeclaration rowEventArgClass = CodeGenHelper.Class(designTable.GeneratorRowEvArgName, false, TypeAttributes.Public); rowEventArgClass.BaseTypes.Add(CodeGenHelper.GlobalType(typeof(EventArgs))); rowEventArgClass.Comments.Add(CodeGenHelper.Comment("Row event argument class", true)); //\\ privateeventRow; rowEventArgClass.Members.Add(CodeGenHelper.FieldDecl(CodeGenHelper.Type(rowConcreteClassName), "eventRow")); //\\ private DataRowAction eventAction; rowEventArgClass.Members.Add(CodeGenHelper.FieldDecl(CodeGenHelper.GlobalType(typeof(System.Data.DataRowAction)), "eventAction")); // add constructor rowEventArgClass.Members.Add(EventArgConstructor(rowConcreteClassName)); //\\ public COMPUTERRow { //\\ get { return this.eventRow; } //\\ } CodeMemberProperty rowProp = CodeGenHelper.PropertyDecl( CodeGenHelper.Type(rowConcreteClassName), "Row", MemberAttributes.Public | MemberAttributes.Final ); rowProp.GetStatements.Add(CodeGenHelper.Return(CodeGenHelper.Field(CodeGenHelper.This(), "eventRow"))); rowEventArgClass.Members.Add(rowProp); //\\ public DataRowAction Action { //\\ get { return this.eventAction; } //\\ } rowProp = CodeGenHelper.PropertyDecl( CodeGenHelper.GlobalType(typeof(System.Data.DataRowAction)), "Action", MemberAttributes.Public | MemberAttributes.Final ); rowProp.GetStatements.Add(CodeGenHelper.Return(CodeGenHelper.Field(CodeGenHelper.This(), "eventAction"))); rowEventArgClass.Members.Add(rowProp); return rowEventArgClass; } private CodeTypeDelegate GenerateTypedRowEventHandler(DesignTable table) { if(table == null) { throw new InternalException("DesignTable should not be null."); } string rowClassName = table.GeneratorRowClassName; //\\ public delegate void ChangeEventHandler(object sender, ChangeEvent e); CodeTypeDelegate delegateClass = new CodeTypeDelegate(table.GeneratorRowEvHandlerName); delegateClass.TypeAttributes |= TypeAttributes.Public; delegateClass.Parameters.Add(CodeGenHelper.ParameterDecl(CodeGenHelper.GlobalType(typeof(object)), "sender")); delegateClass.Parameters.Add( CodeGenHelper.ParameterDecl( CodeGenHelper.Type(table.GeneratorRowEvArgName), "e" ) ); return delegateClass; } private CodeTypeDeclaration GenerateRow(DesignTable table) { if(table == null) { throw new InternalException("DesignTable should not be null."); } string rowClassName = table.GeneratorRowClassName; string tableClassName = table.GeneratorTableClassName; string tableFieldName = table.GeneratorTableVarName; TypedColumnHandler columnHandler = codeGenerator.TableHandler.GetColumnHandler(table.Name); // create CodeTypeDeclaration, set class name and base type CodeTypeDeclaration rowClass = CodeGenHelper.Class(rowClassName, true, TypeAttributes.Public); rowClass.BaseTypes.Add(CodeGenHelper.GlobalType(typeof(System.Data.DataRow))); rowClass.Comments.Add(CodeGenHelper.Comment("Represents strongly named DataRow class.", true)); //\\ ; rowClass.Members.Add(CodeGenHelper.FieldDecl(CodeGenHelper.Type(tableClassName), tableFieldName)); // add constructor rowClass.Members.Add(RowConstructor(tableClassName, tableFieldName)); // add Column Properties columnHandler.AddRowColumnProperties(rowClass); // add GetChildRows/GetParentRows methods columnHandler.AddRowGetRelatedRowsMethods(rowClass); return rowClass; } private CodeConstructor RowConstructor(string tableClassName, string tableFieldName) { CodeConstructor constructor = CodeGenHelper.Constructor(MemberAttributes.Assembly | MemberAttributes.Final); constructor.Parameters.Add(CodeGenHelper.ParameterDecl(CodeGenHelper.GlobalType(typeof(System.Data.DataRowBuilder)), "rb")); constructor.BaseConstructorArgs.Add(CodeGenHelper.Argument("rb")); constructor.Statements.Add( CodeGenHelper.Assign( CodeGenHelper.Field(CodeGenHelper.This(), tableFieldName), CodeGenHelper.Cast( CodeGenHelper.Type(tableClassName), CodeGenHelper.Property(CodeGenHelper.This(), "Table") ) ) ); return constructor; } private CodeConstructor EventArgConstructor(string rowConcreteClassName) { //\\ public ChangeEvent(rowEventArgClassName row, DataRowAction action) { //\\ this.eventRow = row; //\\ this.eventAction = action; //\\ } CodeConstructor constructor = CodeGenHelper.Constructor(MemberAttributes.Public | MemberAttributes.Final); constructor.Parameters.Add(CodeGenHelper.ParameterDecl(CodeGenHelper.Type(rowConcreteClassName), "row" )); constructor.Parameters.Add(CodeGenHelper.ParameterDecl(CodeGenHelper.GlobalType(typeof(System.Data.DataRowAction)), "action")); constructor.Statements.Add( CodeGenHelper.Assign( CodeGenHelper.Field(CodeGenHelper.This(), "eventRow"), CodeGenHelper.Argument("row") ) ); constructor.Statements.Add( CodeGenHelper.Assign( CodeGenHelper.Field(CodeGenHelper.This(), "eventAction"), CodeGenHelper.Argument("action") ) ); return constructor; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MobileUserControlDesigner.cs
- RC2.cs
- ForeignKeyConstraint.cs
- SoapTypeAttribute.cs
- SafeCryptHandles.cs
- Util.cs
- WinEventHandler.cs
- ColorMap.cs
- CookielessHelper.cs
- EntitySqlQueryCacheKey.cs
- FillErrorEventArgs.cs
- Base64Stream.cs
- DefaultAsyncDataDispatcher.cs
- Vector3DConverter.cs
- Fx.cs
- LayoutUtils.cs
- Rfc4050KeyFormatter.cs
- MonthChangedEventArgs.cs
- Control.cs
- IIS7WorkerRequest.cs
- ExpandButtonVisibilityConverter.cs
- Registry.cs
- Memoizer.cs
- InternalsVisibleToAttribute.cs
- WebPartDescriptionCollection.cs
- MenuScrollingVisibilityConverter.cs
- TimeSpanConverter.cs
- X509IssuerSerialKeyIdentifierClause.cs
- RtfFormatStack.cs
- RuntimeHelpers.cs
- NonParentingControl.cs
- DesignTimeParseData.cs
- RuleInfoComparer.cs
- WebContext.cs
- ReadOnlyAttribute.cs
- EventEntry.cs
- LinqTreeNodeEvaluator.cs
- PermissionSetEnumerator.cs
- NameTable.cs
- MenuItemStyle.cs
- InheritablePropertyChangeInfo.cs
- StringUtil.cs
- LateBoundBitmapDecoder.cs
- UserControl.cs
- DrawingBrush.cs
- UserMapPath.cs
- FormViewInsertedEventArgs.cs
- PrintDialog.cs
- HScrollBar.cs
- InteropBitmapSource.cs
- WebPartUserCapability.cs
- Typography.cs
- Compress.cs
- PolyQuadraticBezierSegment.cs
- FormatConvertedBitmap.cs
- SkewTransform.cs
- TrackBarRenderer.cs
- NonSerializedAttribute.cs
- TextTreeTextNode.cs
- HttpFileCollection.cs
- UnitControl.cs
- ButtonColumn.cs
- ReceiveActivityValidator.cs
- ToolStripDropDownButton.cs
- RewritingPass.cs
- AuthorizationSection.cs
- DataGridViewImageColumn.cs
- WebBrowserHelper.cs
- Converter.cs
- ProviderSettingsCollection.cs
- ListBox.cs
- StandardBindingReliableSessionElement.cs
- Scalars.cs
- CustomDictionarySources.cs
- SHA256.cs
- TextElementEnumerator.cs
- NullEntityWrapper.cs
- ClientApiGenerator.cs
- IpcChannelHelper.cs
- RTLAwareMessageBox.cs
- DetailsViewPageEventArgs.cs
- CompiledQuery.cs
- ManagedIStream.cs
- ValidatorCollection.cs
- CellConstant.cs
- RectangleHotSpot.cs
- OutputScopeManager.cs
- OrderedEnumerableRowCollection.cs
- SafeViewOfFileHandle.cs
- FormViewRow.cs
- ListViewItemSelectionChangedEvent.cs
- ActivityTypeResolver.xaml.cs
- ScriptResourceAttribute.cs
- ShaperBuffers.cs
- BinaryExpressionHelper.cs
- PrivateFontCollection.cs
- SqlGenerator.cs
- InternalBase.cs
- ExtendedProtectionPolicyElement.cs
- MarshalDirectiveException.cs