Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Channels / BufferedMessageWriter.cs / 1 / BufferedMessageWriter.cs
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System.IO;
using System.Xml;
using System.Diagnostics;
abstract class BufferedMessageWriter
{
int[] sizeHistory;
int sizeHistoryIndex;
const int sizeHistoryCount = 4;
const int expectedSizeVariance = 256;
BufferedOutputStream stream;
public BufferedMessageWriter()
{
stream = new BufferedOutputStream(SR.MaxSentMessageSizeExceeded);
InitMessagePredicter();
}
protected abstract XmlDictionaryWriter TakeXmlWriter(Stream stream);
protected abstract void ReturnXmlWriter(XmlDictionaryWriter writer);
public ArraySegment WriteMessage(Message message, BufferManager bufferManager, int initialOffset, int maxSizeQuota)
{
int effectiveMaxSize;
// make sure that maxSize has room for initialOffset without overflowing, since
// the effective buffer size is message size + initialOffset
if (maxSizeQuota <= int.MaxValue - initialOffset)
effectiveMaxSize = maxSizeQuota + initialOffset;
else
effectiveMaxSize = int.MaxValue;
int predictedMessageSize = PredictMessageSize();
if (predictedMessageSize > effectiveMaxSize)
predictedMessageSize = effectiveMaxSize;
else if (predictedMessageSize < initialOffset)
predictedMessageSize = initialOffset;
try
{
stream.Init(predictedMessageSize, maxSizeQuota, effectiveMaxSize, bufferManager);
stream.Skip(initialOffset);
XmlDictionaryWriter writer = TakeXmlWriter(stream);
OnWriteStartMessage(writer);
message.WriteMessage(writer);
OnWriteEndMessage(writer);
writer.Flush();
ReturnXmlWriter(writer);
int size;
byte[] buffer = stream.ToArray(out size);
RecordActualMessageSize(size);
return new ArraySegment(buffer, initialOffset, size - initialOffset);
}
finally
{
stream.Clear();
}
}
protected virtual void OnWriteStartMessage(XmlDictionaryWriter writer)
{
}
protected virtual void OnWriteEndMessage(XmlDictionaryWriter writer)
{
}
void InitMessagePredicter()
{
sizeHistory = new int[4];
for (int i = 0; i < sizeHistoryCount; i++)
sizeHistory[i] = 256;
}
int PredictMessageSize()
{
int max = 0;
for (int i = 0; i < sizeHistoryCount; i++)
if (sizeHistory[i] > max)
max = sizeHistory[i];
return max + expectedSizeVariance;
}
void RecordActualMessageSize(int size)
{
sizeHistory[sizeHistoryIndex] = size;
sizeHistoryIndex = (sizeHistoryIndex + 1) % sizeHistoryCount;
}
}
}
// 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
- HostnameComparisonMode.cs
- UnicodeEncoding.cs
- __Filters.cs
- InternalConfigRoot.cs
- SoapHeaderException.cs
- WindowsStreamSecurityBindingElement.cs
- BrowsableAttribute.cs
- XmlAutoDetectWriter.cs
- ExtractorMetadata.cs
- ObjectDataSourceStatusEventArgs.cs
- SystemWebCachingSectionGroup.cs
- SelectingProviderEventArgs.cs
- InkCanvasFeedbackAdorner.cs
- CookieHandler.cs
- ColumnCollection.cs
- HashAlgorithm.cs
- WebPartConnectionsDisconnectVerb.cs
- Transform3D.cs
- DataGridViewSortCompareEventArgs.cs
- ExtendedProtectionPolicyElement.cs
- ProcessThreadCollection.cs
- GcHandle.cs
- ImageKeyConverter.cs
- ButtonField.cs
- WebPartConnectionsCancelEventArgs.cs
- Expander.cs
- SizeAnimationClockResource.cs
- BasicExpressionVisitor.cs
- Condition.cs
- XmlNamespaceMapping.cs
- TextParagraphView.cs
- TypeSystem.cs
- DialogDivider.cs
- NativeMethods.cs
- wgx_exports.cs
- TextMetrics.cs
- SqlDependencyUtils.cs
- DocumentViewerBase.cs
- SafeWaitHandle.cs
- XmlSchemaFacet.cs
- xmlglyphRunInfo.cs
- FullTextState.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- FrameworkElement.cs
- VBIdentifierDesigner.xaml.cs
- TypeSemantics.cs
- AddInControllerImpl.cs
- OpacityConverter.cs
- NetPipeSection.cs
- QilStrConcat.cs
- CommonObjectSecurity.cs
- MediaPlayerState.cs
- WorkflowInstance.cs
- SchemaImporterExtensionElementCollection.cs
- StateFinalizationDesigner.cs
- PartialCachingControl.cs
- CultureInfoConverter.cs
- DrawingContextDrawingContextWalker.cs
- ProfilePropertySettingsCollection.cs
- AudioFileOut.cs
- PolyQuadraticBezierSegment.cs
- SweepDirectionValidation.cs
- RelativeSource.cs
- ListViewInsertionMark.cs
- DynamicPropertyHolder.cs
- Double.cs
- PnrpPeerResolverBindingElement.cs
- Ipv6Element.cs
- IResourceProvider.cs
- SettingsPropertyValue.cs
- Bold.cs
- TrackingStringDictionary.cs
- DateTimeSerializationSection.cs
- IndexingContentUnit.cs
- AutomationElementIdentifiers.cs
- SafeMemoryMappedViewHandle.cs
- StreamWithDictionary.cs
- SamlAuthorityBinding.cs
- CompModSwitches.cs
- ActivityPropertyReference.cs
- ProcessStartInfo.cs
- MsmqProcessProtocolHandler.cs
- WpfPayload.cs
- IdentifierCollection.cs
- GiveFeedbackEvent.cs
- PageThemeBuildProvider.cs
- ProfileProvider.cs
- ApplicationTrust.cs
- BlurEffect.cs
- PassportPrincipal.cs
- RowSpanVector.cs
- XmlNamespaceManager.cs
- XmlSchemaSimpleContentRestriction.cs
- DirectionalLight.cs
- TimeStampChecker.cs
- Substitution.cs
- TextTreeUndoUnit.cs
- EventHandlerList.cs
- CompiledXpathExpr.cs
- SingleAnimation.cs