Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / Structures / Cell.cs / 2 / Cell.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Collections.Generic; using System.Data.Mapping.ViewGeneration.Validation; using System.Text; using System.Diagnostics; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.Structures { ////// This class contains a pair of cell queries which is essentially a /// constraint that they are equal. A cell is initialized with a C or an /// S Query which it exposes as properties but it also has the notion of /// "Left" and "Right" queries -- left refers to the side for which a /// view is being generated /// For example, to /// specify a mapping for CPerson to an SPerson table, we have /// /// [(p type Person) in P : SPerson] /// (p.pid, pid) /// (p.name, name) /// /// This really denotes the equality of two queries: /// (C) SELECT (p type Person) AS D1, p.pid, p.name FROM p in P WHERE D1 /// (S) SELECT True AS D1, pid, name FROM SPerson WHERE D1 /// /// For more details, see the design doc /// internal class Cell : InternalBase { #region Constructor // effects: Creates a cell with the C and S queries private Cell(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber ) { Debug.Assert(label != null, "Cell lacks label"); m_cQuery = cQuery; m_sQuery = sQuery; m_label = label; m_cellNumber = cellNumber; Debug.Assert(m_sQuery.NumProjectedSlots == m_cQuery.NumProjectedSlots, "Cell queries disagree on the number of projected fields"); } ////// Copy Constructor /// internal Cell(Cell source) { m_cQuery = new CellQuery(source.m_cQuery); m_sQuery = new CellQuery(source.m_sQuery); m_label = new CellLabel(source.m_label); m_cellNumber = source.m_cellNumber; } #endregion #region Fields private CellQuery m_cQuery; private CellQuery m_sQuery; private int m_cellNumber; // cell number that identifies this cell private CellLabel m_label; // The File and Path Info for the CSMappingFragment // that the Cell was constructed over. // The view cell relation for all projected slots in this private ViewCellRelation m_viewCellRelation; #endregion #region Properties // effects: Returns the C query internal CellQuery CQuery { get { return m_cQuery; } } // effects: Returns the S query internal CellQuery SQuery { get { return m_sQuery; } } // effects: Returns the CSMappingFragment (if any) // that the Cell was constructed over. internal CellLabel CellLabel { get { return m_label; } } // effects: Returns the cell label (if any) internal int CellNumber { get { return m_cellNumber; } } internal string CellNumberAsString { get { return StringUtil.FormatInvariant("V{0}", CellNumber); } } #endregion #region Methods // effects: Determines all the identifiers used in this and adds them to identifiers internal void GetIdentifiers(CqlIdentifiers identifiers) { m_cQuery.GetIdentifiers(identifiers); m_sQuery.GetIdentifiers(identifiers); } // effects: Given a cell, determines the paths to which the paths in // columns map to in the C-space and returns them. If some columns // are not projected in the cell, or if the corresponding properties // are not mapped into C-space, returns null internal SetGetCSlotsForTableColumns(IEnumerable columns) { List fieldNums = SQuery.GetProjectedPositions(columns); if (fieldNums == null) { return null; } // The fields are mapped -- see if they are mapped on the // cSide and they correspond to the primary key of the // entity set Set cSideMembers = new Set (); foreach (int fieldNum in fieldNums) { ProjectedSlot projectedSlot = CQuery.ProjectedSlotAt(fieldNum); JoinTreeSlot slot = projectedSlot as JoinTreeSlot; if (slot != null) { // We can call LastMember since columns do not map to // extents or memberEnds. Can cast to EdmProperty since it // cannot be an association end cSideMembers.Add((EdmProperty)slot.MemberPath.LastMember); } else { return null; } } return cSideMembers; } // effects: Returns the C query for ViewTarget.QueryView and S query for ViewTarget.UpdateView internal CellQuery GetLeftQuery(ViewTarget side) { return side == ViewTarget.QueryView ? m_cQuery : m_sQuery; } // effects: Returns the S query for ViewTarget.QueryView and C query for ViewTarget.UpdateView internal CellQuery GetRightQuery(ViewTarget side) { return side == ViewTarget.QueryView ? m_sQuery : m_cQuery; } // effects: Returns the relation that contains all the slots being // projected in this cell internal ViewCellRelation CreateViewCellRelation(int cellNumber) { if (m_viewCellRelation != null) { return m_viewCellRelation; } GenerateCellRelations(cellNumber); return m_viewCellRelation; } private void GenerateCellRelations(int cellNumber) { // Generate the view cell relation List projectedSlots = new List (); // construct a ViewCellSlot for each slot Debug.Assert(CQuery.NumProjectedSlots == SQuery.NumProjectedSlots, "Cell queries in cell have a different number of slots"); for (int i = 0; i < CQuery.NumProjectedSlots; i++) { ProjectedSlot cSlot = CQuery.ProjectedSlotAt(i); ProjectedSlot sSlot = SQuery.ProjectedSlotAt(i); Debug.Assert(cSlot != null, "Has cell query been normalized?"); Debug.Assert(sSlot != null, "Has cell query been normalized?"); // These slots better be JoinTreeSlots. We do not have constants etc at this point // The code below should crash if they are not JoinTreeSlot cJoinSlot = (JoinTreeSlot)cSlot; JoinTreeSlot sJoinSlot = (JoinTreeSlot)sSlot; ViewCellSlot slot = new ViewCellSlot(i, cJoinSlot, sJoinSlot); projectedSlots.Add(slot); } m_viewCellRelation = new ViewCellRelation(this, projectedSlots, cellNumber); } internal override void ToCompactString(StringBuilder builder) { CQuery.ToCompactString(builder); builder.Append(" = "); SQuery.ToCompactString(builder); } internal override void ToFullString(StringBuilder builder) { CQuery.ToFullString(builder); builder.Append(" = "); SQuery.ToFullString(builder); } public override string ToString() { return ToFullString(); } // effects: Prints the cells in some human-readable form internal static void CellsToBuilder(StringBuilder builder, IEnumerable cells) { // Print mapping builder.AppendLine(); builder.AppendLine("========================================================================="); foreach (Cell cell in cells) { builder.AppendLine(); StringUtil.FormatStringBuilder(builder, "Mapping Cell V{0}:", cell.CellNumber); builder.AppendLine(); builder.Append("C: "); cell.CQuery.ToFullString(builder); builder.AppendLine(); builder.AppendLine(); builder.Append("S: "); cell.SQuery.ToFullString(builder); builder.AppendLine(); } } // effects: Validates the incoming cells -- throws an exception if // the data structure is corrupted internal override bool CheckRepInvariant() { // Just ask one of the queries to validate itself w.r.t. the other m_cQuery.CheckRepInvariant(m_sQuery); return true; } #endregion #region Factory methods internal static Cell CreateCS(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber) { return new Cell(cQuery, sQuery, label, cellNumber); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // | // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Data.Common.Utils; using System.Collections.Generic; using System.Data.Mapping.ViewGeneration.Validation; using System.Text; using System.Diagnostics; using System.Data.Metadata.Edm; namespace System.Data.Mapping.ViewGeneration.Structures { ////// This class contains a pair of cell queries which is essentially a /// constraint that they are equal. A cell is initialized with a C or an /// S Query which it exposes as properties but it also has the notion of /// "Left" and "Right" queries -- left refers to the side for which a /// view is being generated /// For example, to /// specify a mapping for CPerson to an SPerson table, we have /// /// [(p type Person) in P : SPerson] /// (p.pid, pid) /// (p.name, name) /// /// This really denotes the equality of two queries: /// (C) SELECT (p type Person) AS D1, p.pid, p.name FROM p in P WHERE D1 /// (S) SELECT True AS D1, pid, name FROM SPerson WHERE D1 /// /// For more details, see the design doc /// internal class Cell : InternalBase { #region Constructor // effects: Creates a cell with the C and S queries private Cell(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber ) { Debug.Assert(label != null, "Cell lacks label"); m_cQuery = cQuery; m_sQuery = sQuery; m_label = label; m_cellNumber = cellNumber; Debug.Assert(m_sQuery.NumProjectedSlots == m_cQuery.NumProjectedSlots, "Cell queries disagree on the number of projected fields"); } ////// Copy Constructor /// internal Cell(Cell source) { m_cQuery = new CellQuery(source.m_cQuery); m_sQuery = new CellQuery(source.m_sQuery); m_label = new CellLabel(source.m_label); m_cellNumber = source.m_cellNumber; } #endregion #region Fields private CellQuery m_cQuery; private CellQuery m_sQuery; private int m_cellNumber; // cell number that identifies this cell private CellLabel m_label; // The File and Path Info for the CSMappingFragment // that the Cell was constructed over. // The view cell relation for all projected slots in this private ViewCellRelation m_viewCellRelation; #endregion #region Properties // effects: Returns the C query internal CellQuery CQuery { get { return m_cQuery; } } // effects: Returns the S query internal CellQuery SQuery { get { return m_sQuery; } } // effects: Returns the CSMappingFragment (if any) // that the Cell was constructed over. internal CellLabel CellLabel { get { return m_label; } } // effects: Returns the cell label (if any) internal int CellNumber { get { return m_cellNumber; } } internal string CellNumberAsString { get { return StringUtil.FormatInvariant("V{0}", CellNumber); } } #endregion #region Methods // effects: Determines all the identifiers used in this and adds them to identifiers internal void GetIdentifiers(CqlIdentifiers identifiers) { m_cQuery.GetIdentifiers(identifiers); m_sQuery.GetIdentifiers(identifiers); } // effects: Given a cell, determines the paths to which the paths in // columns map to in the C-space and returns them. If some columns // are not projected in the cell, or if the corresponding properties // are not mapped into C-space, returns null internal SetGetCSlotsForTableColumns(IEnumerable columns) { List fieldNums = SQuery.GetProjectedPositions(columns); if (fieldNums == null) { return null; } // The fields are mapped -- see if they are mapped on the // cSide and they correspond to the primary key of the // entity set Set cSideMembers = new Set (); foreach (int fieldNum in fieldNums) { ProjectedSlot projectedSlot = CQuery.ProjectedSlotAt(fieldNum); JoinTreeSlot slot = projectedSlot as JoinTreeSlot; if (slot != null) { // We can call LastMember since columns do not map to // extents or memberEnds. Can cast to EdmProperty since it // cannot be an association end cSideMembers.Add((EdmProperty)slot.MemberPath.LastMember); } else { return null; } } return cSideMembers; } // effects: Returns the C query for ViewTarget.QueryView and S query for ViewTarget.UpdateView internal CellQuery GetLeftQuery(ViewTarget side) { return side == ViewTarget.QueryView ? m_cQuery : m_sQuery; } // effects: Returns the S query for ViewTarget.QueryView and C query for ViewTarget.UpdateView internal CellQuery GetRightQuery(ViewTarget side) { return side == ViewTarget.QueryView ? m_sQuery : m_cQuery; } // effects: Returns the relation that contains all the slots being // projected in this cell internal ViewCellRelation CreateViewCellRelation(int cellNumber) { if (m_viewCellRelation != null) { return m_viewCellRelation; } GenerateCellRelations(cellNumber); return m_viewCellRelation; } private void GenerateCellRelations(int cellNumber) { // Generate the view cell relation List projectedSlots = new List (); // construct a ViewCellSlot for each slot Debug.Assert(CQuery.NumProjectedSlots == SQuery.NumProjectedSlots, "Cell queries in cell have a different number of slots"); for (int i = 0; i < CQuery.NumProjectedSlots; i++) { ProjectedSlot cSlot = CQuery.ProjectedSlotAt(i); ProjectedSlot sSlot = SQuery.ProjectedSlotAt(i); Debug.Assert(cSlot != null, "Has cell query been normalized?"); Debug.Assert(sSlot != null, "Has cell query been normalized?"); // These slots better be JoinTreeSlots. We do not have constants etc at this point // The code below should crash if they are not JoinTreeSlot cJoinSlot = (JoinTreeSlot)cSlot; JoinTreeSlot sJoinSlot = (JoinTreeSlot)sSlot; ViewCellSlot slot = new ViewCellSlot(i, cJoinSlot, sJoinSlot); projectedSlots.Add(slot); } m_viewCellRelation = new ViewCellRelation(this, projectedSlots, cellNumber); } internal override void ToCompactString(StringBuilder builder) { CQuery.ToCompactString(builder); builder.Append(" = "); SQuery.ToCompactString(builder); } internal override void ToFullString(StringBuilder builder) { CQuery.ToFullString(builder); builder.Append(" = "); SQuery.ToFullString(builder); } public override string ToString() { return ToFullString(); } // effects: Prints the cells in some human-readable form internal static void CellsToBuilder(StringBuilder builder, IEnumerable cells) { // Print mapping builder.AppendLine(); builder.AppendLine("========================================================================="); foreach (Cell cell in cells) { builder.AppendLine(); StringUtil.FormatStringBuilder(builder, "Mapping Cell V{0}:", cell.CellNumber); builder.AppendLine(); builder.Append("C: "); cell.CQuery.ToFullString(builder); builder.AppendLine(); builder.AppendLine(); builder.Append("S: "); cell.SQuery.ToFullString(builder); builder.AppendLine(); } } // effects: Validates the incoming cells -- throws an exception if // the data structure is corrupted internal override bool CheckRepInvariant() { // Just ask one of the queries to validate itself w.r.t. the other m_cQuery.CheckRepInvariant(m_sQuery); return true; } #endregion #region Factory methods internal static Cell CreateCS(CellQuery cQuery, CellQuery sQuery, CellLabel label, int cellNumber) { return new Cell(cQuery, sQuery, label, cellNumber); } #endregion } } // 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
- ArrayHelper.cs
- CodeStatementCollection.cs
- AlignmentXValidation.cs
- XmlChildNodes.cs
- PopupControlService.cs
- HttpApplicationFactory.cs
- CompressEmulationStream.cs
- RecordBuilder.cs
- CodeTypeDelegate.cs
- SQLBytes.cs
- WindowsListViewGroup.cs
- GenericEnumerator.cs
- ContentHostHelper.cs
- CodeObject.cs
- ShaperBuffers.cs
- RichTextBoxContextMenu.cs
- EventDescriptorCollection.cs
- sqlstateclientmanager.cs
- AppendHelper.cs
- ImageList.cs
- CopyAction.cs
- TcpAppDomainProtocolHandler.cs
- CompilerError.cs
- SpotLight.cs
- UrlMappingCollection.cs
- SocketPermission.cs
- WebPartUserCapability.cs
- RuntimeEnvironment.cs
- Currency.cs
- PropertyValueUIItem.cs
- DataError.cs
- GridViewUpdateEventArgs.cs
- StylusPointPropertyInfoDefaults.cs
- EntityConnectionStringBuilderItem.cs
- templategroup.cs
- DataViewListener.cs
- ChildrenQuery.cs
- SelectionBorderGlyph.cs
- _BufferOffsetSize.cs
- _BaseOverlappedAsyncResult.cs
- CompilationUtil.cs
- WebPartConnectionsDisconnectVerb.cs
- ConfigErrorGlyph.cs
- FragmentQueryKB.cs
- LinqExpressionNormalizer.cs
- PrimaryKeyTypeConverter.cs
- DataAdapter.cs
- VectorValueSerializer.cs
- baseshape.cs
- GrammarBuilder.cs
- DelegatingTypeDescriptionProvider.cs
- FormsAuthentication.cs
- HotSpotCollection.cs
- WinEventHandler.cs
- __FastResourceComparer.cs
- ProxyWebPartManager.cs
- DataTemplateKey.cs
- MexNamedPipeBindingElement.cs
- HttpResponseBase.cs
- SchemaSetCompiler.cs
- webeventbuffer.cs
- DragDeltaEventArgs.cs
- ProgressBarBrushConverter.cs
- ConsoleCancelEventArgs.cs
- ClientTargetCollection.cs
- ConstructorBuilder.cs
- SecurityContextSecurityTokenResolver.cs
- ResourceManagerWrapper.cs
- ObjectDataSourceMethodEventArgs.cs
- WebPartHelpVerb.cs
- Int64.cs
- DummyDataSource.cs
- GridViewColumnHeaderAutomationPeer.cs
- basecomparevalidator.cs
- MatrixTransform.cs
- CodeRemoveEventStatement.cs
- RegularExpressionValidator.cs
- CollectionViewGroupInternal.cs
- DbConnectionOptions.cs
- LicenseProviderAttribute.cs
- ServerTooBusyException.cs
- RegularExpressionValidator.cs
- UserValidatedEventArgs.cs
- ControllableStoryboardAction.cs
- FixUp.cs
- WebPartConnectionsEventArgs.cs
- MsiStyleLogWriter.cs
- WinCategoryAttribute.cs
- StrokeFIndices.cs
- RegexEditorDialog.cs
- DesigntimeLicenseContextSerializer.cs
- ConnectionManagementElementCollection.cs
- Validator.cs
- TreeNodeBindingCollection.cs
- TreeViewEvent.cs
- ContentElementAutomationPeer.cs
- GeneralTransform3DCollection.cs
- EventSourceCreationData.cs
- DbProviderFactory.cs
- SmtpSpecifiedPickupDirectoryElement.cs