syncthing/lib/model/deviceactivity.go

55 lines
1.3 KiB
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01:00
// 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 (
2015-09-22 19:38:46 +02:00
"github.com/syncthing/syncthing/lib/protocol"
2015-08-06 11:29:25 +02:00
"github.com/syncthing/syncthing/lib/sync"
)
// deviceActivity tracks the number of outstanding requests per device and can
// answer which device is least busy. It is safe for use from multiple
// goroutines.
type deviceActivity struct {
act map[protocol.DeviceID]int
mut sync.Mutex
}
func newDeviceActivity() *deviceActivity {
return &deviceActivity{
act: make(map[protocol.DeviceID]int),
2015-04-23 00:54:31 +02:00
mut: sync.NewMutex(),
}
}
// Returns the index of the least busy device, or -1 if all are too busy.
func (m *deviceActivity) leastBusy(availability []Availability) int {
m.mut.Lock()
2014-12-08 16:36:15 +01:00
low := 2<<30 - 1
best := -1
for i := range availability {
if usage := m.act[availability[i].ID]; usage < low {
low = usage
best = i
}
}
m.mut.Unlock()
return best
}
func (m *deviceActivity) using(availability Availability) {
m.mut.Lock()
m.act[availability.ID]++
m.mut.Unlock()
}
func (m *deviceActivity) done(availability Availability) {
m.mut.Lock()
m.act[availability.ID]--
m.mut.Unlock()
}