microsoft-visualbasic-runtime/Net/HTTP/wgetTask.vb

267 lines
9.2 KiB
VB.net
Raw Normal View History

2019-11-10 15:16:27 +08:00
#Region "Microsoft.VisualBasic::e615a7c6adaa9974a382d09816854b8a, Microsoft.VisualBasic.Core\Net\HTTP\wgetTask.vb"
2019-09-04 20:38:12 +08:00
2019-11-10 15:16:27 +08:00
' 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/>.
2019-11-10 15:16:27 +08:00
' /********************************************************************************/
2019-11-10 15:16:27 +08:00
' Summaries:
2019-11-10 15:16:27 +08:00
' Class wgetTask
'
' Properties: currentSize, downloadSpeed, isDownloading, saveFile, totalSize
' url
'
' Constructor: (+1 Overloads) Sub New
'
' Function: StartTask, ToString
'
' Sub: (+2 Overloads) Dispose, doDownloadTask, doTaskInternal, switchStat
'
'
' /********************************************************************************/
2019-09-04 20:38:12 +08:00
#End Region
Imports System.IO
Imports System.Net
Imports Microsoft.VisualBasic.Linq
2019-09-04 20:38:12 +08:00
Namespace Net.Http
''' <summary>
''' 提供一些比较详细的数据信息和事件处理
''' </summary>
Public Class wgetTask : Implements IDisposable
ReadOnly fs As FileStream
Dim _speedSamples As List(Of Double)
2019-10-12 22:41:30 +08:00
Dim _isUnknownContentSize As Boolean = False
2019-09-04 20:38:12 +08:00
''' <summary>
''' Size that has been downloaded
''' </summary>
Public ReadOnly Property currentSize As Long = 0
''' <summary>
''' Total size of the file that has to be downloaded
''' </summary>
Public ReadOnly Property totalSize As Long
Public ReadOnly Property url As String
Public ReadOnly Property saveFile As String
''' <summary>
''' KB/sec
''' </summary>
''' <returns></returns>
Public ReadOnly Property downloadSpeed As Double
Get
If _speedSamples.Count = 0 Then
Return 0
Else
Return _speedSamples.Average
End If
End Get
End Property
Public Event DownloadProcess(wget As wgetTask, percentage#)
Public Event ReportRequest(req As WebRequest, resp As WebResponse, remote$)
2019-09-04 20:38:12 +08:00
''' <summary>
''' Client status
''' </summary>
''' <returns></returns>
Public ReadOnly Property isDownloading As Boolean
''' <summary>
'''
''' </summary>
''' <param name="downloadUrl"></param>
''' <param name="saveFile">
''' Module will create a new <see cref="FileStream"/> that writes to this desired download path
''' </param>
Sub New(downloadUrl As String, saveFile As String)
Me.fs = saveFile.Open(doClear:=True)
Me.url = downloadUrl
Me.saveFile = saveFile
End Sub
2019-10-12 22:41:30 +08:00
Public Function StartTask(Optional doRetry As Boolean = True, Optional bufferSize% = 1024) As Boolean
Dim retry As Integer = If(doRetry, 0, 5)
Dim result As Boolean = True
2019-09-04 20:38:12 +08:00
If isDownloading Then
Return False
Else
Call switchStat()
End If
RE:
Try
2019-10-12 22:41:30 +08:00
Call doTaskInternal(bufferSize)
Catch ex As Exception When Not TypeOf ex Is NotImplementedException
Call ex.PrintException
If retry < 3 Then
retry += 1
GoTo RE
Else
' exit download
result = False
End If
Finally
Call switchStat()
End Try
Return result
End Function
2019-09-04 20:38:12 +08:00
Private Sub switchStat()
_isDownloading = Not isDownloading
End Sub
Dim _startTime&
2019-10-12 22:41:30 +08:00
Private Sub doTaskInternal(bufferSize As Integer)
2019-09-04 20:38:12 +08:00
' Make a request for the url of the file to be downloaded
Dim req As WebRequest = HttpGet.BuildWebRequest(url, Nothing, Nothing, UserAgent.GoogleChrome)
Dim remote$ = "NA"
If TypeOf req Is HttpWebRequest Then
DirectCast(req, HttpWebRequest).ServicePoint.BindIPEndPointDelegate =
Function(svrs, ip, counts)
remote = ip.ToString
Return Nothing
End Function
End If
2019-09-04 20:38:12 +08:00
' Ask for the response
Dim resp As WebResponse = req.GetResponse
_totalSize = resp.ContentLength
2019-09-04 20:38:12 +08:00
_speedSamples = New List(Of Double)
_currentSize = 0
_startTime = App.ElapsedMilliseconds
2019-10-12 22:41:30 +08:00
_isUnknownContentSize = totalSize < 0
2019-09-04 20:38:12 +08:00
RaiseEvent ReportRequest(req, resp, remote)
2019-09-04 20:38:12 +08:00
RaiseEvent DownloadProcess(Me, 100 * currentSize / totalSize)
If totalSize = -1 Then
2019-10-12 22:41:30 +08:00
' task with no Content-Length
Call doDownloadTask(resp, bufferSize, Function(read) read = 0)
2019-09-04 20:38:12 +08:00
Else
Call doDownloadTask(resp, bufferSize, Function() currentSize >= totalSize)
2019-09-04 20:38:12 +08:00
End If
resp.Close()
End Sub
2019-10-12 22:41:30 +08:00
Private Sub doDownloadTask(resp As WebResponse, bufferSize%, exitJob As Func(Of Integer, Boolean))
2019-09-04 20:38:12 +08:00
' Make a buffer
2019-10-12 22:41:30 +08:00
Dim buffer(bufferSize - 1) As Byte
Dim read As Integer = Integer.MaxValue
Dim interval As Double
2019-09-04 20:38:12 +08:00
2019-10-12 22:41:30 +08:00
Do While Not exitJob(read)
2019-09-04 20:38:12 +08:00
' Read the buffer from the response the WebRequest gave you
2019-10-12 22:41:30 +08:00
read = resp.GetResponseStream.Read(buffer, Scan0, buffer.Length)
' Write to filestream that you declared at the beginning
' of the DoWork sub
2019-10-12 22:41:30 +08:00
fs.Write(buffer, Scan0, read)
2019-09-04 20:38:12 +08:00
_currentSize += read
interval = TimeSpan.FromMilliseconds(App.ElapsedMilliseconds - _startTime).TotalSeconds
' Then, if downloadedTime reaches 1000 then it will call this part
' Calculate the download speed by dividing the downloadedSize
' by the total formatted seconds of the downloadedTime
Call (currentSize / interval).DoCall(AddressOf _speedSamples.Add)
RaiseEvent DownloadProcess(Me, 100 * currentSize / totalSize)
2019-09-04 20:38:12 +08:00
Loop
End Sub
Dim busy As Integer
2019-09-04 20:38:12 +08:00
Public Overrides Function ToString() As String
If busy = 5 Then
busy = 1
Else
busy += 1
End If
2019-10-12 22:41:30 +08:00
Dim progress$
If _isUnknownContentSize Then
progress = $"<unknown>%, {StringFormats.Lanudry(downloadSpeed)}/sec"
Else
progress = $"{(100 * _currentSize / _totalSize).ToString("F2")}%, {StringFormats.Lanudry(downloadSpeed)}/sec"
End If
Dim elapsed$ = TimeSpan.FromMilliseconds(App.ElapsedMilliseconds - _startTime).FormatTime
Dim busyStr As New String("."c, busy)
Return $"> '{saveFile.FileName}'{busyStr} {StringFormats.Lanudry(currentSize)} [{progress}], elapsed {elapsed}"
2019-09-04 20:38:12 +08:00
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
' TODO: dispose managed state (managed objects).
Call fs.Flush()
Call fs.Close()
Call fs.Dispose()
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