Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better handle event reset in LoggingService #11279

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions src/Build/BackEnd/Components/Logging/LoggingService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
Expand All @@ -10,12 +10,12 @@
using System.Threading;
using Microsoft.Build.BackEnd.Components.RequestBuilder;
using Microsoft.Build.Evaluation;
using Microsoft.Build.Experimental.BuildCheck;
using Microsoft.Build.Experimental.BuildCheck.Infrastructure;
using Microsoft.Build.Framework;
using Microsoft.Build.Shared;
using InternalLoggerException = Microsoft.Build.Exceptions.InternalLoggerException;
using LoggerDescription = Microsoft.Build.Logging.LoggerDescription;
using Microsoft.Build.Experimental.BuildCheck;

#nullable disable

Expand Down Expand Up @@ -1389,7 +1389,6 @@ private void StartLoggingEventProcessing()
_emptyQueueEvent = new ManualResetEvent(false);
_enqueueEvent = new AutoResetEvent(false);
_loggingEventProcessingCancellation = new CancellationTokenSource();

_loggingEventProcessingThread = new Thread(LoggingEventProc);
_loggingEventProcessingThread.Name = $"MSBuild LoggingService events queue pump: {this.GetHashCode()}";
_loggingEventProcessingThread.IsBackground = true;
Expand All @@ -1405,27 +1404,36 @@ void LoggingEventProc()
if (_eventQueue.TryDequeue(out object ev))
{
LoggingEventProcessor(ev);
_dequeueEvent.Set();
_dequeueEvent?.Set();
}
else
{
_emptyQueueEvent.Set();
_emptyQueueEvent?.Set();

// Wait for next event, or finish.
if (!completeAdding.IsCancellationRequested && _eventQueue.IsEmpty)
{
WaitHandle.WaitAny(waitHandlesForNextEvent);
}

_emptyQueueEvent.Reset();
lock (_lockObject)
{
try
{
_emptyQueueEvent?.Reset();
}
catch (ObjectDisposedException)
{
// Might be thrown if the event was set as null in shutdown.
break;
}
}
}
} while (!_eventQueue.IsEmpty || !completeAdding.IsCancellationRequested);

_emptyQueueEvent.Set();
_emptyQueueEvent?.Set();
}
}


/// <summary>
/// Clean resources used for logging event processing queue.
/// </summary>
Expand Down
Loading