Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Data / Microsoft / SqlServer / Server / sqlcontext.cs / 1 / 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;
#if WINFSInternalOnly
internal
#else
public
#endif
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;
#if WINFSInternalOnly
internal
#else
public
#endif
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
- XmlDataSourceView.cs
- ArgumentOutOfRangeException.cs
- DbParameterHelper.cs
- ProfessionalColors.cs
- XmlWriterSettings.cs
- COM2IDispatchConverter.cs
- IgnoreFlushAndCloseStream.cs
- PasswordPropertyTextAttribute.cs
- Rotation3DKeyFrameCollection.cs
- HtmlControlPersistable.cs
- ResXFileRef.cs
- UiaCoreProviderApi.cs
- MDIWindowDialog.cs
- SBCSCodePageEncoding.cs
- OdbcReferenceCollection.cs
- BitFlagsGenerator.cs
- PersistChildrenAttribute.cs
- DBSchemaTable.cs
- SmtpFailedRecipientsException.cs
- TableLayoutStyle.cs
- AnnouncementService.cs
- SiteMapPathDesigner.cs
- MediaSystem.cs
- ProfileInfo.cs
- FileCodeGroup.cs
- ColumnReorderedEventArgs.cs
- HashSetDebugView.cs
- FileUpload.cs
- ListView.cs
- BitmapEffectDrawingContent.cs
- PackUriHelper.cs
- _NegotiateClient.cs
- Point3DValueSerializer.cs
- LambdaExpression.cs
- XPathSelectionIterator.cs
- ButtonBaseAdapter.cs
- AlternationConverter.cs
- RefExpr.cs
- CDSCollectionETWBCLProvider.cs
- XmlTextEncoder.cs
- MetabaseReader.cs
- EmptyEnumerator.cs
- DataServiceQueryContinuation.cs
- BindingNavigator.cs
- ObjectListFieldsPage.cs
- ThicknessConverter.cs
- PrintDocument.cs
- CustomCredentialPolicy.cs
- XpsPackagingException.cs
- DataRowCollection.cs
- SQLDateTime.cs
- UIPermission.cs
- ZipFileInfo.cs
- DynamicUpdateCommand.cs
- XmlHierarchyData.cs
- EmptyReadOnlyDictionaryInternal.cs
- StrokeDescriptor.cs
- BrushMappingModeValidation.cs
- TextDecorationCollectionConverter.cs
- ContractInferenceHelper.cs
- DependencyPropertyAttribute.cs
- CalendarKeyboardHelper.cs
- IdentityReference.cs
- SessionStateItemCollection.cs
- MouseButton.cs
- NavigationProperty.cs
- EventLog.cs
- PartManifestEntry.cs
- Ipv6Element.cs
- MarkedHighlightComponent.cs
- SoundPlayerAction.cs
- GeneralTransform3DGroup.cs
- CommandManager.cs
- FirstMatchCodeGroup.cs
- MethodResolver.cs
- SingleStorage.cs
- WindowsScrollBarBits.cs
- ApplicationSecurityInfo.cs
- SafeLibraryHandle.cs
- HttpListenerContext.cs
- DispatcherHooks.cs
- XmlBindingWorker.cs
- DrawingContextWalker.cs
- MouseEvent.cs
- EmptyControlCollection.cs
- XmlReaderSettings.cs
- TypeListConverter.cs
- Part.cs
- ArgumentReference.cs
- OrderPreservingPipeliningSpoolingTask.cs
- CryptoApi.cs
- IdleTimeoutMonitor.cs
- TransformedBitmap.cs
- AssemblyHash.cs
- RecordManager.cs
- FatalException.cs
- StateChangeEvent.cs
- Substitution.cs
- NameTable.cs
- DataSourceXmlAttributeAttribute.cs