2015-09-20 06:30:25 -07:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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 http://mozilla.org/MPL/2.0/.
|
2014-06-01 13:50:14 -07:00
|
|
|
|
2013-12-15 03:43:31 -07:00
|
|
|
package discover
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2013-12-24 09:10:49 -07:00
|
|
|
|
2015-09-22 10:38:46 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2015-09-20 06:30:25 -07:00
|
|
|
"github.com/thejerf/suture"
|
2013-12-15 03:43:31 -07:00
|
|
|
)
|
|
|
|
|
2015-09-20 06:30:25 -07:00
|
|
|
// A Finder provides lookup services of some kind.
|
|
|
|
type Finder interface {
|
|
|
|
Lookup(deviceID protocol.DeviceID) (direct []string, relays []Relay, err error)
|
|
|
|
Error() error
|
|
|
|
String() string
|
|
|
|
Cache() map[protocol.DeviceID]CacheEntry
|
2015-09-12 12:59:15 -07:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:52:06 -07:00
|
|
|
type CacheEntry struct {
|
2015-12-01 01:57:53 -07:00
|
|
|
Direct []string `json:"direct"`
|
|
|
|
Relays []Relay `json:"relays"`
|
|
|
|
when time.Time // When did we get the result
|
|
|
|
found bool // Is it a success (cacheTime applies) or a failure (negCacheTime applies)?
|
|
|
|
validUntil time.Time // Validity time, overrides normal calculation
|
2014-08-14 03:44:49 -07:00
|
|
|
}
|
|
|
|
|
2015-09-20 06:30:25 -07:00
|
|
|
// A FinderService is a Finder that has background activity and must be run as
|
|
|
|
// a suture.Service.
|
|
|
|
type FinderService interface {
|
|
|
|
Finder
|
|
|
|
suture.Service
|
2014-05-01 23:53:19 -07:00
|
|
|
}
|
|
|
|
|
2015-09-20 06:30:25 -07:00
|
|
|
type FinderMux interface {
|
|
|
|
Finder
|
|
|
|
ChildStatus() map[string]error
|
2014-05-12 17:50:54 -07:00
|
|
|
}
|
|
|
|
|
2015-09-20 06:30:25 -07:00
|
|
|
// The RelayStatusProvider answers questions about current relay status.
|
|
|
|
type RelayStatusProvider interface {
|
|
|
|
Relays() []string
|
|
|
|
RelayStatus(uri string) (time.Duration, bool)
|
2014-05-12 18:08:55 -07:00
|
|
|
}
|
|
|
|
|
2015-09-20 06:30:25 -07:00
|
|
|
// The AddressLister answers questions about what addresses we are listening
|
|
|
|
// on.
|
|
|
|
type AddressLister interface {
|
|
|
|
ExternalAddresses() []string
|
|
|
|
AllAddresses() []string
|
2015-06-23 05:55:30 -07:00
|
|
|
}
|