Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / PrintConfig / PrtCap_Reader.cs / 1 / PrtCap_Reader.cs
/*++ Copyright (C) 2003 Microsoft Corporation All rights reserved. Module Name: PrtCap_Reader.cs Abstract: Definition and implementation of the private XmlPrintCapReader class. Author: [....] ([....]) 06/22/2003 --*/ using System; using System.Xml; using System.IO; using System.Diagnostics; using System.Globalization; using System.Printing; using MS.Internal.Printing.Configuration; #pragma warning disable 1634, 1691 // Allows suppression of certain PreSharp messages namespace MS.Internal.Printing.Configuration { ////// Reader class of XML PrintCapabilities /// internal class XmlPrintCapReader { #region Constructors ////// Instantiates a reader object for the given XML PrintCapabilities /// ///Constructor verifies the root element is valid ///thrown if XML PrintCapabilities is not well-formed public XmlPrintCapReader(Stream xmlStream) { // Internally the XML PrintCapabilities reader uses XmlTextReader _xmlReader = new XmlTextReader(xmlStream); // We need namespace support from the reader. _xmlReader.Namespaces = true; // Don't resolve external resources. _xmlReader.XmlResolver = null; // Verify root element isin our standard namespace if ((_xmlReader.MoveToContent() != XmlNodeType.Element) || (_xmlReader.LocalName != PrintSchemaTags.Framework.PrintCapRoot) || (_xmlReader.NamespaceURI != PrintSchemaNamespaces.Framework)) { throw NewPrintCapFormatException(String.Format(CultureInfo.CurrentCulture, PTUtility.GetTextFromResource("FormatException.InvalidRootElement"), _xmlReader.NamespaceURI, _xmlReader.LocalName)); } // Verify the XML PrintCapabilities version is supported // For XML attribute without a prefix (e.g. <... name="prn:PageMediaSize">), // even though the XML document has default namespace defined as our standard // Print Schema framework namespace, the XML atribute still has NULL namespaceURI. // It will only have the correct namespaceURI when a prefix is used. This doesn't // apply to XML element, whose namespaceURI works fine with default namespace. // GetAttribute doesn't move the reader cursor away from the current element string version = _xmlReader.GetAttribute(PrintSchemaTags.Framework.RootVersionAttr, PrintSchemaNamespaces.FrameworkAttrForXmlReader); if (version == null) { throw NewPrintCapFormatException(String.Format(CultureInfo.CurrentCulture, PTUtility.GetTextFromResource("FormatException.RootMissingAttribute"), PrintSchemaTags.Framework.RootVersionAttr)); } // Convert string to number to verify decimal versionNum; try { versionNum = XmlConvertHelper.ConvertStringToDecimal(version); } catch (FormatException e) { throw NewPrintCapFormatException(String.Format(CultureInfo.CurrentCulture, PTUtility.GetTextFromResource("FormatException.RootInvalidAttribute"), PrintSchemaTags.Framework.RootVersionAttr, version), e); } if (versionNum != PrintSchemaTags.Framework.SchemaVersion) { throw NewPrintCapFormatException(String.Format(CultureInfo.CurrentCulture, PTUtility.GetTextFromResource("FormatException.VersionNotSupported"), versionNum)); } // Reset internal states to be ready for client's reading of the PrintCapabilities XML ResetCurrentElementState(); } #endregion Constructors #region Public Methods /// /// Moves the reader cursor to the next Print Schema Framework element at the given depth. /// (The element could be Feature, ParameterDefinition, Option, ScoredProperty or Property) /// /// client-requested traversing depth /// flags to indicate client interested node types ///True if next Framework element is ready to read. /// False if no more Framework element at the given depth. ///XML is not well-formed. public bool MoveToNextSchemaElement(int depth, PrintSchemaNodeTypes typeFilterFlags) { bool foundElement = false; while (!foundElement && _xmlReader.Read()) { // Read() throws XmlException if error occurred while parsing the XML. // If we hit an end-element tag at higher depth, we know there are no more // Framework elements at the client-requested depth. if ((_xmlReader.NodeType == XmlNodeType.EndElement) && (_xmlReader.Depth < depth)) { break; } // Stop at the next XML start element at the client-requested depth // and in the standard Framework element namespace. if ((_xmlReader.NodeType != XmlNodeType.Element) || (_xmlReader.Depth != depth) || (_xmlReader.NamespaceURI != PrintSchemaNamespaces.Framework)) { continue; } // Find a candidate, so reset internal states to be ready for its parsing. ResetCurrentElementState(); foundElement = true; _currentElementDepth = depth; _currentElementIsEmpty = _xmlReader.IsEmptyElement; // Map element name to Schema node type int enumValue = PrintSchemaMapper.SchemaNameToEnumValueWithMap( PrintSchemaTags.Framework.NodeTypeMapTable, _xmlReader.LocalName); if (enumValue > 0) { _currentElementNodeType = (PrintSchemaNodeTypes)enumValue; } else { #if _DEBUG Trace.WriteLine("-Warning- skip unknown element '" + _xmlReader.LocalName + "' at line " + _xmlReader.LineNumber + ", position " + _xmlReader.LinePosition); #endif foundElement = false; } if (foundElement) { // Check whether or not the found element type is what client is interested in. // If not, we will skip this element. if ((CurrentElementNodeType & typeFilterFlags) == 0) { #if _DEBUG Trace.WriteLine("-Warning- skip not-wanted element '" + _xmlReader.LocalName + "' at line " + _xmlReader.LineNumber + ", position " + _xmlReader.LinePosition); #endif foundElement = false; } } if (foundElement) { // The element is what the client wants. if (CurrentElementNodeType != PrintSchemaNodeTypes.Value) { // Element other thanshould have the "name" XML attribute. // Reader will verify the "name" XML attribute has a QName value that // is in our standard Keyword namespace. string QName = _xmlReader.GetAttribute(PrintSchemaTags.Framework.NameAttr, PrintSchemaNamespaces.FrameworkAttrForXmlReader); // Only
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Bits.cs
- Camera.cs
- EUCJPEncoding.cs
- SamlAssertionKeyIdentifierClause.cs
- MappingMetadataHelper.cs
- CodeAssignStatement.cs
- Baml2006ReaderContext.cs
- TypeLibraryHelper.cs
- ReadOnlyAttribute.cs
- TextBox.cs
- GeometryGroup.cs
- BaseDataBoundControl.cs
- LayoutEngine.cs
- DescriptionAttribute.cs
- TaskForm.cs
- TypedTableBase.cs
- WindowsFormsLinkLabel.cs
- ProfileModule.cs
- MarkedHighlightComponent.cs
- XXXInfos.cs
- SecurityElement.cs
- FontInfo.cs
- SamlAuthorizationDecisionStatement.cs
- AccessDataSourceView.cs
- StyleCollection.cs
- HwndAppCommandInputProvider.cs
- HostedHttpTransportManager.cs
- Graphics.cs
- ImageList.cs
- FrameworkElementAutomationPeer.cs
- PackageDocument.cs
- X509SecurityTokenAuthenticator.cs
- RegistrySecurity.cs
- BrowserCapabilitiesFactory.cs
- SafeUserTokenHandle.cs
- ConfigXmlAttribute.cs
- NotifyInputEventArgs.cs
- UdpRetransmissionSettings.cs
- ActivityLocationReferenceEnvironment.cs
- BitmapPalettes.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- StyleHelper.cs
- Pen.cs
- CompilationAssemblyInstallComponent.cs
- NodeFunctions.cs
- GraphicsPathIterator.cs
- NativeMethods.cs
- MissingFieldException.cs
- BamlResourceDeserializer.cs
- SelfIssuedAuthProofToken.cs
- PartitionedDataSource.cs
- ByteKeyFrameCollection.cs
- RMEnrollmentPage1.cs
- TextControlDesigner.cs
- ConsumerConnectionPointCollection.cs
- cache.cs
- QuadraticBezierSegment.cs
- WindowsIdentity.cs
- RequestSecurityToken.cs
- ManipulationDelta.cs
- TextComposition.cs
- ListItemConverter.cs
- LinqDataSourceUpdateEventArgs.cs
- AppSettingsExpressionBuilder.cs
- OneOfElement.cs
- SafePEFileHandle.cs
- DurableTimerExtension.cs
- HostProtectionPermission.cs
- EdmError.cs
- DataKeyCollection.cs
- RoleGroup.cs
- SocketManager.cs
- WithParamAction.cs
- RightsManagementEncryptionTransform.cs
- TextFragmentEngine.cs
- ReliableChannelListener.cs
- ForeignConstraint.cs
- HtmlElementCollection.cs
- _Events.cs
- FileUpload.cs
- StringComparer.cs
- StagingAreaInputItem.cs
- UnsafeNativeMethods.cs
- HttpServerProtocol.cs
- WeakEventManager.cs
- PlainXmlWriter.cs
- AsyncStreamReader.cs
- CompilerCollection.cs
- ErrorFormatter.cs
- CreateDataSourceDialog.cs
- AVElementHelper.cs
- HtmlCalendarAdapter.cs
- ActivityLocationReferenceEnvironment.cs
- FacetChecker.cs
- UnmanagedMarshal.cs
- DataGridViewEditingControlShowingEventArgs.cs
- TextFormatterContext.cs
- SpeechEvent.cs
- Int64Storage.cs
- ImageClickEventArgs.cs