Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / SourceLineInfo.cs / 1305376 / SourceLineInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Diagnostics; namespace System.Xml.Xsl { [DebuggerDisplay("({Line},{Pos})")] internal struct Location { private ulong value; public int Line { get { return (int)(this.value >> 32); } } public int Pos { get { return (int)(this.value ); } } public Location(int line, int pos) { this.value = (((ulong)line) << 32) | (uint)pos; } public Location(Location that) { this.value = that.value; } public bool LessOrEqual(Location that) { return this.value <= that.value; } } [DebuggerDisplay("{Uri} [{StartLine},{StartPos} -- {EndLine},{EndPos}]")] internal class SourceLineInfo : ISourceLineInfo { protected string uriString; protected Location start; protected Location end; public SourceLineInfo(string uriString, int startLine, int startPos, int endLine, int endPos) : this(uriString, new Location(startLine, startPos), new Location(endLine, endPos)) {} public SourceLineInfo(string uriString, Location start, Location end) { this.uriString = uriString; this.start = start; this.end = end; Validate(this); } public string Uri { get { return this.uriString ; } } public int StartLine { get { return this.start.Line; } } public int StartPos { get { return this.start.Pos ; } } public int EndLine { get { return this.end.Line ; } } public int EndPos { get { return this.end.Pos ; } } public Location End { get { return this.end ; } } public Location Start { get { return this.start ; } } ////// Magic number 0xfeefee is used in PDB to denote a section of IL that does not map to any user code. /// When VS debugger steps into IL marked with 0xfeefee, it will continue the step until it reaches /// some user code. /// protected const int NoSourceMagicNumber = 0xfeefee; public static SourceLineInfo NoSource = new SourceLineInfo(string.Empty, NoSourceMagicNumber, 0, NoSourceMagicNumber, 0); public bool IsNoSource { get { return this.StartLine == NoSourceMagicNumber; } } [Conditional("DEBUG")] public static void Validate(ISourceLineInfo lineInfo) { if (lineInfo.Start.Line == 0 || lineInfo.Start.Line == NoSourceMagicNumber) { Debug.Assert(lineInfo.Start.Line == lineInfo.End.Line); Debug.Assert(lineInfo.Start.Pos == 0 && lineInfo.End.Pos == 0); } else { Debug.Assert(0 < lineInfo.Start.Line && 0 < lineInfo.Start.Pos, "0 < start"); Debug.Assert(0 < lineInfo.End.Line && 0 < lineInfo.End.Pos , "0 < end"); Debug.Assert(lineInfo.Start.LessOrEqual(lineInfo.End), "start <= end"); } } // Returns file path for local and network URIs. Used for PDB generating and error reporting. public static string GetFileName(string uriString) { Debug.Assert(uriString != null); Uri uri; if (uriString.Length != 0 && System.Uri.TryCreate(uriString, UriKind.Absolute, out uri) && uri.IsFile ) { return uri.LocalPath; } return uriString; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Diagnostics; namespace System.Xml.Xsl { [DebuggerDisplay("({Line},{Pos})")] internal struct Location { private ulong value; public int Line { get { return (int)(this.value >> 32); } } public int Pos { get { return (int)(this.value ); } } public Location(int line, int pos) { this.value = (((ulong)line) << 32) | (uint)pos; } public Location(Location that) { this.value = that.value; } public bool LessOrEqual(Location that) { return this.value <= that.value; } } [DebuggerDisplay("{Uri} [{StartLine},{StartPos} -- {EndLine},{EndPos}]")] internal class SourceLineInfo : ISourceLineInfo { protected string uriString; protected Location start; protected Location end; public SourceLineInfo(string uriString, int startLine, int startPos, int endLine, int endPos) : this(uriString, new Location(startLine, startPos), new Location(endLine, endPos)) {} public SourceLineInfo(string uriString, Location start, Location end) { this.uriString = uriString; this.start = start; this.end = end; Validate(this); } public string Uri { get { return this.uriString ; } } public int StartLine { get { return this.start.Line; } } public int StartPos { get { return this.start.Pos ; } } public int EndLine { get { return this.end.Line ; } } public int EndPos { get { return this.end.Pos ; } } public Location End { get { return this.end ; } } public Location Start { get { return this.start ; } } ////// Magic number 0xfeefee is used in PDB to denote a section of IL that does not map to any user code. /// When VS debugger steps into IL marked with 0xfeefee, it will continue the step until it reaches /// some user code. /// protected const int NoSourceMagicNumber = 0xfeefee; public static SourceLineInfo NoSource = new SourceLineInfo(string.Empty, NoSourceMagicNumber, 0, NoSourceMagicNumber, 0); public bool IsNoSource { get { return this.StartLine == NoSourceMagicNumber; } } [Conditional("DEBUG")] public static void Validate(ISourceLineInfo lineInfo) { if (lineInfo.Start.Line == 0 || lineInfo.Start.Line == NoSourceMagicNumber) { Debug.Assert(lineInfo.Start.Line == lineInfo.End.Line); Debug.Assert(lineInfo.Start.Pos == 0 && lineInfo.End.Pos == 0); } else { Debug.Assert(0 < lineInfo.Start.Line && 0 < lineInfo.Start.Pos, "0 < start"); Debug.Assert(0 < lineInfo.End.Line && 0 < lineInfo.End.Pos , "0 < end"); Debug.Assert(lineInfo.Start.LessOrEqual(lineInfo.End), "start <= end"); } } // Returns file path for local and network URIs. Used for PDB generating and error reporting. public static string GetFileName(string uriString) { Debug.Assert(uriString != null); Uri uri; if (uriString.Length != 0 && System.Uri.TryCreate(uriString, UriKind.Absolute, out uri) && uri.IsFile ) { return uri.LocalPath; } return uriString; } } } // 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
- DataGrid.cs
- HandlerBase.cs
- Rect3DConverter.cs
- LineGeometry.cs
- SafeCryptoHandles.cs
- Profiler.cs
- Stream.cs
- Item.cs
- FormsAuthenticationConfiguration.cs
- LicenseManager.cs
- XsltLibrary.cs
- Propagator.JoinPropagator.SubstitutingCloneVisitor.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- XmlMessageFormatter.cs
- XmlArrayItemAttribute.cs
- AssemblyInfo.cs
- AppDomainAttributes.cs
- CompiledRegexRunnerFactory.cs
- COM2ExtendedUITypeEditor.cs
- NameValueSectionHandler.cs
- JournalNavigationScope.cs
- ComponentResourceKeyConverter.cs
- BinaryObjectWriter.cs
- Menu.cs
- GetUserPreferenceRequest.cs
- ReachBasicContext.cs
- Rotation3D.cs
- CodeGeneratorOptions.cs
- HwndHostAutomationPeer.cs
- Utils.cs
- MemoryFailPoint.cs
- EdgeModeValidation.cs
- TimelineCollection.cs
- NameValuePermission.cs
- CacheVirtualItemsEvent.cs
- CreateInstanceBinder.cs
- ImageCodecInfoPrivate.cs
- ResXResourceReader.cs
- DiscoveryClientChannelBase.cs
- ValidatingReaderNodeData.cs
- ExchangeUtilities.cs
- SystemDiagnosticsSection.cs
- TextServicesHost.cs
- UndoManager.cs
- PassportIdentity.cs
- RijndaelManaged.cs
- ValidationSummary.cs
- TextTreeInsertElementUndoUnit.cs
- TaskScheduler.cs
- PopupEventArgs.cs
- Object.cs
- Point3DConverter.cs
- TreeNodeCollection.cs
- ContourSegment.cs
- ConsoleKeyInfo.cs
- DataReceivedEventArgs.cs
- QilCloneVisitor.cs
- OperandQuery.cs
- DecimalKeyFrameCollection.cs
- UserControlBuildProvider.cs
- SpotLight.cs
- ProfileBuildProvider.cs
- ValueProviderWrapper.cs
- XmlChildNodes.cs
- ReadOnlyMetadataCollection.cs
- PeerApplicationLaunchInfo.cs
- Menu.cs
- WebResponse.cs
- ContextStack.cs
- CommandExpr.cs
- _NegotiateClient.cs
- RegexMatch.cs
- UrlPath.cs
- DoubleAnimation.cs
- QueryOptionExpression.cs
- SQLDouble.cs
- FontUnitConverter.cs
- RecordsAffectedEventArgs.cs
- GetCardDetailsRequest.cs
- MenuRenderer.cs
- WebPartConnectionsConnectVerb.cs
- RemoteWebConfigurationHostStream.cs
- IntermediatePolicyValidator.cs
- ScriptHandlerFactory.cs
- OrderedDictionary.cs
- SecureUICommand.cs
- StringUtil.cs
- PackagePartCollection.cs
- TimeoutException.cs
- InstanceData.cs
- Cursor.cs
- ProxyWebPartConnectionCollection.cs
- EmptyControlCollection.cs
- Queue.cs
- LicenseManager.cs
- EntityWrapperFactory.cs
- MulticastOption.cs
- CodeMemberMethod.cs
- SqlUDTStorage.cs
- XmlSchemaValidationException.cs