//----------------------------------------------------------------------------- // // Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"). // You may not use this file except in compliance with the License. // A copy of the License is located at // // http://aws.amazon.com/apache2.0 // // or in the "license" file accompanying this file. This file is distributed // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either // express or implied. See the License for the specific language governing // permissions and limitations under the License. // //----------------------------------------------------------------------------- #if NET45 using Amazon.XRay.Recorder.AutoInstrumentation.Utils; using System; using System.Data.Common; using System.Data.Entity.Infrastructure.Interception; namespace Amazon.XRay.Recorder.AutoInstrumentation { /// /// Entity Framework handler for tracing Sql query through EF 6 /// public class EntityFrameworkHandler : IDbCommandInterceptor { /// /// Trace before executing non query command. /// /// An instance of . /// An instance of . public void NonQueryExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing non query command. /// /// An instance of . /// An instance of . public void NonQueryExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } /// /// Trace before executing reader command. /// /// An instance of . /// An instance of . public void ReaderExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing reader command. /// /// An instance of . /// An instance of . public void ReaderExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } /// /// Trace before executing scalar command. /// /// An instance of . /// An instance of . public void ScalarExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing scalar command. /// /// An instance of . /// An instance of . public void ScalarExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } private void OnCommandStart(DbCommand command) { SqlRequestUtil.BeginSubsegment(command); SqlRequestUtil.ProcessCommand(command); } private void OnCommandStop(Exception exception) { if (exception != null) { SqlRequestUtil.ProcessException(exception); } SqlRequestUtil.EndSubsegment(); } } } #endif