Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Linq / Parallel / QueryOperators / Inlined / InlinedAggregationOperator.cs / 1305376 / InlinedAggregationOperator.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // InlinedAggregationOperator.cs // //[....] // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System.Collections.Generic; using System.Diagnostics.Contracts; using System.Threading; namespace System.Linq.Parallel { ////// This class is common to all of the "inlined" versions of various aggregations. The /// inlined operators ensure that real MSIL instructions are used to perform elementary /// operations versus general purpose delegate-based binary operators. For obvious reasons /// this is a quite bit more efficient, although it does lead to a fair bit of unfortunate /// code duplication. /// ////// /// internal abstract class InlinedAggregationOperator : UnaryQueryOperator { //---------------------------------------------------------------------------------------- // Constructs a new instance of an inlined sum associative operator. // internal InlinedAggregationOperator(IEnumerable child) :base(child) { Contract.Assert(child != null, "child data source cannot be null"); } //--------------------------------------------------------------------------------------- // Executes the entire query tree, and aggregates the intermediate results into the // final result based on the binary operators and final reduction. // // Return Value: // The single result of aggregation. // internal TResult Aggregate() { TResult tr; Exception toThrow = null; try { tr = InternalAggregate(ref toThrow); } catch (ThreadAbortException) { // Do not wrap ThreadAbortExceptions throw; } catch (Exception ex) { // If the exception is not an aggregate, we must wrap it up and throw that instead. if (!(ex is AggregateException)) { // // Special case: if the query has been canceled, we do not want to wrap the // OperationCanceledException with an AggregateException. // // The query has been canceled iff these conditions hold: // - The exception thrown is OperationCanceledException // - We find the external CancellationToken for this query in the OperationCanceledException // - The externalToken is actually in the canceled state. OperationCanceledException cancelEx = ex as OperationCanceledException; if (cancelEx != null && cancelEx.CancellationToken == SpecifiedQuerySettings.CancellationState.ExternalCancellationToken && SpecifiedQuerySettings.CancellationState.ExternalCancellationToken.IsCancellationRequested) { throw; } throw new AggregateException(ex); } // Else, just rethrow the current active exception. throw; } // If the aggregation requested that we throw a singular exception, throw it. if (toThrow != null) { throw toThrow; } return tr; } //--------------------------------------------------------------------------------------- // Performs the operator-specific aggregation. // // Arguments: // singularExceptionToThrow - if the aggregate exception should throw an exception // without aggregating, this ref-param should be set // // Return Value: // The single result of aggregation. // protected abstract TResult InternalAggregate(ref Exception singularExceptionToThrow); //--------------------------------------------------------------------------------------- // Just opens the current operator, including opening the child and wrapping it with // partitions as needed. // internal override QueryResults Open( QuerySettings settings, bool preferStriping) { QueryResults childQueryResults = Child.Open(settings, preferStriping); return new UnaryQueryOperatorResults(childQueryResults, this, settings, preferStriping); } internal override void WrapPartitionedStream ( PartitionedStream inputStream, IPartitionedStreamRecipient recipient, bool preferStriping, QuerySettings settings) { int partitionCount = inputStream.PartitionCount; PartitionedStream outputStream = new PartitionedStream ( partitionCount, Util.GetDefaultComparer (), OrdinalIndexState.Correct); for (int i = 0; i < partitionCount; i++) { outputStream[i] = CreateEnumerator (i, partitionCount, inputStream[i], null, settings.CancellationState.MergedCancellationToken); } recipient.Receive(outputStream); } protected abstract QueryOperatorEnumerator CreateEnumerator ( int index, int count, QueryOperatorEnumerator source, object sharedData, CancellationToken cancellationToken); internal override IEnumerable AsSequentialQuery(CancellationToken token) { Contract.Assert(false, "This method should never be called. Associative aggregation can always be parallelized."); throw new NotSupportedException(); } //---------------------------------------------------------------------------------------- // Whether this operator performs a premature merge. // internal override bool LimitsParallelism { get { return false; } } } } // 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
- Identity.cs
- XmlDataFileEditor.cs
- TypeSystem.cs
- GiveFeedbackEvent.cs
- TableLayoutSettingsTypeConverter.cs
- sqlstateclientmanager.cs
- Object.cs
- SQLConvert.cs
- ProcessInputEventArgs.cs
- SvcMapFileSerializer.cs
- DataList.cs
- MaskDescriptors.cs
- SamlSerializer.cs
- Queue.cs
- CustomServiceCredentials.cs
- Tokenizer.cs
- ComponentEditorForm.cs
- Attributes.cs
- RemotingServices.cs
- PrintDialog.cs
- AssociationSet.cs
- DbConnectionClosed.cs
- EntityParameterCollection.cs
- InkCanvasSelectionAdorner.cs
- DataExpression.cs
- _IPv6Address.cs
- SqlProviderManifest.cs
- LinearQuaternionKeyFrame.cs
- PropertySourceInfo.cs
- Pkcs9Attribute.cs
- EventSinkHelperWriter.cs
- Automation.cs
- TCEAdapterGenerator.cs
- SystemWebCachingSectionGroup.cs
- ComNativeDescriptor.cs
- Transform.cs
- WebConfigManager.cs
- InternalSafeNativeMethods.cs
- TypeToken.cs
- webproxy.cs
- StyleHelper.cs
- Positioning.cs
- TabPanel.cs
- ExtenderControl.cs
- EUCJPEncoding.cs
- CodeArgumentReferenceExpression.cs
- ControlAdapter.cs
- XmlSchemaIdentityConstraint.cs
- Point4D.cs
- XmlSchemaElement.cs
- WebHttpSecurity.cs
- X509SecurityTokenProvider.cs
- MgmtConfigurationRecord.cs
- WorkflowDesignerColors.cs
- HtmlInputPassword.cs
- RuntimeConfigurationRecord.cs
- Config.cs
- AliasGenerator.cs
- SubqueryRules.cs
- SerializationAttributes.cs
- MD5HashHelper.cs
- SortableBindingList.cs
- SafeRegistryHandle.cs
- DependencyPropertyHelper.cs
- NullableIntSumAggregationOperator.cs
- TextViewBase.cs
- SqlFunctions.cs
- StickyNoteAnnotations.cs
- FamilyMapCollection.cs
- SweepDirectionValidation.cs
- HTMLTagNameToTypeMapper.cs
- RowType.cs
- Path.cs
- InputMethodStateChangeEventArgs.cs
- SystemColorTracker.cs
- TriggerActionCollection.cs
- CheckBoxPopupAdapter.cs
- ParenthesizePropertyNameAttribute.cs
- ListViewHitTestInfo.cs
- SHA1CryptoServiceProvider.cs
- WebBaseEventKeyComparer.cs
- storepermission.cs
- AssertFilter.cs
- ToolStripMenuItem.cs
- ManualResetEventSlim.cs
- IsolatedStorageException.cs
- MessageBox.cs
- MouseGesture.cs
- FixedPage.cs
- SelfSignedCertificate.cs
- PersonalizationEntry.cs
- HorizontalAlignConverter.cs
- UnsafeNativeMethods.cs
- EditorPart.cs
- Geometry.cs
- SqlReferenceCollection.cs
- SharedUtils.cs
- DoubleLinkListEnumerator.cs
- BinaryFormatterWriter.cs
- ObjectStateManager.cs