XpsSerializationManagerAsync.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / XpsSerializationManagerAsync.cs / 1 / XpsSerializationManagerAsync.cs

                            /*++ 

    Copyright (C) 2004- 2005 Microsoft Corporation
    All rights reserved.
 
    Module Name:
        XpsSerializationManagerAsync.cs 
 
    Abstract:
 
    Author:
        [....] ([....]) 25-May-2005

    Revision History: 
--*/
using System; 
using System.Collections; 
using System.Collections.Generic;
using System.Collections.Specialized; 
using System.ComponentModel;
using System.Diagnostics;
using System.Reflection;
using System.Xml; 
using System.IO;
using System.Security; 
using System.Security.Permissions; 
using System.ComponentModel.Design.Serialization;
using System.Windows.Xps.Packaging; 
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Markup; 
using System.Windows.Threading;
using MS.Internal; 
using System.Printing; 

namespace System.Windows.Xps.Serialization 
{
    /// 
    /// This class defines all necessary methods that are necessary to provide
    /// asynchronous serialization services for persisting an AVALON root object 
    /// into an XPS package. It glues together all necessary serializers and
    /// type converters for different type of objects to produce the correct 
    /// serialized content in the package. 
    /// 
    public sealed class XpsSerializationManagerAsync : 
                        XpsSerializationManager
    {
        /// 
        /// Constructor to create and initialize the XpsSerializationManagerAsync 
        /// 
        public 
        XpsSerializationManagerAsync( 
            BasePackagingPolicy  packagingPolicy,
            bool                 batchMode 
            ):
        base(packagingPolicy,  batchMode)
        {
            _dispatcher                           = Dispatcher.CurrentDispatcher; 
            _serializationOperationCanceled       = false;
            this._currentPageXmlWriter            = null; 
            this._isBatchWorkItemInProgress       = false; 

            _operationStack                       = new Stack(); 
            _batchOperationQueue                  = new Queue();

            XpsDriverDocEventManager    xpsDocEventManager = base.GetXpsDriverDocEventManager();
 
            if (xpsDocEventManager != null)
            { 
                XpsSerializationCompletedInternal += new XpsSerializationCompletedEventHandler(xpsDocEventManager.ForwardSerializationCompleted); 

            } 
        }


        ///  
        ///
        ///  
        /// serializedObject is NULL. 
        /// serializedObject is not a supported type.
        public 
        override
        void
        SaveAsXaml(
            Object  serializedObject 
            )
        { 
            if (serializedObject == null) 
            {
                throw new ArgumentNullException("serializedObject"); 
            }

            if(!IsSerializedObjectTypeSupported(serializedObject))
            { 
                throw new XpsSerializationException(ReachSR.Get(ReachSRID.ReachSerialization_NotSupported));
            } 
 
            if(Simulator == null)
            { 
                Simulator = new ReachHierarchySimulator(this,
                                                         serializedObject);
            }
 
            if(!IsSimulating)
            { 
                Simulator.BeginConfirmToXPSStructure(IsBatchMode); 
                IsSimulating = true;
            } 

            if(IsBatchMode)
            {
                // 
                // Add the Visual received in to the queue
                // 
                BatchOperationWorkItem  batchOperationWorkItem = new BatchOperationWorkItem(BatchOperationType.batchWrite, 
                                                                                            serializedObject);
                _batchOperationQueue.Enqueue(batchOperationWorkItem); 
                PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlBatchWorkItem));
            }
            else
            { 
                ReachSerializer reachSerializer = GetSerializer(serializedObject);
 
                if(reachSerializer != null) 
                {
                    // 
                    // Prepare the context that is going to be pushed on the stack
                    //
                    SerializationManagerOperationContextStack
                    contextStack = new SerializationManagerOperationContextStack(reachSerializer, 
                                                                                 serializedObject);
                    // 
                    // At this stage, start calling another method which would peak at the stack 
                    //
                    _operationStack.Push(contextStack); 

                    PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlWorkItem));
                }
                else 
                {
                    throw new XpsSerializationException(ReachSR.Get(ReachSRID.ReachSerialization_NoSerializer)); 
                } 
            }
        } 

        internal
        Object
        InvokeSaveAsXamlWorkItem( 
            Object arg
            ) 
        { 
            //
            // PreSharp uses message numbers that the C# compiler doesn't know about. 
            // Disable the C# complaints, per the PreSharp documentation.
            #pragma warning disable 1634, 1691
            //
            // PreSharp complains about catching NullReference (and other) exceptions. 
            // This is an async model and we need to catch all exception ourselves and then
            // send them to the completion delegate 
            #pragma warning disable 56500 
            try
            { 
                if(!_serializationOperationCanceled)
                {
                    if(_operationStack.Count > 0)
                    { 
                        Object objectOnStack = _operationStack.Pop();
 
                        if(objectOnStack.GetType() == 
                           typeof(System.Windows.Xps.Serialization.SerializationManagerOperationContextStack))
                        { 
                           SerializationManagerOperationContextStack context =
                                                                     (SerializationManagerOperationContextStack)objectOnStack;

                            context.ReachSerializer.SerializeObject(context.SerializedObject); 
                        }
                        else if(typeof(System.Windows.Xps.Serialization.ReachSerializerContext).IsAssignableFrom(objectOnStack.GetType())) 
                        { 
                            ReachSerializerContext context = (ReachSerializerContext)objectOnStack;
                            context.Serializer.AsyncOperation(context); 
                        }
                        PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlWorkItem));
                    }
                    else 
                    {
                        Simulator.EndConfirmToXPSStructure(IsBatchMode); 
                        XPSSerializationCompletionMethod(); 
                    }
                } 
            }
            catch(Exception e)
            {
                if(CriticalExceptions.IsCriticalException(e)) 
                {
                    throw; 
                } 

                // 
                // Indicate that an error happened
                //
                bool canceled = false;
 
                XpsSerializationCompletedEventArgs args = new XpsSerializationCompletedEventArgs(canceled,
                                                                                                 null, 
                                                                                                 e); 

                _serializationOperationCanceled = true; 

                PostSerializationTask(new DispatcherOperationCallback(OnXPSSerializationCompleted), args);

                return null; 
            }
            #pragma warning restore 56500 
            #pragma warning restore 1634, 1691 

            return null; 
        }

        internal
        Object 
        InvokeSaveAsXamlBatchWorkItem(
            Object arg 
            ) 
        {
            // 
            // PreSharp uses message numbers that the C# compiler doesn't know about.
            // Disable the C# complaints, per the PreSharp documentation.
            #pragma warning disable 1634, 1691
            // 
            // PreSharp complains about catching NullReference (and other) exceptions.
            // This is an async model and we need to catch all exception ourselves and then 
            // send them to the completion delegate 
            #pragma warning disable 56500
            try 
            {
                if(!_serializationOperationCanceled)
                {
                    if(!_isBatchWorkItemInProgress && _batchOperationQueue.Count > 0) 
                    {
                        BatchOperationWorkItem batchOperationWorkItem = (BatchOperationWorkItem)_batchOperationQueue.Dequeue(); 
 
                        if(batchOperationWorkItem.OperationType == BatchOperationType.batchWrite)
                        { 
                            _currentPageXmlWriter = Simulator.SimulateBeginFixedPage();

                            ReachSerializer reachSerializer = GetSerializer(batchOperationWorkItem.SerializedObject);
 
                            if(reachSerializer != null)
                            { 
                                // 
                                // Prepare the context that is going to be pushed on the stack
                                // 
                                SerializationManagerOperationContextStack
                                contextStack = new SerializationManagerOperationContextStack(reachSerializer,
                                                                                             batchOperationWorkItem.SerializedObject);
                                // 
                                // At this stage, start calling another method which would peak at the stack
                                // 
                                _operationStack.Push(contextStack); 

                                PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlBatchWorkItem)); 
                            }
                            else
                            {
                                throw new XpsSerializationException(ReachSR.Get(ReachSRID.ReachSerialization_NoSerializer)); 
                            }
                            _isBatchWorkItemInProgress = true; 
                        } 
                        else if(batchOperationWorkItem.OperationType == BatchOperationType.batchCommit)
                        { 
                            Simulator.EndConfirmToXPSStructure(IsBatchMode);
                            XPSSerializationCompletionMethod();
                        }
                    } 
                    else
                    { 
                        if(_operationStack.Count > 0) 
                        {
                            Object objectOnStack = _operationStack.Pop(); 

                            if(objectOnStack.GetType() ==
                               typeof(System.Windows.Xps.Serialization.SerializationManagerOperationContextStack))
                            { 
                               SerializationManagerOperationContextStack context =
                                                                         (SerializationManagerOperationContextStack)objectOnStack; 
 
                                context.ReachSerializer.SerializeObject(context.SerializedObject);
                            } 
                            else if(typeof(System.Windows.Xps.Serialization.ReachSerializerContext).IsAssignableFrom(objectOnStack.GetType()))
                            {
                                ReachSerializerContext context = (ReachSerializerContext)objectOnStack;
                                context.Serializer.AsyncOperation(context); 
                            }
                            PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlBatchWorkItem)); 
                        } 
                        else
                        { 
                            Simulator.SimulateEndFixedPage(_currentPageXmlWriter);
                            _isBatchWorkItemInProgress = false;
                            _currentPageXmlWriter      = null;
                        } 
                    }
                } 
            } 
            catch(Exception e)
            { 
                if(CriticalExceptions.IsCriticalException(e))
                {
                    throw;
                } 

                // 
                // Indicate that an error happened 
                //
                bool canceled = false; 

                XpsSerializationCompletedEventArgs args = new XpsSerializationCompletedEventArgs(canceled,
                                                                                                 null,
                                                                                                 e); 

                _serializationOperationCanceled = true; 
 
                PostSerializationTask(new DispatcherOperationCallback(OnXPSSerializationCompleted), args);
 
                return null;
            }
            #pragma warning restore 56500
            #pragma warning restore 1634, 1691 

 
            return null; 
        }
 
        /// 
        ///
        /// 
        public 
        void
        CancelAsync( 
            ) 
        {
            bool canceled = true; 

            XpsSerializationCompletedEventArgs e = new XpsSerializationCompletedEventArgs(canceled,
                                                                                          null,
                                                                                          null); 

            _serializationOperationCanceled = true; 
 
            PostSerializationTask(new DispatcherOperationCallback(OnXPSSerializationCompleted), e);
        } 

        /// 
        ///
        ///  
        public
        override 
        void 
        Commit(
            ) 
        {
            if(IsBatchMode && IsSimulating)
            {
                BatchOperationWorkItem  batchOperationWorkItem = new BatchOperationWorkItem(BatchOperationType.batchCommit, 
                                                                                            null);
                _batchOperationQueue.Enqueue(batchOperationWorkItem); 
                PostSerializationTask(new DispatcherOperationCallback(InvokeSaveAsXamlBatchWorkItem)); 
            }
            else 
            {
                //
                // throw the appropariate exception
                // 
            }
        } 
 
        /*/// 
        /// 
        /// 
        public
        event
        XPSSerializationProgressChangedEventHandler XPSSerializationProgressChanged;*/ 

        ///  
        /// 
        /// 
        public 
        event
        XpsSerializationCompletedEventHandler               XpsSerializationCompleted;

        ///  
        /// XpsDriverDocEventManager subscribes for this event. We want to avoid chaining internal
        /// subscribers as they might delay the event to be raised for external (app) subscribers. 
        ///  
        internal
        event 
        XpsSerializationCompletedEventHandler XpsSerializationCompletedInternal;

        /// 
        /// 
        /// 
        internal 
        override 
        Type
        GetSerializerType( 
            Type objectType
            )
        {
            Type serializerType = null; 

 
            if (typeof(System.Windows.Documents.FixedDocument).IsAssignableFrom(objectType)) 
            {
                serializerType = typeof(FixedDocumentSerializerAsync); 
            }
            else if (typeof(System.Windows.Documents.PageContentCollection).IsAssignableFrom(objectType))
            {
                serializerType = typeof(ReachPageContentCollectionSerializerAsync); 
            }
            else if(typeof(System.Windows.Documents.PageContent).IsAssignableFrom(objectType)) 
            { 
                serializerType = typeof(ReachPageContentSerializerAsync);
            } 
            else if(typeof(System.Windows.Controls.UIElementCollection).IsAssignableFrom(objectType))
            {
                serializerType = typeof(ReachUIElementCollectionSerializerAsync);
            } 
            else if(typeof(System.Windows.Documents.FixedPage).IsAssignableFrom(objectType))
            { 
                serializerType = typeof(FixedPageSerializerAsync); 
            }
            else if (typeof(System.Windows.Documents.FixedDocumentSequence).IsAssignableFrom(objectType)) 
            {
                serializerType = typeof(DocumentSequenceSerializerAsync);
            }
            else if (typeof(System.Windows.Documents.DocumentReferenceCollection).IsAssignableFrom(objectType)) 
            {
                serializerType = typeof(ReachDocumentReferenceCollectionSerializerAsync); 
            } 
            else if (typeof(System.Windows.Documents.DocumentReference).IsAssignableFrom(objectType))
            { 
                serializerType = typeof(ReachDocumentReferenceSerializerAsync);
            }
            else if (typeof(System.Windows.Documents.DocumentPaginator).IsAssignableFrom(objectType))
            { 
                serializerType = typeof(DocumentPaginatorSerializerAsync);
            } 
            else if (typeof(System.Windows.Documents.DocumentPage).IsAssignableFrom(objectType)) 
            {
                serializerType = typeof(DocumentPageSerializerAsync); 
            }
            else if (typeof(System.Windows.Media.Visual).IsAssignableFrom(objectType))
            {
                serializerType = typeof(ReachVisualSerializerAsync); 
            }
            else if (typeof(System.Printing.PrintTicket).IsAssignableFrom(objectType)) 
            { 
                serializerType = typeof(PrintTicketSerializer);
            } 

            if(serializerType == null)
            {
                base.GetSerializerType(objectType); 
            }
 
            return serializerType; 
        }
 
        internal
        Stack
        OperationStack
        { 
            get
            { 
                return _operationStack; 
            }
        } 

        private
        void
        PostSerializationTask( 
            DispatcherOperationCallback taskItem
            ) 
        { 
            _dispatcher.BeginInvoke(DispatcherPriority.Background,
                                    taskItem, 
                                    null);
        }

        private 
        void
        PostSerializationTask( 
            DispatcherOperationCallback taskItem, 
            object arg
            ) 
        {
            _dispatcher.BeginInvoke(DispatcherPriority.Background,
                                    taskItem,
                                    arg); 
        }
 
        private 
        void
        XPSSerializationCompletionMethod( 
            )
        {
            bool canceled = false;
 
            XpsSerializationCompletedEventArgs e = new XpsSerializationCompletedEventArgs(canceled,
                                                                                          null, 
                                                                                          null); 

            PostSerializationTask(new DispatcherOperationCallback(OnXPSSerializationCompleted), e); 
        }

        private
        object 
        OnXPSSerializationCompleted(
            object operationState 
            ) 
        {
            XpsSerializationCompletedEventArgs e = operationState as XpsSerializationCompletedEventArgs; 

            if (XpsSerializationCompleted != null)
            {
                XpsSerializationCompleted(this, e); 
            }
 
            if (XpsSerializationCompletedInternal != null) 
            {
                XpsSerializationCompletedInternal(this, e); 
            }
            return null;
        }
 
        private
        Dispatcher                  _dispatcher; 
 
        private
        Stack                       _operationStack; 

        private
        Queue                       _batchOperationQueue;
 
        private
        bool                        _serializationOperationCanceled; 
 
        private
        XmlWriter                   _currentPageXmlWriter; 

        private
        bool                        _isBatchWorkItemInProgress;
    }; 

    internal class SerializationManagerOperationContextStack 
    { 
        public
        SerializationManagerOperationContextStack( 
            ReachSerializer serializer,
            Object          serializedObject
            )
        { 
            this._serializer       = serializer;
            this._serializedObject = serializedObject; 
        } 

        public 
        ReachSerializer
        ReachSerializer
        {
            get 
            {
                return _serializer; 
            } 
        }
 
        public
        Object
        SerializedObject
        { 
            get
            { 
                return _serializedObject; 
            }
        } 

        private
        ReachSerializer     _serializer;
 
        private
        Object              _serializedObject; 
 
    }
 
    /// 
    ///
    /// 
    public 
    delegate
    void 
    XpsSerializationProgressChangedEventHandler( 
        object                                   sender,
        XpsSerializationProgressChangedEventArgs e 
        );

    /// 
    /// 
    /// 
    public 
    delegate 
    void
    XpsSerializationCompletedEventHandler( 
        object                              sender,
        XpsSerializationCompletedEventArgs  e
        );
 
    /// 
    /// 
    ///  
    public class XpsSerializationCompletedEventArgs :
                 AsyncCompletedEventArgs 
    {
        /// 
        ///
        ///  
        public
        XpsSerializationCompletedEventArgs( 
            bool        canceled, 
            object      state,
            Exception   exception 
            ) :
            base(exception, canceled, state)
        {
        } 
    };
 
    ///  
    ///
    ///  
    public class XpsSerializationProgressChangedEventArgs :
                 ProgressChangedEventArgs
    {
        ///  
        ///
        ///  
        public 
        XpsSerializationProgressChangedEventArgs(
            XpsWritingProgressChangeLevel   writingLevel, 
            int                             pageNumber,
            int                             progressPercentage,
            object                          userToken) :
            base( progressPercentage, userToken ) 
        {
            this._pageNumber   = pageNumber; 
            this._writingLevel = writingLevel; 
        }
 
        /// 
        ///
        /// 
        public 
        XpsWritingProgressChangeLevel
        WritingLevel 
        { 
            get
            { 
                return _writingLevel;
            }
        }
 
        /// 
        /// 
        ///  
        public int PageNumber
        { 
            get
            {
                return _pageNumber;
            } 
        }
 
        private int                           _pageNumber   = 0; 
        private XpsWritingProgressChangeLevel _writingLevel = XpsWritingProgressChangeLevel.None;
    } 

    /// 
    ///
    ///  
    public class XpsSerializationPrintTicketRequiredEventArgs :
                 EventArgs 
    { 
        /// 
        /// 
        /// 
        public
        XpsSerializationPrintTicketRequiredEventArgs(
            PrintTicketLevel printTicketLevel, 
            int              sequence
            ) 
        { 
            _level          = printTicketLevel;
            _sequence       = sequence; 
            _printTicket    = null;
            _modified       = false;
        }
 
        /// 
        /// 
        ///  
        public
        PrintTicket 
        PrintTicket
        {
            set
            { 
                _printTicket = value;
            } 
 
            get
            { 
                return _printTicket;
            }
        }
 
        /// 
        /// 
        ///  
        public
        PrintTicketLevel 
        PrintTicketLevel
        {
            get
            { 
                return _level;
            } 
        } 

        internal 
        bool
        Modified
        {
            set 
            {
                _modified = value; 
            } 

            get 
            {
                return _modified;
            }
        } 

 
        ///  
        ///
        ///  
        public
        int
        Sequence
        { 
            get
            { 
                return _sequence; 
            }
        } 

        private
        int                 _sequence;
 
        private
        bool                _modified; 
 
        private
        PrintTicket         _printTicket; 

        private
        PrintTicketLevel    _level;
    }; 

    ///  
    /// 
    /// 
    public enum PrintTicketLevel 
    {
        /// 
        ///
        ///  
        None                             = 0,
        ///  
        /// 
        /// 
        FixedDocumentSequencePrintTicket = 1, 
        /// 
        ///
        /// 
        FixedDocumentPrintTicket         = 2, 
        /// 
        /// 
        ///  
        FixedPagePrintTicket             = 3
    }; 


    /// 
    /// 
    /// 
    public enum XpsWritingProgressChangeLevel 
    { 
        /// 
        /// 
        /// 
        None                                 = 0,
        /// 
        /// 
        /// 
        FixedDocumentSequenceWritingProgress = 1, 
        ///  
        ///
        ///  
        FixedDocumentWritingProgress         = 2,
        /// 
        ///
        ///  
        FixedPageWritingProgress             = 3
    }; 
 

    internal enum BatchOperationType 
    {
        batchWrite  = 1,
        batchCommit = 2
    }; 

    internal class BatchOperationWorkItem 
    { 
        public
        BatchOperationWorkItem( 
            BatchOperationType  type,
            Object              serializedObject
            )
        { 
            this._type             = type;
            this._serializedObject = serializedObject; 
        } 

        public 
        BatchOperationType
        OperationType
        {
            get 
            {
                return _type; 
            } 
        }
 
        public
        Object
        SerializedObject
        { 
            get
            { 
                return _serializedObject; 
            }
        } 

        private
        BatchOperationType  _type;
        Object              _serializedObject; 
    };
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK