Documentation
¶
Index ¶
- type Ch
- type Data
- func (d *Data) BindwithFiles(procs int) error
- func (d Data) DirName() string
- func (d Data) FileName() string
- func (d Data) FileSize() uint
- func (d Data) FullFileName() string
- func (d Data) IsFree(split uint) error
- func (d *Data) MakeRange(i, split, procs uint) Range
- func (d Data) Progress(dirname string) (int64, error)
- func (d Data) ProgressBar(ctx context.Context) error
- func (d *Data) SetDirName(path, filename string, procs int)
- func (d *Data) SetFileName(filename string)
- func (d *Data) SetFileSize(size uint)
- func (d *Data) SetFullFileName(directory, filename string)
- func (d *Data) URLFileName(targetDir, url string) string
- type Options
- type Pget
- func (p Pget) Assignment(grp *errgroup.Group, procs, split uint)
- func (p *Pget) CheckMirrors(ctx context.Context, url string, ch *Ch)
- func (p *Pget) Checking() error
- func (p *Pget) Download() error
- func (pget Pget) ErrTop(err error) error
- func (p Pget) MakeResponse(r Range, url string) (*http.Response, error)
- func (pget *Pget) Ready() error
- func (p Pget) Requests(r Range, filename, dirname, url string) error
- func (pget *Pget) Run() error
- type Range
- type Utils
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Ch ¶
Ch struct for request
func (*Ch) CheckingListen ¶
func (ch *Ch) CheckingListen(ctx context.Context, cancelAll context.CancelFunc, totalActiveProcs int) (size uint, e error)
CheckingListen method wait all channels for Checking method in requests
type Data ¶
type Data struct {
// contains filtered or unexported fields
}
Data struct has file of relational data
func (*Data) BindwithFiles ¶
BindwithFiles function for file binding after split download
func (Data) FullFileName ¶
FullFileName get from Data structs member
func (Data) ProgressBar ¶
ProgressBar is to show progressbar
func (*Data) SetDirName ¶
SetDirName set to Data structs member
func (*Data) SetFileName ¶
SetFileName set to Data structs member
func (*Data) SetFileSize ¶
SetFileSize set to Data structs member
func (*Data) SetFullFileName ¶
SetFullFileName set to Data structs member
func (*Data) URLFileName ¶
URLFileName set to Data structs member using url
type Options ¶
type Options struct { Help bool `short:"h" long:"help"` Version bool `short:"v" long:"version"` Procs int `short:"p" long:"procs"` Output string `short:"o" long:"output"` TargetDir string `short:"d" long:"target-dir"` Timeout int `short:"t" long:"timeout"` UserAgent string `short:"u" long:"user-agent"` Referer string `short:"r" long:"referer"` Update bool `long:"check-update"` Trace bool `long:"trace"` }
Options struct for parse command line arguments
type Pget ¶
type Pget struct { Trace bool Utils TargetDir string Procs int URLs []string TargetURLs []string // contains filtered or unexported fields }
Pget structs
func (Pget) Assignment ¶
Assignment method that to each goroutine gives the task
func (*Pget) CheckMirrors ¶
CheckMirrors method check be able to range access. also get redirected url.
func (Pget) MakeResponse ¶
MakeResponse return *http.Response include context and range header
type Range ¶
type Range struct {
// contains filtered or unexported fields
}
Range struct for range access
type Utils ¶
type Utils interface { ProgressBar(context.Context) error BindwithFiles(int) error IsFree(uint) error Progress(string) (int64, error) MakeRange(uint, uint, uint) Range URLFileName(string, string) string // like setter SetFileName(string) SetFullFileName(string, string) SetDirName(string, string, int) SetFileSize(uint) // like getter FileName() string FullFileName() string FileSize() uint DirName() string }
Utils interface indicate function