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
- ProfileSettings.cs
- ToolboxItem.cs
- TrackingMemoryStream.cs
- EntityDataReader.cs
- DateTimeFormat.cs
- PolyLineSegmentFigureLogic.cs
- SoapTransportImporter.cs
- VisualBasic.cs
- HtmlString.cs
- XmlNamedNodeMap.cs
- TextSelectionHighlightLayer.cs
- Parser.cs
- TextDecorationCollection.cs
- ApplicationSettingsBase.cs
- PermissionSetTriple.cs
- URIFormatException.cs
- BasicCellRelation.cs
- QilNode.cs
- FormsAuthenticationModule.cs
- COM2ExtendedTypeConverter.cs
- SqlDataReaderSmi.cs
- XmlSerializationWriter.cs
- Schema.cs
- OleDbParameter.cs
- ListItem.cs
- PowerEase.cs
- AsyncOperation.cs
- CheckPair.cs
- AutomationPatternInfo.cs
- CorrelationManager.cs
- ArglessEventHandlerProxy.cs
- XmlNamespaceDeclarationsAttribute.cs
- ClusterRegistryConfigurationProvider.cs
- DoWhile.cs
- HttpCapabilitiesEvaluator.cs
- ArgumentNullException.cs
- Cursors.cs
- X509Certificate2.cs
- DrawingCollection.cs
- GetPageCompletedEventArgs.cs
- WindowsRegion.cs
- XmlSchemaProviderAttribute.cs
- DataControlImageButton.cs
- SemanticAnalyzer.cs
- LinkButton.cs
- XmlNavigatorStack.cs
- CollectionViewGroup.cs
- DefaultSerializationProviderAttribute.cs
- QueryRelOp.cs
- ProgressBarRenderer.cs
- LicenseException.cs
- HatchBrush.cs
- EastAsianLunisolarCalendar.cs
- SchemaType.cs
- ObsoleteAttribute.cs
- GroupBox.cs
- MetaChildrenColumn.cs
- CustomAttributeBuilder.cs
- DataGridViewCellStyle.cs
- ComponentChangedEvent.cs
- SecurityKeyIdentifier.cs
- AccessDataSource.cs
- BitmapScalingModeValidation.cs
- XmlSiteMapProvider.cs
- XmlDocumentSerializer.cs
- ClientSponsor.cs
- DbConnectionPoolOptions.cs
- SwitchAttribute.cs
- ACE.cs
- MemoryRecordBuffer.cs
- InputBindingCollection.cs
- IndexedEnumerable.cs
- GlobalItem.cs
- KnownTypes.cs
- XmlSignatureManifest.cs
- XmlRootAttribute.cs
- FormViewDeletedEventArgs.cs
- ReadOnlyNameValueCollection.cs
- XmlCharCheckingReader.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- QilScopedVisitor.cs
- WebPartZoneCollection.cs
- CheckableControlBaseAdapter.cs
- Thread.cs
- ConfigXmlText.cs
- Document.cs
- LabelInfo.cs
- ComNativeDescriptor.cs
- DataGridViewMethods.cs
- XmlSchemaSubstitutionGroup.cs
- ParameterCollection.cs
- XmlBindingWorker.cs
- RijndaelManagedTransform.cs
- CodeTryCatchFinallyStatement.cs
- DataGridViewRowsRemovedEventArgs.cs
- XmlSchemaSimpleContent.cs
- SoapExtensionReflector.cs
- DataGridItem.cs
- OpenTypeLayoutCache.cs
- MessageQuerySet.cs