mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-10 18:22:37 +01:00
This file was never truly necessary and has never actually been used in the history of Tailscale's open source releases. A Brief History of AUTHORS files --- The AUTHORS file was a pattern developed at Google, originally for Chromium, then adopted by Go and a bunch of other projects. The problem was that Chromium originally had a copyright line only recognizing Google as the copyright holder. Because Google (and most open source projects) do not require copyright assignemnt for contributions, each contributor maintains their copyright. Some large corporate contributors then tried to add their own name to the copyright line in the LICENSE file or in file headers. This quickly becomes unwieldy, and puts a tremendous burden on anyone building on top of Chromium, since the license requires that they keep all copyright lines intact. The compromise was to create an AUTHORS file that would list all of the copyright holders. The LICENSE file and source file headers would then include that list by reference, listing the copyright holder as "The Chromium Authors". This also become cumbersome to simply keep the file up to date with a high rate of new contributors. Plus it's not always obvious who the copyright holder is. Sometimes it is the individual making the contribution, but many times it may be their employer. There is no way for the proejct maintainer to know. Eventually, Google changed their policy to no longer recommend trying to keep the AUTHORS file up to date proactively, and instead to only add to it when requested: https://opensource.google/docs/releasing/authors. They are also clear that: > Adding contributors to the AUTHORS file is entirely within the > project's discretion and has no implications for copyright ownership. It was primarily added to appease a small number of large contributors that insisted that they be recognized as copyright holders (which was entirely their right to do). But it's not truly necessary, and not even the most accurate way of identifying contributors and/or copyright holders. In practice, we've never added anyone to our AUTHORS file. It only lists Tailscale, so it's not really serving any purpose. It also causes confusion because Tailscalars put the "Tailscale Inc & AUTHORS" header in other open source repos which don't actually have an AUTHORS file, so it's ambiguous what that means. Instead, we just acknowledge that the contributors to Tailscale (whoever they are) are copyright holders for their individual contributions. We also have the benefit of using the DCO (developercertificate.org) which provides some additional certification of their right to make the contribution. The source file changes were purely mechanical with: git ls-files | xargs sed -i -e 's/\(Tailscale Inc &\) AUTHORS/\1 contributors/g' Updates #cleanup Change-Id: Ia101a4a3005adb9118051b3416f5a64a4a45987d Signed-off-by: Will Norris <will@tailscale.com>
202 lines
5.7 KiB
Go
202 lines
5.7 KiB
Go
// Copyright (c) Tailscale Inc & contributors
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package slicesx contains some helpful generic slice functions.
|
|
package slicesx
|
|
|
|
import (
|
|
"math/rand/v2"
|
|
"slices"
|
|
)
|
|
|
|
// Interleave combines two slices of the form [a, b, c] and [x, y, z] into a
|
|
// slice with elements interleaved; i.e. [a, x, b, y, c, z].
|
|
func Interleave[S ~[]T, T any](a, b S) S {
|
|
// Avoid allocating an empty slice.
|
|
if a == nil && b == nil {
|
|
return nil
|
|
}
|
|
|
|
var (
|
|
i int
|
|
ret = make([]T, 0, len(a)+len(b))
|
|
)
|
|
for i = 0; i < len(a) && i < len(b); i++ {
|
|
ret = append(ret, a[i], b[i])
|
|
}
|
|
ret = append(ret, a[i:]...)
|
|
ret = append(ret, b[i:]...)
|
|
return ret
|
|
}
|
|
|
|
// Shuffle randomly shuffles a slice in-place, similar to rand.Shuffle.
|
|
func Shuffle[S ~[]T, T any](s S) {
|
|
// TODO(andrew): use a pooled Rand?
|
|
|
|
// This is the same Fisher-Yates shuffle implementation as rand.Shuffle
|
|
n := len(s)
|
|
i := n - 1
|
|
for ; i > 1<<31-1-1; i-- {
|
|
j := int(rand.N(int64(i + 1)))
|
|
s[i], s[j] = s[j], s[i]
|
|
}
|
|
for ; i > 0; i-- {
|
|
j := int(rand.N(int32(i + 1)))
|
|
s[i], s[j] = s[j], s[i]
|
|
}
|
|
}
|
|
|
|
// Partition returns two slices, the first containing the elements of the input
|
|
// slice for which the callback evaluates to true, the second containing the rest.
|
|
//
|
|
// This function does not mutate s.
|
|
func Partition[S ~[]T, T any](s S, cb func(T) bool) (trues, falses S) {
|
|
for _, elem := range s {
|
|
if cb(elem) {
|
|
trues = append(trues, elem)
|
|
} else {
|
|
falses = append(falses, elem)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// EqualSameNil reports whether two slices are equal: the same length, same
|
|
// nilness (notably when length zero), and all elements equal. If the lengths
|
|
// are different or their nilness differs, Equal returns false. Otherwise, the
|
|
// elements are compared in increasing index order, and the comparison stops at
|
|
// the first unequal pair. Floating point NaNs are not considered equal.
|
|
//
|
|
// It is identical to the standard library's slices.Equal but adds the matching
|
|
// nilness check.
|
|
func EqualSameNil[S ~[]E, E comparable](s1, s2 S) bool {
|
|
if len(s1) != len(s2) || (s1 == nil) != (s2 == nil) {
|
|
return false
|
|
}
|
|
for i := range s1 {
|
|
if s1[i] != s2[i] {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Filter calls fn with each element of the provided src slice, and appends the
|
|
// element to dst if fn returns true.
|
|
//
|
|
// dst can be nil to allocate a new slice, or set to src[:0] to filter in-place
|
|
// without allocating.
|
|
func Filter[S ~[]T, T any](dst, src S, fn func(T) bool) S {
|
|
for _, x := range src {
|
|
if fn(x) {
|
|
dst = append(dst, x)
|
|
}
|
|
}
|
|
return dst
|
|
}
|
|
|
|
// AppendNonzero appends all non-zero elements of src to dst.
|
|
func AppendNonzero[S ~[]T, T comparable](dst, src S) S {
|
|
var zero T
|
|
for _, v := range src {
|
|
if v != zero {
|
|
dst = append(dst, v)
|
|
}
|
|
}
|
|
return dst
|
|
}
|
|
|
|
// AppendMatching appends elements in ps to dst if f(x) is true.
|
|
func AppendMatching[T any](dst, ps []T, f func(T) bool) []T {
|
|
for _, p := range ps {
|
|
if f(p) {
|
|
dst = append(dst, p)
|
|
}
|
|
}
|
|
return dst
|
|
}
|
|
|
|
// HasPrefix reports whether the byte slice s begins with prefix.
|
|
func HasPrefix[E comparable](s, prefix []E) bool {
|
|
return len(s) >= len(prefix) && slices.Equal(s[0:len(prefix)], prefix)
|
|
}
|
|
|
|
// HasSuffix reports whether the slice s ends with suffix.
|
|
func HasSuffix[E comparable](s, suffix []E) bool {
|
|
return len(s) >= len(suffix) && slices.Equal(s[len(s)-len(suffix):], suffix)
|
|
}
|
|
|
|
// CutPrefix returns s without the provided leading prefix slice and reports
|
|
// whether it found the prefix. If s doesn't start with prefix, CutPrefix
|
|
// returns s, false. If prefix is the empty slice, CutPrefix returns s, true.
|
|
// CutPrefix returns slices of the original slice s, not copies.
|
|
func CutPrefix[E comparable](s, prefix []E) (after []E, found bool) {
|
|
if !HasPrefix(s, prefix) {
|
|
return s, false
|
|
}
|
|
return s[len(prefix):], true
|
|
}
|
|
|
|
// CutSuffix returns s without the provided ending suffix slice and reports
|
|
// whether it found the suffix. If s doesn't end with suffix, CutSuffix returns
|
|
// s, false. If suffix is the empty slice, CutSuffix returns s, true.
|
|
// CutSuffix returns slices of the original slice s, not copies.
|
|
func CutSuffix[E comparable](s, suffix []E) (after []E, found bool) {
|
|
if !HasSuffix(s, suffix) {
|
|
return s, false
|
|
}
|
|
return s[:len(s)-len(suffix)], true
|
|
}
|
|
|
|
// FirstEqual reports whether len(s) > 0 and
|
|
// its first element == v.
|
|
func FirstEqual[T comparable](s []T, v T) bool {
|
|
return len(s) > 0 && s[0] == v
|
|
}
|
|
|
|
// LastEqual reports whether len(s) > 0 and
|
|
// its last element == v.
|
|
func LastEqual[T comparable](s []T, v T) bool {
|
|
return len(s) > 0 && s[len(s)-1] == v
|
|
}
|
|
|
|
// MapKeys returns the values of the map m.
|
|
//
|
|
// The keys will be in an indeterminate order.
|
|
//
|
|
// It's equivalent to golang.org/x/exp/maps.Keys, which
|
|
// unfortunately has the package name "maps", shadowing
|
|
// the std "maps" package. This version exists for clarity
|
|
// when reading call sites.
|
|
//
|
|
// As opposed to slices.Collect(maps.Keys(m)), this allocates
|
|
// the returned slice once to exactly the right size, rather than
|
|
// appending larger backing arrays as it goes.
|
|
func MapKeys[M ~map[K]V, K comparable, V any](m M) []K {
|
|
r := make([]K, 0, len(m))
|
|
for k := range m {
|
|
r = append(r, k)
|
|
}
|
|
return r
|
|
}
|
|
|
|
// MapValues returns the values of the map m.
|
|
//
|
|
// The values will be in an indeterminate order.
|
|
//
|
|
// It's equivalent to golang.org/x/exp/maps.Values, which
|
|
// unfortunately has the package name "maps", shadowing
|
|
// the std "maps" package. This version exists for clarity
|
|
// when reading call sites.
|
|
//
|
|
// As opposed to slices.Collect(maps.Values(m)), this allocates
|
|
// the returned slice once to exactly the right size, rather than
|
|
// appending larger backing arrays as it goes.
|
|
func MapValues[M ~map[K]V, K comparable, V any](m M) []V {
|
|
r := make([]V, 0, len(m))
|
|
for _, v := range m {
|
|
r = append(r, v)
|
|
}
|
|
return r
|
|
}
|