//----------------------------------------------------------------------------- // // 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. // //----------------------------------------------------------------------------- using System; using System.Data.Common; using System.Data.Entity.Infrastructure.Interception; namespace Amazon.XRay.Recorder.Handlers.EntityFramework { /// /// Class to intercept SQL query through EF 6 for .NET framework. /// public class EFInterceptor : IDbCommandInterceptor { private readonly bool? _collectSqlQueriesOverride; /// /// Initializes a new instance of the class. /// /// public EFInterceptor(bool? collectSqlQueries = null) : base() { _collectSqlQueriesOverride = collectSqlQueries; } /// /// Trace before executing non query. /// /// Instance of . /// Instance of . public void NonQueryExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing non query. /// /// Instance of . /// Instance of . public void NonQueryExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } /// /// Trace before executing reader. /// /// Instance of . /// Instance of . public void ReaderExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing reader. /// /// Instance of . /// Instance of . public void ReaderExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } /// /// Trace before executing scalar. /// /// Instance of . /// Instance of . public void ScalarExecuting(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStart(command); } /// /// Trace after executing scalar. /// /// Instance of . /// Instance of . public void ScalarExecuted(DbCommand command, DbCommandInterceptionContext interceptionContext) { OnCommandStop(interceptionContext.Exception); } private void OnCommandStart(DbCommand command) { EFUtil.ProcessBeginCommand(command, _collectSqlQueriesOverride); } private static void OnCommandStop(Exception exception) { if (exception != null) { EFUtil.ProcessCommandError(exception); } else { EFUtil.ProcessEndCommand(); } } } }