2015-09-20 13:30:25 +00:00
|
|
|
// Copyright (C) 2015 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00: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,
|
2017-02-09 06:52:18 +00:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 20:50:14 +00:00
|
|
|
|
2013-12-15 10:43:31 +00:00
|
|
|
package discover
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2013-12-24 16:10:49 +00:00
|
|
|
|
2015-09-22 17:38:46 +00:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2015-09-20 13:30:25 +00:00
|
|
|
"github.com/thejerf/suture"
|
2013-12-15 10:43:31 +00:00
|
|
|
)
|
|
|
|
|
2015-09-20 13:30:25 +00:00
|
|
|
// A Finder provides lookup services of some kind.
|
|
|
|
type Finder interface {
|
2016-05-04 19:38:12 +00:00
|
|
|
Lookup(deviceID protocol.DeviceID) (address []string, err error)
|
2015-09-20 13:30:25 +00:00
|
|
|
Error() error
|
|
|
|
String() string
|
|
|
|
Cache() map[protocol.DeviceID]CacheEntry
|
2015-09-12 19:59:15 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 20:52:06 +00:00
|
|
|
type CacheEntry struct {
|
2016-05-04 19:38:12 +00:00
|
|
|
Addresses []string `json:"addresses"`
|
2015-12-01 08:57:53 +00:00
|
|
|
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
|
2016-07-04 11:16:48 +00:00
|
|
|
instanceID int64 // for local discovery, the instance ID (random on each restart)
|
2014-08-14 10:44:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 13:30:25 +00: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-02 06:53:19 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 13:30:25 +00:00
|
|
|
type FinderMux interface {
|
|
|
|
Finder
|
|
|
|
ChildStatus() map[string]error
|
2014-05-13 00:50:54 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 13:30:25 +00:00
|
|
|
// The AddressLister answers questions about what addresses we are listening
|
|
|
|
// on.
|
|
|
|
type AddressLister interface {
|
|
|
|
ExternalAddresses() []string
|
|
|
|
AllAddresses() []string
|
2015-06-23 12:55:30 +00:00
|
|
|
}
|