64 lines
2.1 KiB
C#
64 lines
2.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Microsoft.AspNetCore.SignalR.Internal;
|
|
using Microsoft.AspNetCore.SignalR.Protocol;
|
|
|
|
namespace Microsoft.AspNetCore.SignalR.Microbenchmarks
|
|
{
|
|
public class TestBinder : IInvocationBinder
|
|
{
|
|
private readonly Type[] _paramTypes;
|
|
private readonly Type _returnType;
|
|
|
|
public TestBinder(HubMessage expectedMessage)
|
|
{
|
|
switch (expectedMessage)
|
|
{
|
|
case StreamInvocationMessage i:
|
|
_paramTypes = i.Arguments?.Select(a => a?.GetType() ?? typeof(object))?.ToArray();
|
|
break;
|
|
case InvocationMessage i:
|
|
_paramTypes = i.Arguments?.Select(a => a?.GetType() ?? typeof(object))?.ToArray();
|
|
break;
|
|
case StreamItemMessage s:
|
|
_returnType = s.Item?.GetType() ?? typeof(object);
|
|
break;
|
|
case CompletionMessage c:
|
|
_returnType = c.Result?.GetType() ?? typeof(object);
|
|
break;
|
|
}
|
|
}
|
|
|
|
public TestBinder() : this(null, null) { }
|
|
public TestBinder(Type[] paramTypes) : this(paramTypes, null) { }
|
|
public TestBinder(Type returnType) : this(null, returnType) { }
|
|
public TestBinder(Type[] paramTypes, Type returnType)
|
|
{
|
|
_paramTypes = paramTypes;
|
|
_returnType = returnType;
|
|
}
|
|
|
|
public IReadOnlyList<Type> GetParameterTypes(string methodName)
|
|
{
|
|
if (_paramTypes != null)
|
|
{
|
|
return _paramTypes;
|
|
}
|
|
throw new InvalidOperationException("Unexpected binder call");
|
|
}
|
|
|
|
public Type GetReturnType(string invocationId)
|
|
{
|
|
if (_returnType != null)
|
|
{
|
|
return _returnType;
|
|
}
|
|
throw new InvalidOperationException("Unexpected binder call");
|
|
}
|
|
}
|
|
}
|