syncthing/lib/model/util.go

62 lines
1.2 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/.
2014-06-01 22:50:14 +02:00
2014-05-15 05:26:55 +02:00
package model
2014-03-02 23:58:14 +01:00
import (
"fmt"
2014-06-21 09:43:12 +02:00
"sync"
"time"
)
2014-03-02 23:58:14 +01:00
2016-11-03 22:33:33 +01:00
type Holdable interface {
Holders() string
}
func newDeadlockDetector(timeout time.Duration) *deadlockDetector {
return &deadlockDetector{
timeout: timeout,
lockers: make(map[string]sync.Locker),
}
}
type deadlockDetector struct {
timeout time.Duration
lockers map[string]sync.Locker
}
func (d *deadlockDetector) Watch(name string, mut sync.Locker) {
d.lockers[name] = mut
2014-06-21 09:43:12 +02:00
go func() {
for {
time.Sleep(d.timeout / 4)
2014-06-21 09:43:12 +02:00
ok := make(chan bool, 2)
go func() {
mut.Lock()
_ = 1 // empty critical section
2014-06-21 09:43:12 +02:00
mut.Unlock()
ok <- true
}()
go func() {
time.Sleep(d.timeout)
2014-06-21 09:43:12 +02:00
ok <- false
}()
if r := <-ok; !r {
msg := fmt.Sprintf("deadlock detected at %s", name)
for otherName, otherMut := range d.lockers {
2016-11-03 22:33:33 +01:00
if otherHolder, ok := otherMut.(Holdable); ok {
msg += "\n===" + otherName + "===\n" + otherHolder.Holders()
}
}
panic(msg)
2014-06-21 09:43:12 +02:00
}
}
}()
}