Selaa lähdekoodia

Improved Ctrl+C action raised exception issue.

master
Savorboard 5 vuotta sitten
vanhempi
commit
f664b62831
9 muutettua tiedostoa jossa 42 lisäystä ja 24 poistoa
  1. +1
    -1
      src/DotNetCore.CAP.RabbitMQ/IConnectionChannelPool.Default.cs
  2. +16
    -7
      src/DotNetCore.CAP/ISubscribeExecutor.Default.cs
  3. +3
    -2
      src/DotNetCore.CAP/ISubscriberExecutor.cs
  4. +4
    -1
      src/DotNetCore.CAP/Internal/IConsumerInvoker.Default.cs
  5. +3
    -1
      src/DotNetCore.CAP/Internal/IConsumerInvoker.cs
  6. +6
    -3
      src/DotNetCore.CAP/Processor/IDispatcher.Default.cs
  7. +1
    -1
      src/DotNetCore.CAP/Processor/IProcessor.InfiniteRetry.cs
  8. +6
    -6
      src/DotNetCore.CAP/Processor/IProcessor.NeedRetry.cs
  9. +2
    -2
      test/DotNetCore.CAP.Test/ConsumerInvokerFactoryTest.cs

+ 1
- 1
src/DotNetCore.CAP.RabbitMQ/IConnectionChannelPool.Default.cs Näytä tiedosto

@@ -39,7 +39,7 @@ namespace DotNetCore.CAP.RabbitMQ
_connectionActivator = CreateConnection(options);

HostAddress = $"{options.HostName}:{options.Port}";
Exchange = CapOptions.DefaultVersion == capOptions.Version ? options.ExchangeName : $"{options.ExchangeName}.{capOptions.Version}";
Exchange = "v1" == capOptions.Version ? options.ExchangeName : $"{options.ExchangeName}.{capOptions.Version}";

_logger.LogDebug($"RabbitMQ configuration:'HostName:{options.HostName}, Port:{options.Port}, UserName:{options.UserName}, Password:{options.Password}, ExchangeName:{options.ExchangeName}'");
}


+ 16
- 7
src/DotNetCore.CAP/ISubscribeExecutor.Default.cs Näytä tiedosto

@@ -3,6 +3,7 @@

using System;
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using DotNetCore.CAP.Diagnostics;
using DotNetCore.CAP.Infrastructure;
@@ -50,13 +51,13 @@ namespace DotNetCore.CAP

private IConsumerInvoker Invoker { get; }

public async Task<OperateResult> ExecuteAsync(CapReceivedMessage message)
public async Task<OperateResult> ExecuteAsync(CapReceivedMessage message, CancellationToken cancellationToken)
{
bool retry;
OperateResult result;
do
{
var executedResult = await ExecuteWithoutRetryAsync(message);
var executedResult = await ExecuteWithoutRetryAsync(message, cancellationToken);
result = executedResult.Item2;
if (result == OperateResult.Success)
{
@@ -72,19 +73,22 @@ namespace DotNetCore.CAP
/// Execute message consumption once.
/// </summary>
/// <param name="message">the message received of <see cref="CapReceivedMessage"/></param>
/// <param name="cancellationToken"></param>
/// <returns>Item1 is need still retry, Item2 is executed result.</returns>
private async Task<(bool, OperateResult)> ExecuteWithoutRetryAsync(CapReceivedMessage message)
private async Task<(bool, OperateResult)> ExecuteWithoutRetryAsync(CapReceivedMessage message, CancellationToken cancellationToken)
{
if (message == null)
{
throw new ArgumentNullException(nameof(message));
}

cancellationToken.ThrowIfCancellationRequested();

try
{
var sp = Stopwatch.StartNew();

await InvokeConsumerMethodAsync(message);
await InvokeConsumerMethodAsync(message, cancellationToken);

sp.Stop();

@@ -160,7 +164,7 @@ namespace DotNetCore.CAP
message.Content = Helper.AddExceptionProperty(message.Content, exception);
}

private async Task InvokeConsumerMethodAsync(CapReceivedMessage receivedMessage)
private async Task InvokeConsumerMethodAsync(CapReceivedMessage receivedMessage, CancellationToken cancellationToken)
{
if (!_selector.TryGetTopicExecutor(receivedMessage.Name, receivedMessage.Group,
out var executor))
@@ -179,15 +183,20 @@ namespace DotNetCore.CAP
{
operationId = s_diagnosticListener.WriteSubscriberInvokeBefore(consumerContext);

var ret = await Invoker.InvokeAsync(consumerContext);
var ret = await Invoker.InvokeAsync(consumerContext, cancellationToken);

s_diagnosticListener.WriteSubscriberInvokeAfter(operationId, consumerContext, startTime, stopwatch.Elapsed);
s_diagnosticListener.WriteSubscriberInvokeAfter(operationId, consumerContext, startTime,
stopwatch.Elapsed);

if (!string.IsNullOrEmpty(ret.CallbackName))
{
await _callbackMessageSender.SendAsync(ret.MessageId, ret.CallbackName, ret.Result);
}
}
catch (OperationCanceledException)
{
//ignore
}
catch (Exception ex)
{
s_diagnosticListener.WriteSubscriberInvokeError(operationId, consumerContext, ex, startTime, stopwatch.Elapsed);


+ 3
- 2
src/DotNetCore.CAP/ISubscriberExecutor.cs Näytä tiedosto

@@ -1,16 +1,17 @@
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Threading;
using System.Threading.Tasks;
using DotNetCore.CAP.Models;

namespace DotNetCore.CAP
{
/// <summary>
/// Consumer execotor
/// Consumer executor
/// </summary>
public interface ISubscriberExecutor
{
Task<OperateResult> ExecuteAsync(CapReceivedMessage message);
Task<OperateResult> ExecuteAsync(CapReceivedMessage message, CancellationToken cancellationToken = default);
}
}

+ 4
- 1
src/DotNetCore.CAP/Internal/IConsumerInvoker.Default.cs Näytä tiedosto

@@ -3,6 +3,7 @@
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using DotNetCore.CAP.Abstractions;
using Microsoft.Extensions.DependencyInjection;
@@ -29,8 +30,10 @@ namespace DotNetCore.CAP.Internal
_logger = loggerFactory.CreateLogger<DefaultConsumerInvoker>();
}
public async Task<ConsumerExecutedResult> InvokeAsync(ConsumerContext context)
public async Task<ConsumerExecutedResult> InvokeAsync(ConsumerContext context, CancellationToken cancellationToken = default)
{
cancellationToken.ThrowIfCancellationRequested();
_logger.LogDebug("Executing consumer Topic: {0}", context.ConsumerDescriptor.MethodInfo.Name);
var executor = ObjectMethodExecutor.Create(


+ 3
- 1
src/DotNetCore.CAP/Internal/IConsumerInvoker.cs Näytä tiedosto

@@ -1,6 +1,7 @@
// Copyright (c) .NET Core Community. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Threading;
using System.Threading.Tasks;

namespace DotNetCore.CAP.Internal
@@ -14,6 +15,7 @@ namespace DotNetCore.CAP.Internal
/// Invoke consumer method whit consumer context.
/// </summary>
/// <param name="context">consumer execute context</param>
Task<ConsumerExecutedResult> InvokeAsync(ConsumerContext context);
/// <param name="cancellationToken">The object of <see cref="CancellationToken"/>.</param>
Task<ConsumerExecutedResult> InvokeAsync(ConsumerContext context, CancellationToken cancellationToken = default);
}
}

+ 6
- 3
src/DotNetCore.CAP/Processor/IDispatcher.Default.cs Näytä tiedosto

@@ -57,11 +57,14 @@ namespace DotNetCore.CAP.Processor
{
while (!_publishedMessageQueue.IsCompleted)
{
if (_publishedMessageQueue.TryTake(out var message, 100, _cts.Token))
if (_publishedMessageQueue.TryTake(out var message, 3000, _cts.Token))
{
try
{
_sender.SendAsync(message);
Task.Run(async () =>
{
await _sender.SendAsync(message);
});
}
catch (Exception ex)
{
@@ -82,7 +85,7 @@ namespace DotNetCore.CAP.Processor
{
foreach (var message in _receivedMessageQueue.GetConsumingEnumerable(_cts.Token))
{
_executor.ExecuteAsync(message);
_executor.ExecuteAsync(message, _cts.Token);
}
}
catch (OperationCanceledException)


+ 1
- 1
src/DotNetCore.CAP/Processor/IProcessor.InfiniteRetry.cs Näytä tiedosto

@@ -30,7 +30,7 @@ namespace DotNetCore.CAP.Processor
}
catch (OperationCanceledException)
{
return;
//ignore
}
catch (Exception ex)
{


+ 6
- 6
src/DotNetCore.CAP/Processor/IProcessor.NeedRetry.cs Näytä tiedosto

@@ -40,15 +40,15 @@ namespace DotNetCore.CAP.Processor

var connection = context.Provider.GetRequiredService<IStorageConnection>();

await Task.WhenAll(
ProcessPublishedAsync(connection, context),
ProcessReceivedAsync(connection, context));
await Task.WhenAll(ProcessPublishedAsync(connection, context), ProcessReceivedAsync(connection, context));

await context.WaitAsync(_waitingInterval);
}

private async Task ProcessPublishedAsync(IStorageConnection connection, ProcessingContext context)
{
context.ThrowIfStopping();

var messages = await GetSafelyAsync(connection.GetPublishedMessagesOfNeedRetry);

foreach (var message in messages)
@@ -61,17 +61,17 @@ namespace DotNetCore.CAP.Processor

private async Task ProcessReceivedAsync(IStorageConnection connection, ProcessingContext context)
{
context.ThrowIfStopping();

var messages = await GetSafelyAsync(connection.GetReceivedMessagesOfNeedRetry);

foreach (var message in messages)
{
await _subscriberExecutor.ExecuteAsync(message);

context.ThrowIfStopping();

await context.WaitAsync(_delay);
}
}
}

private async Task<IEnumerable<T>> GetSafelyAsync<T>(Func<Task<IEnumerable<T>>> getMessagesAsync)
{


+ 2
- 2
test/DotNetCore.CAP.Test/ConsumerInvokerFactoryTest.cs Näytä tiedosto

@@ -30,7 +30,7 @@ namespace DotNetCore.CAP.Test
services.AddSingleton(_mockSerialiser.Object);
services.AddSingleton(_mockMessagePacker.Object);
services.AddSingleton(_mockModelBinderFactory.Object);
_serviceProvider = services.BuildServiceProvider();
_serviceProvider = services.BuildServiceProvider();
}

private ConsumerInvokerFactory Create() =>
@@ -74,7 +74,7 @@ namespace DotNetCore.CAP.Test
Assert.Throws<Exception>(() =>
{
invoker.InvokeAsync(context).GetAwaiter().GetResult();
});
});
}
}
}

Ladataan…
Peruuta
Tallenna