Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Linq / Parallel / Enumerables / ParallelQuery.cs / 1305376 / ParallelQuery.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // ParallelQuery.cs // //[....] // // ParallelQuery is an abstract class that represents a PLINQ query. // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections; using System.Collections.Generic; using System.Linq.Parallel; using System.Diagnostics.Contracts; namespace System.Linq { ////// Represents a parallel sequence. /// public class ParallelQuery : IEnumerable { // Settings that have been specified on the query so far. private QuerySettings m_specifiedSettings; internal ParallelQuery(QuerySettings specifiedSettings) { m_specifiedSettings = specifiedSettings; } //------------------------------------------------------------------------------------ // Settings that have been specified on the query so far. Some settings may still // be unspecified and will be replaced either by operators further in the query, // or filled in with defaults at query opening time. // internal QuerySettings SpecifiedQuerySettings { get { return m_specifiedSettings; } } //----------------------------------------------------------------------------------- // Returns a parallel enumerable that represents 'this' enumerable, with each element // casted to TCastTo. If some element is not of type TCastTo, InvalidCastException // is thrown. // internal virtual ParallelQueryCast () { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } //----------------------------------------------------------------------------------- // Returns a parallel enumerable that represents 'this' enumerable, with each element // casted to TCastTo. Elements that are not of type TCastTo will be left out from // the results. // internal virtual ParallelQuery OfType () { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } //----------------------------------------------------------------------------------- // Derived classes implement GetEnumeratorUntyped() instead of IEnumerable.GetEnumerator() // This is to avoid the method name conflict if the derived classes also implement // IEnumerable . // internal virtual IEnumerator GetEnumeratorUntyped() { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } /// /// Returns an enumerator that iterates through the sequence. /// ///An enumerator that iterates through the sequence. IEnumerator IEnumerable.GetEnumerator() { return GetEnumeratorUntyped(); } } ////// Represents a parallel sequence. /// public class ParallelQuery: ParallelQuery, IEnumerable { internal ParallelQuery(QuerySettings settings) : base(settings) { } internal sealed override ParallelQuery Cast () { return ParallelEnumerable.Select (this, elem => (TCastTo)(object)elem); } internal sealed override ParallelQuery OfType () { // @PERF: Currently defined in terms of other operators. This isn't the most performant // solution (because it results in two operators) but is simple to implement. return this .Where (elem => elem is TCastTo) .Select (elem => (TCastTo)(object)elem); } internal override IEnumerator GetEnumeratorUntyped() { return ((IEnumerable )this).GetEnumerator(); } /// /// Returns an enumerator that iterates through the sequence. /// ///An enumerator that iterates through the sequence. public virtual IEnumeratorGetEnumerator() { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // ParallelQuery.cs // // [....] // // ParallelQuery is an abstract class that represents a PLINQ query. // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections; using System.Collections.Generic; using System.Linq.Parallel; using System.Diagnostics.Contracts; namespace System.Linq { ////// Represents a parallel sequence. /// public class ParallelQuery : IEnumerable { // Settings that have been specified on the query so far. private QuerySettings m_specifiedSettings; internal ParallelQuery(QuerySettings specifiedSettings) { m_specifiedSettings = specifiedSettings; } //------------------------------------------------------------------------------------ // Settings that have been specified on the query so far. Some settings may still // be unspecified and will be replaced either by operators further in the query, // or filled in with defaults at query opening time. // internal QuerySettings SpecifiedQuerySettings { get { return m_specifiedSettings; } } //----------------------------------------------------------------------------------- // Returns a parallel enumerable that represents 'this' enumerable, with each element // casted to TCastTo. If some element is not of type TCastTo, InvalidCastException // is thrown. // internal virtual ParallelQueryCast () { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } //----------------------------------------------------------------------------------- // Returns a parallel enumerable that represents 'this' enumerable, with each element // casted to TCastTo. Elements that are not of type TCastTo will be left out from // the results. // internal virtual ParallelQuery OfType () { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } //----------------------------------------------------------------------------------- // Derived classes implement GetEnumeratorUntyped() instead of IEnumerable.GetEnumerator() // This is to avoid the method name conflict if the derived classes also implement // IEnumerable . // internal virtual IEnumerator GetEnumeratorUntyped() { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } /// /// Returns an enumerator that iterates through the sequence. /// ///An enumerator that iterates through the sequence. IEnumerator IEnumerable.GetEnumerator() { return GetEnumeratorUntyped(); } } ////// Represents a parallel sequence. /// public class ParallelQuery: ParallelQuery, IEnumerable { internal ParallelQuery(QuerySettings settings) : base(settings) { } internal sealed override ParallelQuery Cast () { return ParallelEnumerable.Select (this, elem => (TCastTo)(object)elem); } internal sealed override ParallelQuery OfType () { // @PERF: Currently defined in terms of other operators. This isn't the most performant // solution (because it results in two operators) but is simple to implement. return this .Where (elem => elem is TCastTo) .Select (elem => (TCastTo)(object)elem); } internal override IEnumerator GetEnumeratorUntyped() { return ((IEnumerable )this).GetEnumerator(); } /// /// Returns an enumerator that iterates through the sequence. /// ///An enumerator that iterates through the sequence. public virtual IEnumeratorGetEnumerator() { Contract.Assert(false, "The derived class must override this method."); throw new NotSupportedException(); } } } // 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
- ToolStripDesigner.cs
- StylusTip.cs
- PeerToPeerException.cs
- MetadataPropertyCollection.cs
- OpacityConverter.cs
- Paragraph.cs
- Int32EqualityComparer.cs
- SqlConnectionPoolProviderInfo.cs
- TypeDelegator.cs
- LassoSelectionBehavior.cs
- DataError.cs
- DataServiceProviderMethods.cs
- StrongNameMembershipCondition.cs
- CqlIdentifiers.cs
- MdiWindowListStrip.cs
- Int16.cs
- ConditionCollection.cs
- ToolboxDataAttribute.cs
- LicFileLicenseProvider.cs
- DateTimeEditor.cs
- DataGridBoundColumn.cs
- ReversePositionQuery.cs
- ValidationEventArgs.cs
- SafeNativeMethods.cs
- ReflectionPermission.cs
- uribuilder.cs
- panel.cs
- HandleRef.cs
- ClientConfigurationHost.cs
- TextProviderWrapper.cs
- FamilyCollection.cs
- RegexParser.cs
- SQLInt32.cs
- CommonObjectSecurity.cs
- DataObjectPastingEventArgs.cs
- TextFormatterContext.cs
- EncoderNLS.cs
- XmlAnyElementAttributes.cs
- WindowsAuthenticationModule.cs
- MailAddressCollection.cs
- WindowsListViewGroupHelper.cs
- UIElement.cs
- SymDocumentType.cs
- TransformerConfigurationWizardBase.cs
- GridViewRowCollection.cs
- DispatcherTimer.cs
- StandardCommands.cs
- HMACSHA256.cs
- OdbcConnectionPoolProviderInfo.cs
- InputLanguage.cs
- StrongNameMembershipCondition.cs
- Int16KeyFrameCollection.cs
- _SafeNetHandles.cs
- PrtTicket_Public_Simple.cs
- HttpModuleAction.cs
- SqlAggregateChecker.cs
- QueryOutputWriter.cs
- HtmlUtf8RawTextWriter.cs
- sqlcontext.cs
- WebBrowserHelper.cs
- LocalIdKeyIdentifierClause.cs
- TextAnchor.cs
- WorkerRequest.cs
- AssemblyResourceLoader.cs
- PolicyException.cs
- PasswordRecovery.cs
- NamedPipeTransportManager.cs
- WebPartCloseVerb.cs
- XmlWrappingReader.cs
- HTTPNotFoundHandler.cs
- BooleanToVisibilityConverter.cs
- dtdvalidator.cs
- UnconditionalPolicy.cs
- XmlAtomErrorReader.cs
- MemoryFailPoint.cs
- NetworkAddressChange.cs
- SystemResourceKey.cs
- SystemKeyConverter.cs
- FontResourceCache.cs
- HandleCollector.cs
- TypeDelegator.cs
- XmlElementAttribute.cs
- ManifestSignedXml.cs
- StringAnimationUsingKeyFrames.cs
- XmlSchemaIdentityConstraint.cs
- NeutralResourcesLanguageAttribute.cs
- MemberPathMap.cs
- _ListenerRequestStream.cs
- ResourceReferenceKeyNotFoundException.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- LabelEditEvent.cs
- ApplicationContext.cs
- ActivityExecutorSurrogate.cs
- ThousandthOfEmRealDoubles.cs
- ListViewDesigner.cs
- SafeNativeMethods.cs
- AuthorizationRuleCollection.cs
- TraceLevelStore.cs
- TypeResolver.cs
- Model3D.cs