标签: interception

如何在GUI运行时拦截Matlab中的击键

你知道如何在Matlab gui运行时将键盘笔划读入Matlab吗?(即,不使用"输入"功能,它向命令窗口发送提示并需要您按返回).

我们希望尽可能避免使用mex函数.

keyboard matlab user-interface interception

4
推荐指数
1
解决办法
1万
查看次数

有没有办法从属性中测量C#函数执行时间?

我正在寻找为系统中的某些重要函数调用发布自定义性能计数器.我想在生产环境中持续监控这些性能计数器.

有没有办法让我用自定义属性标记某些函数,该属性可以测量执行给定函数所花费的时间?我想避免注入自定义代码,从而用监控代码污染与业务相关的功能.

属性中的代码如何跟踪函数执行所花费的时间?

请不要建议使用Profiler.我不打算调试或基准性能.但只是想在全天候生产中跟踪它.

c# aop custom-attributes interception

4
推荐指数
1
解决办法
1676
查看次数

拦截方法调用

有没有一种方法可以拦截一些方法调用而不需要在方法本身周围进行任何代码更改?

我不需要在运行时注入任何自定义行为,只需将自定义性能日志记录添加到现有项目.

c# reflection interception

4
推荐指数
2
解决办法
5411
查看次数

使用StructureMap拦截3.*

我使用Castle.DynamicProxy和StructureMap 2.6 API进行了拦截,但现在无法使用StructureMap 3.0进行拦截.谁能帮我找到更新的文档甚至演示?我发现的一切似乎都与旧版本有关.例如StructureMap.Interceptors.TypeInterceptor接口等.

dependency-injection ioc-container inversion-of-control interception structuremap3

3
推荐指数
1
解决办法
2431
查看次数

温莎城堡拦截器

我试图拦截命令处理程序上对Handle方法的调用。当我显式注册每个命令处理程序时,此过程运行良好,问题是我对命令处理程序和拦截器的常规注册不正确。

例外:

Castle.Windsor.dll中发生类型'Castle.MicroKernel.ComponentActivator.ComponentActivatorException'的异常,但未在用户代码中处理

附加信息:ComponentActivator:无法代理TempSearch.Command.Data.CommandHandlers.AddTempsJobCommandHandler

似乎无法找到拦截器,因为它说某些组件配置错误:

“此组件的某些依赖项无法静态解析。\ r \ n'TempSearch.Command.Data.CommandHandlers.AddTempsCandidateAvailabilityCommandHandler'正在等待以下依赖项: )(您没有忘记注册它或名称拼写错误吗?)如果该组件已注册并且通过类型覆盖,请确保它没有显式分配非默认名称,或者通过名称覆盖相关性。 n“

界面:

public interface ICommandHandler<TCommand>
{
    void Handle(TCommand command);
}
Run Code Online (Sandbox Code Playgroud)

示例命令处理程序:

public class AddTempsCandidateAvailabilityCommandHandler 
    : ICommandHandler<TempsCandidateAvailability>
{
    private readonly IDbConnection connection;

    public AddTempsCandidateAvailabilityCommandHandler(
        IDbConnection connection)
    {
        this.connection = connection;
    }

    public void Handle(TempsCandidateAvailability command)
    {
        // ...
    }
}
Run Code Online (Sandbox Code Playgroud)

注册:

public void Install(IWindsorContainer container, IConfigurationStore store)
{
    container.Register(
        Component.For<IDbConnection>()
            .UsingFactoryMethod(() => ConnectionHelper.GetOpenDbConnection(
                Connection.DatabaseName.ReedOnline))
            .LifestylePerWebRequest());

    container.Register(
        Classes
            .FromAssemblyContaining<EcruiterCommands>()
            .Where(t => t.Name.EndsWith("Commands"))
            .WithService
            .AllInterfaces().LifestylePerWebRequest());

    container.Register(
        Classes
            .FromAssemblyContaining<EcruiterCommands>()
            .Where(t => t.Name.EndsWith("CommandHandler"))
            .WithService.AllInterfaces()
            .LifestylePerWebRequest() …
Run Code Online (Sandbox Code Playgroud)

c# dependency-injection castle-windsor ioc-container interception

3
推荐指数
1
解决办法
2184
查看次数

您可以在 Cypress 中限制请求而不是响应吗?

我正在尝试在 Cypress 中端到端测试文件上传页面,其中包括测试文件上传进度条是否有效。

不幸的是,在本地环境中,上传会立即发生,因此不会显示进度条。

我知道您可以使用模拟慢速网络来限制响应速度。cy.intercept()但是,这并不会降低请求上传速度:

cy.intercept('post', `/route`, (req) => {
    req.on('response', (res) => {
        res.setThrottle(1000) 
    })
}).as('post')
Run Code Online (Sandbox Code Playgroud)

有什么方法可以对传出请求应用限制吗?

interception cypress

3
推荐指数
1
解决办法
5388
查看次数

AOP Ninject停止拦截方法被调用

我正在使用Ninject和AOP来做一些缓存.我有一个属性,我可以应用于我的存储库中的任何方法和BeforeInvoke它将返回我的缓存对象,如果有一个和AfterInvoke创建一个缓存的对象.这一切都很好,但我无法弄清楚如何停止调用初始方法,即如果有一个缓存的对象返回而不是调用intyercepted方法.我的拦截器在这里:

public class CacheInterceptor : SimpleInterceptor
{
    protected override void BeforeInvoke(IInvocation invocation)
    {
        Type returnType = invocation.Request.Method.ReturnType;
        string cacheKey = CacheKeyBuilder.GetCacheKey(invocation, serializer);
        object cachedValue = cache.Get(cacheKey);
        if (cachedValue == null)
        {
            invocation.Proceed();
        }
        else
        {
            object returnValue = serializer.Deserialize(returnType, cachedValue);
            invocation.ReturnValue = returnValue;
            returnedCachedResult = true;
        }
     }
}
Run Code Online (Sandbox Code Playgroud)

即使在else语句中我显然没有说要调用被调用的方法'invocation.Proceed();' 它仍然会调用它.如何告诉ninject只返回invocation.ReturnValue?

c# aop ninject interception ninject-interception

2
推荐指数
1
解决办法
610
查看次数

Highcharts - 获得穿越系列的交叉点

我目前正在尝试提取特定系列(x)的系列(a,b,c,d)的多个交叉点.我似乎无法找到任何可以帮助我完成这项任务的功能.

我最好的办法是用a,b,c,d中的每一个点测量x中每个单点的距离,并假设当距离达到某个阈值以下时,该点必须是一个交叉点.我认为这种方法计算量太大,看起来很"脏".我相信必须有更简单或更好的方法,甚至可能是highcharts自己的API中的函数.

我搜索了各种来源和网站,但我真的找不到任何解决方案.一些人使用回归作为他们解决方案的一部分.我对回归知之甚少,但也许回归是唯一的方法?

同样由于我们系列的"复杂"性质,我也相信回归很难利用.

regression series highcharts interception

2
推荐指数
1
解决办法
1692
查看次数

获取成员拦截的属性值

我有这个CacheAttribute接受这样的持续时间值

public class MyTestQuery : IMyTestQuery
{
    private readonly ISomeRepository _someRepository;

    public TestQuery(ISomeRepository someRepository)
    {
        _someRepository = someRepository;
    }

    [Cache(Duration = 10)]
    public MyViewModel GetForeignKeysViewModelCache()
    {
        ...code here...
        return viewModel;
    }
}
Run Code Online (Sandbox Code Playgroud)

属性看起来像这样

[AttributeUsage(AttributeTargets.Method)]
public class CacheAttribute : Attribute
{
    public int Duration { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

当使用Castle.Proxy.IInterceptor拦截时,它可以工作,但是当我通过IInitation.MethodInitationTargetIInitation.Method执行Attribute.GetCustomAttribute时,两者都会返回null

这是代码中的

public class CacheResultInterceptor : IInterceptor
{
    public CacheAttribute GetCacheResultAttribute(IInvocation invocation)
    {
        var methodInfo = invocation.MethodInvocationTarget;
        if (methodInfo == …
Run Code Online (Sandbox Code Playgroud)

c# castle code-injection autofac interception

2
推荐指数
1
解决办法
2070
查看次数

MutationObserver:忽略 DOM 操作

如何创建一个观察实例MutationObserver以忽略由我的代码引起的某些 DOM 更改?例如(使用 jQuery):

//initialize MutationObserver
var mo = new MutationObserver(mutations => console.log(mutations));
mo.observe(document.body, {attributes: true, subtree: true, characterData: true, attributeOldValue: true, characterDataOldValue: true, childList: true});

//case 1: perform a removal
$('.someDiv').remove();
//in this case an action is logged by MO

//case 2: perform a removal with a disconnected MO
mo.disconnect();
$('.someDiv').remove();
mo.observe(document.body, {...});
//in this case an action is logged again!
Run Code Online (Sandbox Code Playgroud)

在这两种情况下,MO 都会记录我对 DOM 所做的所有更改。我想出的唯一方法是:

//case 3: perform a removal with a disconnected MO, turning on after …
Run Code Online (Sandbox Code Playgroud)

javascript dom interception mutation-observers

2
推荐指数
1
解决办法
1588
查看次数

Groovy运行时方法拦截

我正在玩Groovy,我想知道,为什么这段代码不起作用?

package test

interface A {
    void myMethod()
}

class B implements A {
    void myMethod() {
        println "No catch"
    }
}

B.metaClass.myMethod = {
    println "Catch!"
}

(new B()).myMethod()
Run Code Online (Sandbox Code Playgroud)

它打印出来No catch,而我希望它打印出来Catch!.

groovy metaclass method-invocation interception

1
推荐指数
1
解决办法
1556
查看次数

在Unity中注册拦截实例

对于我的单元测试我目前正在使用Moq模拟我的拦截器和拦截类,然后在Unity中注册截获的实例并为接口设置默认拦截器.然后我解析实例并调用截获的方法并验证是否正在调用拦截方法.

_mockInterceptor = new Mock<ExternalInterceptor>().As<IInterceptRelay>();
_mockInterception = new Mock<TestInterception> { CallBase = true }.As<IInterceptRelay>();

Container.RegisterInstance(_mockInterception.Object as ITestInterception);
UnityContainer.Configure<Interception>().SetDefaultInterceptorFor<ITestInterception>(new InterfaceInterceptor());

var test = Container.Resolve<ITestInterception>();
var returnValue = test.TestTheExternalInterception(TestMessage);

_mockInterceptor.Verify(i => i.ExecuteAfter(It.IsAny<object>(), It.IsAny<IEnumerable>(), It.IsAny<LoggingInterceptionAttribute>(), It.IsAny<IMethodResult>()), Times.Once());
Run Code Online (Sandbox Code Playgroud)

这很好用,但是我宁愿在注册期间设置拦截,就像我在注册服务/单例时保持一致性一样.

// Typical registration
UnityContainer.RegisterType<TFrom, TTo>(new Interceptor<InterfaceInterceptor>(), new InterceptionBehavior<PolicyInjectionBehavior>());
// Singleton registration
UnityContainer.RegisterType<TFrom, TTo>(new ContainerControlledLifetimeManager(), new Interceptor<InterfaceInterceptor>(), new InterceptionBehavior<PolicyInjectionBehavior>());
Run Code Online (Sandbox Code Playgroud)

我看不到使用该IUnityContainer.RegisterInstance()方法配置拦截的任何方法,因为它不需要任何方法InjectionMembers.如果我UnityContainer.Configure<Interception>().SetDefaultInterceptorFor<T>()在解析之前调用,我实际上可以使用实例拦截.

是否有更好/更简单的注册或嘲笑拦截器的方法?

c# unit-testing unity-container unity-interception interception

1
推荐指数
1
解决办法
2230
查看次数

Autofac拦截异步执行顺序

所以我有这门课:

public class MappingBootstrap : IMappingBootstrap
{
    public virtual async Task Map()
    {
        // Order is very important

        await this.mapper1.Map();

        await this.mapper2.Map();

        await this.mapper3.Map();

        await this.mapper4.Map();
    }
}
Run Code Online (Sandbox Code Playgroud)

我有Autofac拦截器:

public class LoggingInterceptor : IInterceptor
{
    public void Intercept(IInvocation invocation)
    {
        var methodReference = Guid.NewGuid();
        Console.WriteLine($"Calling {invocation?.Method?.DeclaringType?.Name}.{invocation?.Method?.Name} : {methodReference}");

        var startNew = Stopwatch.StartNew();

        invocation?.Proceed();

        startNew.Stop();

        Console.WriteLine($"{methodReference} : Done, time taken: {startNew.ElapsedMilliseconds}ms");
    }
}
Run Code Online (Sandbox Code Playgroud)

这会产生输出:

调用IMapperBootstrap.Map:54425559-71fe-4f23-ab47-d0f3371ec819
调用IMapper1.Map:51babb34-fa83-42ed-84e7-a1e979528116
51babb34-fa83-42ed-84e7-a1e979528116:完成,所用时间:219ms
54425559-71fe-4f23- ab47-d0f3371ec819:完成,所用时间:221ms
呼叫IMapper2.Map:41c812a2-d82d-48f6-9b8d-139b52eb28e3
41c812a2-d82d-48f6-9b8d-139b52eb28e3:完成,所用时间:9ms
呼叫IMapper3.Map:c91bed04-8f86-47d3 -a35a-417e354c2c5f
c91bed04-8f86-47d3-a35a-417e354c2c5f:完成,所需时间:994ms
调用IMapper4.Map:035cad27-1ba8-4bd1-b85f-396f64998d97
035cad27-1ba8-4bd1-b85f-396f64998d97:完成,所用时间:18ms

正如您所看到的,MappingBoostrap.Map完成后的第一个Mapper1.Map而不是我期望的所有功能完成后的结束. …

c# autofac interception async-await

1
推荐指数
1
解决办法
1578
查看次数