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,
|
2017-02-08 23:52:18 -07:00
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
2014-06-01 13:50:14 -07:00
|
|
|
|
2013-12-15 03:43:31 -07:00
|
|
|
package discover
|
|
|
|
|
|
|
|
import (
|
2020-02-13 06:43:00 -07:00
|
|
|
"context"
|
2013-12-15 03:43:31 -07:00
|
|
|
"time"
|
2013-12-24 09:10:49 -07:00
|
|
|
|
2015-09-22 10:38:46 -07:00
|
|
|
"github.com/syncthing/syncthing/lib/protocol"
|
2020-11-17 05:19:04 -07:00
|
|
|
"github.com/thejerf/suture/v4"
|
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 {
|
2020-02-13 06:43:00 -07:00
|
|
|
Lookup(ctx context.Context, deviceID protocol.DeviceID) (address []string, err error)
|
2015-09-20 06:30:25 -07:00
|
|
|
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 {
|
2016-05-04 12:38:12 -07:00
|
|
|
Addresses []string `json:"addresses"`
|
2015-12-01 01:57:53 -07: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 04:16:48 -07:00
|
|
|
instanceID int64 // for local discovery, the instance ID (random on each restart)
|
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
|
|
|
// 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
|
|
|
}
|