mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Fix calling schedule task cause deadlock (#1586)
This commit is contained in:
parent
7723ed57ea
commit
b15c3a8e46
4 changed files with 55 additions and 6 deletions
|
|
@ -700,6 +700,12 @@ namespace MinecraftClient
|
|||
/// </summary>
|
||||
/// <param name="task">Task to run</param>
|
||||
public object ScheduleTask(Delegate task)
|
||||
{
|
||||
if (!InvokeRequired())
|
||||
{
|
||||
return task.DynamicInvoke();
|
||||
}
|
||||
else
|
||||
{
|
||||
var taskAndResult = new TaskWithResult(task);
|
||||
lock (threadTasksLock)
|
||||
|
|
@ -709,6 +715,25 @@ namespace MinecraftClient
|
|||
taskAndResult.Block();
|
||||
return taskAndResult.Result;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Check if calling thread is main thread or other thread
|
||||
/// </summary>
|
||||
/// <returns>True if calling thread is other thread</returns>
|
||||
public bool InvokeRequired()
|
||||
{
|
||||
int callingThreadId = Thread.CurrentThread.ManagedThreadId;
|
||||
if (handler != null)
|
||||
{
|
||||
return handler.GetNetReadThreadId() != callingThreadId;
|
||||
}
|
||||
else
|
||||
{
|
||||
// net read thread (main thread) not yet ready
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
#region Management: Load/Unload ChatBots and Enable/Disable settings
|
||||
|
||||
|
|
|
|||
|
|
@ -201,6 +201,15 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
netRead.Start();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get net read thread (main thread) ID
|
||||
/// </summary>
|
||||
/// <returns>Net read thread ID</returns>
|
||||
public int GetNetReadThreadId()
|
||||
{
|
||||
return netRead != null ? netRead.ManagedThreadId : -1;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
try
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
PacketTypePalette packetPalette;
|
||||
SocketWrapper socketWrapper;
|
||||
DataTypes dataTypes;
|
||||
Thread netRead;
|
||||
Thread netRead; // main thread
|
||||
ILogger log;
|
||||
|
||||
public Protocol18Handler(TcpClient Client, int protocolVersion, IMinecraftComHandler handler, ForgeInfo forgeInfo)
|
||||
|
|
@ -1112,6 +1112,15 @@ namespace MinecraftClient.Protocol.Handlers
|
|||
netRead.Start();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get net read thread (main thread) ID
|
||||
/// </summary>
|
||||
/// <returns>Net read thread ID</returns>
|
||||
public int GetNetReadThreadId()
|
||||
{
|
||||
return netRead != null ? netRead.ManagedThreadId : -1;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Disconnect from the server, cancel network reading.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -235,5 +235,11 @@ namespace MinecraftClient.Protocol
|
|||
/// </summary>
|
||||
/// <param name="selectedSlot">The slot of the trade, starts at 0.</param>
|
||||
bool SelectTrade(int selectedSlot);
|
||||
|
||||
/// <summary>
|
||||
/// Get net read thread (main thread) ID
|
||||
/// </summary>
|
||||
/// <returns>Net read thread ID</returns>
|
||||
int GetNetReadThreadId();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue