microsoft-visualbasic-runtime/ApplicationServices/Parallel/Tasks/UpdateThread.vb

201 lines
6.9 KiB
VB.net

#Region "Microsoft.VisualBasic::d600fc3bc5d544d05801c901e154e033, Microsoft.VisualBasic.Core\ApplicationServices\Parallel\Tasks\UpdateThread.vb"
' Author:
'
' asuka (amethyst.asuka@gcmodeller.org)
' xie (genetics@smrucc.org)
' xieguigang (xie.guigang@live.com)
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.
' /********************************************************************************/
' Summaries:
' Class UpdateThread
'
' Properties: Caller, ErrHandle, Periods, Running
'
' Constructor: (+1 Overloads) Sub New
'
' Function: GetTicks, Start, ToString
'
' Sub: [Stop], __invoke, __updates, (+2 Overloads) Dispose
'
'
' /********************************************************************************/
#End Region
Imports System.Runtime.CompilerServices
Imports Microsoft.VisualBasic.ComponentModel
Imports Microsoft.VisualBasic.ComponentModel.DataSourceModel
Imports Microsoft.VisualBasic.ComponentModel.Triggers
Namespace Parallel.Tasks
''' <summary>
''' Running a specific <see cref="System.Action"/> in the background periodically.
''' (比较适合用于在服务器上面执行周期性的计划任务)
''' </summary>
Public Class UpdateThread : Inherits ICallbackInvoke
Implements IDisposable
Implements ITaskDriver
Implements ITimer
''' <summary>
''' Sleeps n **ms** interval
''' </summary>
''' <returns></returns>
Public Property Periods As Integer Implements ITimer.Interval
''' <summary>
''' If this exception handler is null, then when the unhandled exception occurring,
''' this thread object will throw the exception and then stop working.
''' </summary>
''' <returns></returns>
Public Property ErrHandle As Action(Of Exception)
''' <summary>
''' 指示当前的这个任务处理对象是否处于运行状态
''' </summary>
''' <returns></returns>
Public ReadOnly Property Running As Boolean
''' <summary>
''' The caller stack name
''' </summary>
''' <returns></returns>
Public ReadOnly Property Caller As String
''' <summary>
''' Running a specific action in the background periodically. The time unit of the parameter <paramref name="Periods"/> is ms or Ticks.
''' </summary>
''' <param name="Periods">ms for update thread sleeps</param>
''' <param name="updates"></param>
Sub New(Periods As Integer, updates As Action, <CallerMemberName> Optional caller$ = Nothing)
Call MyBase.New(updates)
Me.Running = False
Me.Periods = Periods
Me.Caller = caller
End Sub
Private Sub __updates()
Call $"Start running {Me.ToString}....".__DEBUG_ECHO
Do While Running
Call __invoke()
Loop
Call $"{Me.ToString} thread exit...".__DEBUG_ECHO
End Sub
''' <summary>
''' 运行这条线程,假若更新线程已经在运行了,则会自动忽略这次调用
''' </summary>
Public Function Start() As Integer Implements ITaskDriver.Run
If Running Then
Return 2
Else
_Running = True
Call RunTask(AddressOf __updates)
End If
Return 0
End Function
''' <summary>
''' 停止更新线程的运行
''' </summary>
Public Sub [Stop]() Implements ITimer.Stop
_Running = False
End Sub
Private Sub __invoke()
#If DEBUG Then
Call _execute()
#Else
Try
Call _execute()
Catch ex As Exception
If Not ErrHandle Is Nothing Then
Call _ErrHandle(ex)
Else
Throw
End If
Finally
Call Threading.Thread.Sleep(Periods)
End Try
#End If
End Sub
Public Overrides Function ToString() As String
Dim state As String = If(Running, NameOf(Running), NameOf([Stop]))
Return $"[{Caller}::{state}, {Me.Periods}ms] => {Me.CallbackInvoke.ToString}"
End Function
''' <summary>
''' 获取得到总的毫秒数
''' </summary>
''' <param name="hh"></param>
''' <param name="mm"></param>
''' <param name="ss%"></param>
''' <returns></returns>
Public Shared Function GetTicks(hh As Integer, mm As Integer, Optional ss% = 0) As Integer
Dim hhss As Integer = hh * 60 * 60 ' 小时的秒数
Dim mmss As Integer = mm * 60
Dim ticks As Integer = (hhss + mmss + ss) * 1000
Return ticks
End Function
#Region "IDisposable Support"
Private disposedValue As Boolean ' To detect redundant calls
' IDisposable
Protected Overridable Sub Dispose(disposing As Boolean)
If Not Me.disposedValue Then
If disposing Then
Call [Stop]() ' TODO: dispose managed state (managed objects).
End If
' TODO: free unmanaged resources (unmanaged objects) and override Finalize() below.
' TODO: set large fields to null.
End If
Me.disposedValue = True
End Sub
' TODO: override Finalize() only if Dispose(disposing As Boolean) above has code to free unmanaged resources.
'Protected Overrides Sub Finalize()
' ' Do not change this code. Put cleanup code in Dispose(disposing As Boolean) above.
' Dispose(False)
' MyBase.Finalize()
'End Sub
' This code added by Visual Basic to correctly implement the disposable pattern.
Public Sub Dispose() Implements IDisposable.Dispose
' Do not change this code. Put cleanup code in Dispose(disposing As Boolean) above.
Dispose(True)
' TODO: uncomment the following line if Finalize() is overridden above.
' GC.SuppressFinalize(Me)
End Sub
#End Region
End Class
End Namespace