Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / Epm / EpmCustomContentSerializer.cs / 1305376 / EpmCustomContentSerializer.cs
//----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Class used for serializing custom EntityPropertyMappingAttribute content
// for non-syndication mappings
//
//
// @owner [....]
//---------------------------------------------------------------------
namespace System.Data.Services.Common
{
using System.Collections.Generic;
using System.Diagnostics;
#if !ASTORIA_CLIENT
using System.ServiceModel.Syndication;
using System.Data.Services.Providers;
#else
using System.Data.Services.Client;
using System.Xml;
#endif
///
/// Base visitor class for performing serialization of custom content in the feed entry whose mapping
/// is provided through EntityPropertyMappingAttributes
///
internal sealed class EpmCustomContentSerializer : EpmContentSerializerBase, IDisposable
{
/// IDisposable helper state
private bool disposed;
///
/// Dictionary mapping visitor content and with target paths
///
private Dictionary visitorContent;
#if ASTORIA_CLIENT
///
/// Constructor initializes the base class be identifying itself as a custom content serializer
///
/// Target tree containing mapping information
/// Object to be serialized
/// SyndicationItem to which content will be added
internal EpmCustomContentSerializer(EpmTargetTree targetTree, object element, XmlWriter target)
: base(targetTree, false, element, target)
{
this.InitializeVisitorContent();
}
#else
///
/// Constructor initializes the base class be identifying itself as a custom content serializer
///
/// Target tree containing mapping information
/// Object to be serialized
/// SyndicationItem to which content will be added
/// Null valued properties found during serialization
/// Data Service provider used for rights verification.
internal EpmCustomContentSerializer(EpmTargetTree targetTree, object element, SyndicationItem target, EpmContentSerializer.EpmNullValuedPropertyTree nullValuedProperties, DataServiceProviderWrapper provider)
: base(targetTree, false, element, target)
{
this.InitializeVisitorContent(nullValuedProperties, provider);
}
#endif
///
/// Closes all the XmlWriter and MemoryStream objects in the tree and adds them to the SyndicationItem
/// as ElementExtensions. Invokes the NodeDataCleaner to dispose off any existing memory stream and
/// XmlWriter objects
///
public void Dispose()
{
if (!this.disposed)
{
foreach (EpmTargetPathSegment subSegmentOfRoot in this.Root.SubSegments)
{
EpmCustomContentWriterNodeData c = this.visitorContent[subSegmentOfRoot];
Debug.Assert(c != null, "Must have custom data for all the children of root");
if (this.Success)
{
c.AddContentToTarget(this.Target);
}
c.Dispose();
}
this.disposed = true;
}
}
#if ASTORIA_CLIENT
///
/// Override of the base Visitor method, which actually performs mapping search and serialization
///
/// Current segment being checked for mapping
/// Which sub segments to serialize
protected override void Serialize(EpmTargetPathSegment targetSegment, EpmSerializationKind kind)
#else
///
/// Override of the base Visitor method, which actually performs mapping search and serialization
///
/// Current segment being checked for mapping
/// Which sub segments to serialize
/// Data Service provider used for rights verification.
protected override void Serialize(EpmTargetPathSegment targetSegment, EpmSerializationKind kind, DataServiceProviderWrapper provider)
#endif
{
if (targetSegment.IsAttribute)
{
this.WriteAttribute(targetSegment);
}
else
{
#if ASTORIA_CLIENT
this.WriteElement(targetSegment);
#else
this.WriteElement(targetSegment, provider);
#endif
}
}
///
/// Given a segment, writes the attribute to xml writer corresponding to it
///
/// Segment being written
private void WriteAttribute(EpmTargetPathSegment targetSegment)
{
// Content to be written in an attribute
Debug.Assert(targetSegment.HasContent, "Must have content for attributes");
EpmCustomContentWriterNodeData currentContent = this.visitorContent[targetSegment];
currentContent.XmlContentWriter.WriteAttributeString(
targetSegment.SegmentNamespacePrefix,
targetSegment.SegmentName.Substring(1),
targetSegment.SegmentNamespaceUri,
currentContent.Data);
}
#if ASTORIA_CLIENT
///
/// Given a segment, writes the element to xml writer corresponding to it, works recursively to write child elements/attributes
///
/// Segment being written
private void WriteElement(EpmTargetPathSegment targetSegment)
#else
///
/// Given a segment, writes the element to xml writer corresponding to it, works recursively to write child elements/attributes
///
/// Segment being written
/// Data Service provider used for rights verification.
private void WriteElement(EpmTargetPathSegment targetSegment, DataServiceProviderWrapper provider)
#endif
{
// Content to be written in an element
EpmCustomContentWriterNodeData currentContent = this.visitorContent[targetSegment];
currentContent.XmlContentWriter.WriteStartElement(
targetSegment.SegmentNamespacePrefix,
targetSegment.SegmentName,
targetSegment.SegmentNamespaceUri);
#if ASTORIA_CLIENT
// Serialize the attributes and children before serializing the data itself
base.Serialize(targetSegment, EpmSerializationKind.Attributes);
#else
// Serialize the attributes and children before serializing the data itself
base.Serialize(targetSegment, EpmSerializationKind.Attributes, provider);
#endif
if (targetSegment.HasContent)
{
Debug.Assert(currentContent.Data != null, "Must always have non-null data content value");
currentContent.XmlContentWriter.WriteString(currentContent.Data);
}
#if ASTORIA_CLIENT
// Serialize the attributes and children before serializing the data itself
base.Serialize(targetSegment, EpmSerializationKind.Elements);
#else
// Serialize the attributes and children before serializing the data itself
base.Serialize(targetSegment, EpmSerializationKind.Elements, provider);
#endif
currentContent.XmlContentWriter.WriteEndElement();
}
#if ASTORIA_CLIENT
/// Initializes content for the serializer visitor
private void InitializeVisitorContent()
{
this.visitorContent = new Dictionary(ReferenceEqualityComparer.Instance);
// Initialize all the root's children's xml writers
foreach (EpmTargetPathSegment subSegmentOfRoot in this.Root.SubSegments)
{
this.visitorContent.Add(subSegmentOfRoot, new EpmCustomContentWriterNodeData(subSegmentOfRoot, this.Element));
this.InitializeSubSegmentVisitorContent(subSegmentOfRoot);
}
}
/// Initialize the visitor content for all of root's grandchildren and beyond
/// One of root's children
private void InitializeSubSegmentVisitorContent(EpmTargetPathSegment subSegment)
{
foreach (EpmTargetPathSegment segment in subSegment.SubSegments)
{
this.visitorContent.Add(segment, new EpmCustomContentWriterNodeData(this.visitorContent[subSegment], segment, this.Element));
this.InitializeSubSegmentVisitorContent(segment);
}
}
#else
/// Initializes content for the serializer visitor
/// Null valued properties found during serialization
/// Data Service provider used for rights verification.
private void InitializeVisitorContent(EpmContentSerializer.EpmNullValuedPropertyTree nullValuedProperties, DataServiceProviderWrapper provider)
{
this.visitorContent = new Dictionary(ReferenceEqualityComparer.Instance);
// Initialize all the root's children's xml writers
foreach (EpmTargetPathSegment subSegmentOfRoot in this.Root.SubSegments)
{
this.visitorContent.Add(subSegmentOfRoot, new EpmCustomContentWriterNodeData(subSegmentOfRoot, this.Element, nullValuedProperties, provider));
this.InitializeSubSegmentVisitorContent(subSegmentOfRoot, nullValuedProperties, provider);
}
}
/// Initialize the visitor content for all of root's grandchildren and beyond
/// One of root's children
/// Null valued properties found during serialization
/// Data Service provider used for rights verification.
private void InitializeSubSegmentVisitorContent(EpmTargetPathSegment subSegment, EpmContentSerializer.EpmNullValuedPropertyTree nullValuedProperties, DataServiceProviderWrapper provider)
{
foreach (EpmTargetPathSegment segment in subSegment.SubSegments)
{
this.visitorContent.Add(segment, new EpmCustomContentWriterNodeData(this.visitorContent[subSegment], segment, this.Element, nullValuedProperties, provider));
this.InitializeSubSegmentVisitorContent(segment, nullValuedProperties, provider);
}
}
#endif
}
}
// 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
- CacheRequest.cs
- SecurityRuntime.cs
- PropertyRecord.cs
- Attributes.cs
- SelectionChangedEventArgs.cs
- RoutedPropertyChangedEventArgs.cs
- EngineSite.cs
- DataGrid.cs
- DbConnectionPoolGroupProviderInfo.cs
- Publisher.cs
- RuleProcessor.cs
- DataTableCollection.cs
- DataGridColumn.cs
- DbProviderManifest.cs
- IntegerValidator.cs
- RunInstallerAttribute.cs
- PrintingPermissionAttribute.cs
- BaseComponentEditor.cs
- XamlHostingConfiguration.cs
- ProxyWebPartConnectionCollection.cs
- AssemblyName.cs
- StructureChangedEventArgs.cs
- ServiceModelDictionary.cs
- InteropTrackingRecord.cs
- pingexception.cs
- UnauthorizedWebPart.cs
- mediaeventargs.cs
- RTLAwareMessageBox.cs
- ControllableStoryboardAction.cs
- SiteMapDataSourceView.cs
- XmlObjectSerializerReadContext.cs
- SqlXml.cs
- ReachObjectContext.cs
- mactripleDES.cs
- CancellationToken.cs
- FtpRequestCacheValidator.cs
- ImmutableCollection.cs
- Point3DCollection.cs
- RealProxy.cs
- AppSettingsSection.cs
- QueryContinueDragEventArgs.cs
- UrlAuthFailedErrorFormatter.cs
- AuthorizationRuleCollection.cs
- AttributeData.cs
- MemoryFailPoint.cs
- ToolStripItemCollection.cs
- XmlSchemaSimpleContentRestriction.cs
- UInt64Converter.cs
- VectorAnimationUsingKeyFrames.cs
- RunInstallerAttribute.cs
- NotCondition.cs
- ScrollViewerAutomationPeer.cs
- URLIdentityPermission.cs
- WebPartRestoreVerb.cs
- ObjectStateFormatter.cs
- PathGradientBrush.cs
- LogEntryUtils.cs
- BaseTemplateBuildProvider.cs
- ResolveInfo.cs
- SmiEventSink.cs
- HttpDigestClientElement.cs
- InputLanguageSource.cs
- WebPartManagerInternals.cs
- DispatcherOperation.cs
- ResXFileRef.cs
- COSERVERINFO.cs
- CodeComment.cs
- ArgumentValue.cs
- CommandExpr.cs
- InputLanguageManager.cs
- Queue.cs
- TextWriterTraceListener.cs
- WindowsProgressbar.cs
- KeyPullup.cs
- PerformanceCounter.cs
- ColorBlend.cs
- ComEventsMethod.cs
- ToolboxDataAttribute.cs
- TimeManager.cs
- HttpInputStream.cs
- XPathScanner.cs
- SmiMetaData.cs
- MetafileHeaderEmf.cs
- ExpandSegmentCollection.cs
- TraversalRequest.cs
- XmlAnyElementAttribute.cs
- Aggregates.cs
- DataListItem.cs
- CheckBoxStandardAdapter.cs
- ToolBarTray.cs
- isolationinterop.cs
- CharEnumerator.cs
- DataServiceException.cs
- GlyphRunDrawing.cs
- Hashtable.cs
- BasicHttpSecurity.cs
- Page.cs
- Mappings.cs
- GeneralTransform.cs
- Activator.cs