mirror of
https://github.com/tailscale/tailscale.git
synced 2026-07-20 21:23:07 +08:00
tsdial.Dialer.SetNetMap rebuilt an O(n peers) map of MagicDNS names on every netmap change. As we move toward per-peer incremental deltas, this becomes quadratic. This removes it and replaces it with SetResolveMagicDNS, a callback into LocalBackend that looks up hostnames from nodeBackend's new nodeByName index (populated alongside nodeByAddr/nodeByKey on both full and delta paths). The index stores both FQDNs and short names as keys. This is the same treatment applied to netlog (8f210454d), wglog (988b0905b), and drive (1d6989408): stop pushing *netmap.NetworkMap into subsystems and instead have them pull from LocalBackend's live data via callbacks. Updates #12542 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com> Change-Id: I24557ab0c8a27636e08e4779bcfd3ec633db0a78
29 lines
759 B
Go
29 lines
759 B
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package mapx
|
|
|
|
// RepopulateNonzero re-uses an existing map (preserving its allocated
|
|
// buckets) by zeroing all values, calling populate to re-fill it, and
|
|
// then deleting any entries still at their zero value. If *m is nil it
|
|
// is lazily initialized.
|
|
//
|
|
// This avoids the allocation cost of creating a new map on every call,
|
|
// which matters for maps that are rebuilt frequently (e.g. on every
|
|
// netmap update).
|
|
func RepopulateNonzero[K comparable, V comparable](m *map[K]V, populate func()) {
|
|
if *m == nil {
|
|
*m = make(map[K]V)
|
|
}
|
|
var zero V
|
|
for k := range *m {
|
|
(*m)[k] = zero
|
|
}
|
|
populate()
|
|
for k, v := range *m {
|
|
if v == zero {
|
|
delete(*m, k)
|
|
}
|
|
}
|
|
}
|