Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / Microsoft / SqlServer / Server / sqlcontext.cs / 1305376 / sqlcontext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //daltodov //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Diagnostics; using System.Security.Principal; public sealed class SqlContext { // There are no publicly visible instance methods/properties on SqlContext. // With the current design, the user should never get an actual instance of // this class. Instances are only used internally to hold owned objects // such as SqlPipe and SqlTriggerContext. private SmiContext _smiContext; private SqlPipe _pipe; private SqlTriggerContext _triggerContext; private SqlContext( SmiContext smiContext ) { _smiContext = smiContext; _smiContext.OutOfScope += new EventHandler(OnOutOfScope); } // // Public API // public static bool IsAvailable { get { bool result = InOutOfProcHelper.InProc; return result; } } // Get the SqlPipe (if any) for the current scope. public static SqlPipe Pipe { get { return CurrentContext.InstancePipe; } } // Get the SqlTriggerContext (if any) for the current scope. public static SqlTriggerContext TriggerContext { get { return CurrentContext.InstanceTriggerContext; } } public static WindowsIdentity WindowsIdentity{ get { return CurrentContext.InstanceWindowsIdentity; } } // // Internal class methods // // CurrentContext should be the *only* way to get to an instance of SqlContext. private static SqlContext CurrentContext { get { SmiContext smiContext = SmiContextFactory.Instance.GetCurrentContext(); SqlContext result = (SqlContext)smiContext.GetContextValue( (int)SmiContextFactory.ContextKey.SqlContext ); if ( null == result ) { result = new SqlContext( smiContext ); smiContext.SetContextValue( (int)SmiContextFactory.ContextKey.SqlContext, result ); } return result; } } // // Internal instance methods // private SqlPipe InstancePipe { get { if ( null == _pipe && _smiContext.HasContextPipe ) { _pipe = new SqlPipe( _smiContext ); } Debug.Assert( null == _pipe || _smiContext.HasContextPipe, "Caching logic error for contained pipe!" ); return _pipe; } } private SqlTriggerContext InstanceTriggerContext { get { if ( null == _triggerContext ) { bool[] columnsUpdated; TriggerAction triggerAction; SqlXml eventInstanceData; SmiEventSink_Default eventSink = new SmiEventSink_Default(); _smiContext.GetTriggerInfo(eventSink, out columnsUpdated, out triggerAction, out eventInstanceData); eventSink.ProcessMessagesAndThrow(); if (TriggerAction.Invalid != triggerAction) { _triggerContext = new SqlTriggerContext( triggerAction, columnsUpdated, eventInstanceData ); } } return _triggerContext; } } private WindowsIdentity InstanceWindowsIdentity { get { return _smiContext.WindowsIdentity; } } // Called whenever the context goes out of scope, we need to make // sure that we release internal state, such as the pipe's record buffer private void OnOutOfScope( object s, EventArgs e ) { if (Bid.AdvancedOn) { Bid.Trace( "SqlContext is out of scope\n" ); } if ( null != _pipe ) { _pipe.OnOutOfScope(); } _triggerContext = null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //daltodov //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Diagnostics; using System.Security.Principal; public sealed class SqlContext { // There are no publicly visible instance methods/properties on SqlContext. // With the current design, the user should never get an actual instance of // this class. Instances are only used internally to hold owned objects // such as SqlPipe and SqlTriggerContext. private SmiContext _smiContext; private SqlPipe _pipe; private SqlTriggerContext _triggerContext; private SqlContext( SmiContext smiContext ) { _smiContext = smiContext; _smiContext.OutOfScope += new EventHandler(OnOutOfScope); } // // Public API // public static bool IsAvailable { get { bool result = InOutOfProcHelper.InProc; return result; } } // Get the SqlPipe (if any) for the current scope. public static SqlPipe Pipe { get { return CurrentContext.InstancePipe; } } // Get the SqlTriggerContext (if any) for the current scope. public static SqlTriggerContext TriggerContext { get { return CurrentContext.InstanceTriggerContext; } } public static WindowsIdentity WindowsIdentity{ get { return CurrentContext.InstanceWindowsIdentity; } } // // Internal class methods // // CurrentContext should be the *only* way to get to an instance of SqlContext. private static SqlContext CurrentContext { get { SmiContext smiContext = SmiContextFactory.Instance.GetCurrentContext(); SqlContext result = (SqlContext)smiContext.GetContextValue( (int)SmiContextFactory.ContextKey.SqlContext ); if ( null == result ) { result = new SqlContext( smiContext ); smiContext.SetContextValue( (int)SmiContextFactory.ContextKey.SqlContext, result ); } return result; } } // // Internal instance methods // private SqlPipe InstancePipe { get { if ( null == _pipe && _smiContext.HasContextPipe ) { _pipe = new SqlPipe( _smiContext ); } Debug.Assert( null == _pipe || _smiContext.HasContextPipe, "Caching logic error for contained pipe!" ); return _pipe; } } private SqlTriggerContext InstanceTriggerContext { get { if ( null == _triggerContext ) { bool[] columnsUpdated; TriggerAction triggerAction; SqlXml eventInstanceData; SmiEventSink_Default eventSink = new SmiEventSink_Default(); _smiContext.GetTriggerInfo(eventSink, out columnsUpdated, out triggerAction, out eventInstanceData); eventSink.ProcessMessagesAndThrow(); if (TriggerAction.Invalid != triggerAction) { _triggerContext = new SqlTriggerContext( triggerAction, columnsUpdated, eventInstanceData ); } } return _triggerContext; } } private WindowsIdentity InstanceWindowsIdentity { get { return _smiContext.WindowsIdentity; } } // Called whenever the context goes out of scope, we need to make // sure that we release internal state, such as the pipe's record buffer private void OnOutOfScope( object s, EventArgs e ) { if (Bid.AdvancedOn) { Bid.Trace( "SqlContext is out of scope\n" ); } if ( null != _pipe ) { _pipe.OnOutOfScope(); } _triggerContext = null; } } } // 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
- XPathDocumentIterator.cs
- AttributeProviderAttribute.cs
- FixedStringLookup.cs
- TextEditor.cs
- TiffBitmapEncoder.cs
- HandleRef.cs
- ServiceNameElement.cs
- ProtocolElementCollection.cs
- Visual3DCollection.cs
- SecurityTokenSpecification.cs
- CompiledXpathExpr.cs
- ColumnTypeConverter.cs
- VirtualizingPanel.cs
- StylusDownEventArgs.cs
- AtomEntry.cs
- InstanceCompleteException.cs
- ProtectedUri.cs
- FileDialog.cs
- TreeNode.cs
- AuthenticatingEventArgs.cs
- CredentialCache.cs
- SpellerInterop.cs
- MeshGeometry3D.cs
- Validator.cs
- SocketStream.cs
- IgnorePropertiesAttribute.cs
- HtmlInputImage.cs
- XmlCustomFormatter.cs
- MD5Cng.cs
- HtmlInputCheckBox.cs
- ContainsSearchOperator.cs
- TokenizerHelper.cs
- XmlSchemaObject.cs
- SoapAttributeOverrides.cs
- CheckBox.cs
- DynamicAttribute.cs
- DeviceSpecificChoice.cs
- NumberFormatter.cs
- ExpressionVisitor.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- MSG.cs
- DataGridViewSortCompareEventArgs.cs
- WeakReadOnlyCollection.cs
- DataGridViewCellPaintingEventArgs.cs
- ProcessModule.cs
- ConfigurationFileMap.cs
- HMAC.cs
- BatchWriter.cs
- XmlAutoDetectWriter.cs
- HtmlAnchor.cs
- KnownColorTable.cs
- TextTreeRootNode.cs
- CaseInsensitiveHashCodeProvider.cs
- DrawingDrawingContext.cs
- TreeWalker.cs
- ClientSettings.cs
- IdentityValidationException.cs
- BindingsCollection.cs
- RowVisual.cs
- AmbientLight.cs
- SendKeys.cs
- XmlSchemaNotation.cs
- LocationChangedEventArgs.cs
- ActivationServices.cs
- Normalization.cs
- MediaSystem.cs
- RemotingException.cs
- Random.cs
- CodeDirectoryCompiler.cs
- ComUdtElement.cs
- ObjectDataSourceMethodEventArgs.cs
- WebPartCloseVerb.cs
- JavaScriptObjectDeserializer.cs
- ImageDrawing.cs
- FormViewUpdateEventArgs.cs
- SchemaCompiler.cs
- MessageSmuggler.cs
- messageonlyhwndwrapper.cs
- WebPartConnectionsCancelEventArgs.cs
- uribuilder.cs
- WebPartPersonalization.cs
- ValidationPropertyAttribute.cs
- Repeater.cs
- CatalogPartCollection.cs
- DSASignatureDeformatter.cs
- CollectionConverter.cs
- GAC.cs
- HwndSourceKeyboardInputSite.cs
- DecimalConverter.cs
- HttpDictionary.cs
- WsdlBuildProvider.cs
- VerificationException.cs
- PathData.cs
- ObjectDataSourceMethodEditor.cs
- selecteditemcollection.cs
- PreDigestedSignedInfo.cs
- recordstatescratchpad.cs
- ConfigurationStrings.cs
- TwoPhaseCommit.cs
- Trustee.cs