123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
- // You can obtain one at https://mozilla.org/MPL/2.0/.
- package model
- import (
- "sync"
- "time"
- )
- type jobQueue struct {
- progress []string
- queued []jobQueueEntry
- mut sync.Mutex
- }
- type jobQueueEntry struct {
- name string
- size int64
- modified int64
- }
- func newJobQueue() *jobQueue {
- return &jobQueue{}
- }
- func (q *jobQueue) Push(file string, size int64, modified time.Time) {
- q.mut.Lock()
- // The range of UnixNano covers a range of reasonable timestamps.
- q.queued = append(q.queued, jobQueueEntry{file, size, modified.UnixNano()})
- q.mut.Unlock()
- }
- func (q *jobQueue) Pop() (string, bool) {
- q.mut.Lock()
- defer q.mut.Unlock()
- if len(q.queued) == 0 {
- return "", false
- }
- f := q.queued[0].name
- q.queued = q.queued[1:]
- q.progress = append(q.progress, f)
- return f, true
- }
- func (q *jobQueue) BringToFront(filename string) {
- q.mut.Lock()
- defer q.mut.Unlock()
- for i, cur := range q.queued {
- if cur.name == filename {
- if i > 0 {
- // Shift the elements before the selected element one step to
- // the right, overwriting the selected element
- copy(q.queued[1:i+1], q.queued[0:])
- // Put the selected element at the front
- q.queued[0] = cur
- }
- return
- }
- }
- }
- func (q *jobQueue) Done(file string) {
- q.mut.Lock()
- defer q.mut.Unlock()
- for i := range q.progress {
- if q.progress[i] == file {
- copy(q.progress[i:], q.progress[i+1:])
- q.progress = q.progress[:len(q.progress)-1]
- return
- }
- }
- }
- // Jobs returns a paginated list of file currently being pulled and files queued
- // to be pulled. It also returns how many items were skipped.
- func (q *jobQueue) Jobs(page, perpage int) ([]string, []string, int) {
- q.mut.Lock()
- defer q.mut.Unlock()
- toSkip := (page - 1) * perpage
- plen := len(q.progress)
- qlen := len(q.queued)
- if tot := plen + qlen; tot <= toSkip {
- return nil, nil, tot
- }
- if plen >= toSkip+perpage {
- progress := make([]string, perpage)
- copy(progress, q.progress[toSkip:toSkip+perpage])
- return progress, nil, toSkip
- }
- var progress []string
- if plen > toSkip {
- progress = make([]string, plen-toSkip)
- copy(progress, q.progress[toSkip:plen])
- toSkip = 0
- } else {
- toSkip -= plen
- }
- var queued []string
- if qlen-toSkip < perpage-len(progress) {
- queued = make([]string, qlen-toSkip)
- } else {
- queued = make([]string, perpage-len(progress))
- }
- for i := range queued {
- queued[i] = q.queued[i+toSkip].name
- }
- return progress, queued, (page - 1) * perpage
- }
- func (q *jobQueue) Reset() {
- q.mut.Lock()
- defer q.mut.Unlock()
- q.progress = nil
- q.queued = nil
- }
- func (q *jobQueue) lenQueued() int {
- q.mut.Lock()
- defer q.mut.Unlock()
- return len(q.queued)
- }
- func (q *jobQueue) lenProgress() int {
- q.mut.Lock()
- defer q.mut.Unlock()
- return len(q.progress)
- }
|