mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
CHORE: remove pkg/natsort which is unused (#2426)
This commit is contained in:
@ -1,4 +0,0 @@
|
||||
This is from https://godoc.org/bitbucket.org/zombiezen/cardcpx/natsort
|
||||
|
||||
I modified it to be compatible with the Python natsort package.
|
||||
I'll move this to vendor/ once he accepts our PR.
|
@ -1,201 +0,0 @@
|
||||
/*
|
||||
Copyright 2014 Google Inc. All rights reserved.
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
*/
|
||||
|
||||
// Package natsort provides an implementation of the natural sorting algorithm.
|
||||
// See http://blog.codinghorror.com/sorting-for-humans-natural-sort-order/.
|
||||
package natsort
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Strings sorts a slice of strings with Less.
|
||||
func Strings(s []string) {
|
||||
sort.Sort(stringSlice(s))
|
||||
}
|
||||
|
||||
// Less reports whether s is less than t.
|
||||
func Less(s, t string) bool {
|
||||
return LessRunes([]rune(s), []rune(t))
|
||||
}
|
||||
|
||||
// LessRunes reports whether s is less than t.
|
||||
func LessRunes(s, t []rune) bool {
|
||||
|
||||
nprefix := commonPrefix(s, t)
|
||||
// equal?
|
||||
if len(s) == nprefix && len(t) == nprefix {
|
||||
return false
|
||||
}
|
||||
// empty strings are less than anything.
|
||||
if len(s) == 0 || len(t) == 0 {
|
||||
return len(s) == 0
|
||||
}
|
||||
|
||||
// both start numeric? Sort by the prefixed digits.
|
||||
lds := leadDigits(s)
|
||||
ldt := leadDigits(t)
|
||||
if lds != 0 && ldt != 0 { // both start with a digit
|
||||
if lds == len(s) && ldt == len(t) { // s and t are all digits.
|
||||
if lds == ldt {
|
||||
// equal length? compare as strings.
|
||||
return string(s) < string(t)
|
||||
}
|
||||
// otherwise, the shorter one is smaller.
|
||||
return lds < ldt
|
||||
}
|
||||
ss := string(s[:lds])
|
||||
st := string(t[:ldt])
|
||||
ns, _ := strconv.Atoi(ss)
|
||||
nt, _ := strconv.Atoi(st)
|
||||
if ns == nt && lds != ldt {
|
||||
return lds < ldt
|
||||
}
|
||||
return ns < nt
|
||||
}
|
||||
|
||||
// * < digit
|
||||
if strings.HasPrefix(string(s), "*") || strings.HasPrefix(string(t), "*") {
|
||||
if isDigit(t[0]) {
|
||||
return false
|
||||
}
|
||||
if isDigit(s[0]) {
|
||||
return true
|
||||
}
|
||||
return string(s) < string(t)
|
||||
}
|
||||
sps := string(s[nprefix:])
|
||||
tps := string(t[nprefix:])
|
||||
if strings.HasPrefix(sps, "-") || strings.HasPrefix(tps, "-") {
|
||||
// digits < -
|
||||
if leadDigits(s[nprefix:]) > 0 && strings.HasPrefix(tps, "-") {
|
||||
return true
|
||||
}
|
||||
if leadDigits(t[nprefix:]) > 0 && strings.HasPrefix(sps, "-") {
|
||||
return false
|
||||
}
|
||||
// . < -
|
||||
if strings.HasPrefix(sps, ".") && strings.HasPrefix(tps, "-") {
|
||||
return false
|
||||
}
|
||||
if strings.HasPrefix(sps, "-") && strings.HasPrefix(tps, ".") {
|
||||
return true
|
||||
}
|
||||
}
|
||||
// digits < .
|
||||
if leadDigits(s[nprefix:]) > 0 && strings.HasPrefix(tps, ".") {
|
||||
return true
|
||||
}
|
||||
if leadDigits(t[nprefix:]) > 0 && strings.HasPrefix(sps, ".") {
|
||||
return false
|
||||
}
|
||||
sEnd := leadDigits(s[nprefix:]) + nprefix
|
||||
tEnd := leadDigits(t[nprefix:]) + nprefix
|
||||
if sEnd > nprefix || tEnd > nprefix {
|
||||
start := trailDigits(s[:nprefix])
|
||||
if sEnd-start > 0 && tEnd-start > 0 {
|
||||
// TODO(light): log errors?
|
||||
sn := atoi(s[start:sEnd])
|
||||
tn := atoi(t[start:tEnd])
|
||||
if sn != tn {
|
||||
return sn < tn
|
||||
}
|
||||
}
|
||||
}
|
||||
switch {
|
||||
case len(s) == nprefix:
|
||||
return true
|
||||
case len(t) == nprefix:
|
||||
return false
|
||||
default:
|
||||
return s[nprefix] < t[nprefix]
|
||||
}
|
||||
}
|
||||
|
||||
func isDigit(r rune) bool {
|
||||
return '0' <= r && r <= '9'
|
||||
}
|
||||
|
||||
func atoi(r []rune) uint64 {
|
||||
if len(r) < 1 {
|
||||
panic(errors.New("atoi got an empty slice"))
|
||||
}
|
||||
const cutoff = uint64((1<<64-1)/10 + 1)
|
||||
const maxVal = 1<<64 - 1
|
||||
|
||||
var n uint64
|
||||
for _, d := range r {
|
||||
v := uint64(d - '0')
|
||||
if n >= cutoff {
|
||||
return 1<<64 - 1
|
||||
}
|
||||
n *= 10
|
||||
n1 := n + v
|
||||
if n1 < n || n1 > maxVal {
|
||||
// n+v overflows
|
||||
return 1<<64 - 1
|
||||
}
|
||||
n = n1
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func commonPrefix(s, t []rune) int {
|
||||
for i := range s {
|
||||
if i >= len(t) {
|
||||
return len(t)
|
||||
}
|
||||
if s[i] != t[i] {
|
||||
return i
|
||||
}
|
||||
}
|
||||
return len(s)
|
||||
}
|
||||
|
||||
func trailDigits(r []rune) int {
|
||||
for i := len(r) - 1; i >= 0; i-- {
|
||||
if !isDigit(r[i]) {
|
||||
return i + 1
|
||||
}
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func leadDigits(r []rune) int {
|
||||
for i := range r {
|
||||
if !isDigit(r[i]) {
|
||||
return i
|
||||
}
|
||||
}
|
||||
return len(r)
|
||||
}
|
||||
|
||||
type stringSlice []string
|
||||
|
||||
func (ss stringSlice) Len() int {
|
||||
return len(ss)
|
||||
}
|
||||
|
||||
func (ss stringSlice) Less(i, j int) bool {
|
||||
return Less(ss[i], ss[j])
|
||||
}
|
||||
|
||||
func (ss stringSlice) Swap(i, j int) {
|
||||
ss[i], ss[j] = ss[j], ss[i]
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
package natsort
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestLess(t *testing.T) {
|
||||
|
||||
tests := []struct {
|
||||
d1, d2 string
|
||||
}{
|
||||
|
||||
{``, `x`},
|
||||
{`foo3`, `foo10`},
|
||||
{`foo2`, `foo40`},
|
||||
{`ny-dc01.ds`, `ny-dc-vpn`},
|
||||
{`20161108174726pm._domainkey`, `*`},
|
||||
{`co-dc01.ds.stackexchange.com`, `co-dc-vpn.stackexchange.com`},
|
||||
|
||||
// Bug#4: [a1 a#1 a_1 aa]
|
||||
//{`a1`, `a#1`},
|
||||
{`a#1`, `a_1`},
|
||||
{`a_1`, `aa`},
|
||||
|
||||
// Bug#4: [1 #1 _1 a]
|
||||
//{`1`, `#1`}, // Not implemented
|
||||
{`#1`, `_1`},
|
||||
{`_1`, `a`},
|
||||
|
||||
// Bug#4: [1 01 2 02 3]
|
||||
{`1`, `01`},
|
||||
{`2`, `02`},
|
||||
//{`02`, `3`}, // Not implemented
|
||||
|
||||
// Bug#4: [111111111111111111112 111111111111111111113 1111111111111111111120]
|
||||
{`111111111111111111112`, `111111111111111111113`},
|
||||
{`111111111111111111113`, `1111111111111111111120`},
|
||||
}
|
||||
for i, test := range tests {
|
||||
r1 := Less(test.d1, test.d2)
|
||||
if r1 != true {
|
||||
t.Errorf("%va: expected (%v) got (%v): (%v) < (%v)", i, true, r1, test.d1, test.d2)
|
||||
} else {
|
||||
r2 := Less(test.d2, test.d1)
|
||||
if r2 == true {
|
||||
t.Errorf("%vb: expected (%v) got (%v): (%v) < (%v)", i, false, r2, test.d1, test.d2)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestEqual(t *testing.T) {
|
||||
|
||||
tests := []struct {
|
||||
d1, d2 string
|
||||
}{
|
||||
{``, ``},
|
||||
}
|
||||
for i, test := range tests {
|
||||
r1 := Less(test.d1, test.d2)
|
||||
if r1 != false {
|
||||
t.Errorf("%va: expected (%v) got (%v): (%v) < (%v)", i, false, r1, test.d1, test.d2)
|
||||
} else {
|
||||
r2 := Less(test.d2, test.d1)
|
||||
if r2 != false {
|
||||
t.Errorf("%vb: expected (%v) got (%v): (%v) < (%v)", i, false, r2, test.d1, test.d2)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user