2020-08-06 20:58:47 +03:00
|
|
|
// Package stringz contains string functions similar in spirit
|
|
|
|
// to the stdlib strings package.
|
|
|
|
package stringz
|
|
|
|
|
|
|
|
import (
|
2020-10-20 18:05:43 +03:00
|
|
|
"bufio"
|
2020-08-06 20:58:47 +03:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2020-10-20 18:05:43 +03:00
|
|
|
"io"
|
2022-12-17 01:54:09 +03:00
|
|
|
"math/rand"
|
2023-04-09 17:44:27 +03:00
|
|
|
"reflect"
|
2023-04-07 11:00:49 +03:00
|
|
|
"regexp"
|
2020-08-06 20:58:47 +03:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
"unicode"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
|
2020-08-23 13:42:15 +03:00
|
|
|
"github.com/neilotoole/sq/libsq/core/errz"
|
2020-08-06 20:58:47 +03:00
|
|
|
)
|
|
|
|
|
2023-01-01 06:17:44 +03:00
|
|
|
// Redacted is the "xxxxx" string used for redacted
|
2023-04-01 11:38:32 +03:00
|
|
|
// values, such as passwords. We use "xxxxx" instead
|
|
|
|
// of the arguably prettier "*****" because stdlib
|
|
|
|
// uses this for redacted strings.
|
|
|
|
//
|
|
|
|
// See: url.URL.Redacted.
|
2023-01-01 06:17:44 +03:00
|
|
|
const Redacted = "xxxxx"
|
|
|
|
|
2022-12-18 09:42:11 +03:00
|
|
|
func init() { //nolint:gochecknoinits
|
2023-04-01 11:38:32 +03:00
|
|
|
rand.New(rand.NewSource(time.Now().UnixNano())) //nolint:gosec
|
2022-12-17 07:59:42 +03:00
|
|
|
}
|
|
|
|
|
2020-08-06 20:58:47 +03:00
|
|
|
// Reverse reverses the input string.
|
|
|
|
func Reverse(input string) string {
|
|
|
|
n := 0
|
|
|
|
runes := make([]rune, len(input))
|
|
|
|
for _, r := range input {
|
|
|
|
runes[n] = r
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
runes = runes[0:n]
|
|
|
|
// Reverse
|
|
|
|
for i := 0; i < n/2; i++ {
|
|
|
|
runes[i], runes[n-1-i] = runes[n-1-i], runes[i]
|
|
|
|
}
|
|
|
|
// Convert back to UTF-8.
|
|
|
|
return string(runes)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenerateAlphaColName returns an Excel-style column name
|
|
|
|
// for index n, starting with A, B, C... and continuing
|
|
|
|
// to AA, AB, AC, etc...
|
2020-08-24 05:32:59 +03:00
|
|
|
func GenerateAlphaColName(n int, lower bool) string {
|
|
|
|
start := 'A'
|
|
|
|
if lower {
|
|
|
|
start = 'a'
|
|
|
|
}
|
|
|
|
|
|
|
|
return genAlphaCol(n, start, 26)
|
2020-08-06 20:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func genAlphaCol(n int, start rune, lenAlpha int) string {
|
|
|
|
buf := &bytes.Buffer{}
|
|
|
|
for ; n >= 0; n = (n / lenAlpha) - 1 {
|
|
|
|
buf.WriteRune(rune(n%lenAlpha) + start)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Reverse(buf.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseBool is an expansion of strconv.ParseBool that also
|
|
|
|
// accepts variants of "yes" and "no" (which are bool
|
|
|
|
// representations returned by some data sources).
|
|
|
|
func ParseBool(s string) (bool, error) {
|
|
|
|
switch s {
|
|
|
|
default:
|
|
|
|
b, err := strconv.ParseBool(s)
|
|
|
|
if err != nil {
|
|
|
|
return b, errz.Err(err)
|
|
|
|
}
|
|
|
|
return b, nil
|
2023-05-19 17:24:18 +03:00
|
|
|
case "1", "yes", "Yes", "YES", "y", "Y", "on", "ON":
|
2020-08-06 20:58:47 +03:00
|
|
|
return true, nil
|
2023-05-19 17:24:18 +03:00
|
|
|
case "0", "no", "No", "NO", "n", "N", "off", "OFF":
|
2020-08-06 20:58:47 +03:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// InSlice returns true if the needle is present in the haystack.
|
|
|
|
func InSlice(haystack []string, needle string) bool {
|
|
|
|
return SliceIndex(haystack, needle) != -1
|
|
|
|
}
|
|
|
|
|
|
|
|
// SliceIndex returns the index of needle in haystack, or -1.
|
|
|
|
func SliceIndex(haystack []string, needle string) int {
|
|
|
|
for i, item := range haystack {
|
|
|
|
if item == needle {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
// FormatFloat formats f. This method exists to provide a standard
|
|
|
|
// float formatting across the codebase.
|
|
|
|
func FormatFloat(f float64) string {
|
|
|
|
return strconv.FormatFloat(f, 'f', -1, 64)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ByteSized returns a human-readable byte size, e.g. "2.1 MB", "3.0 TB", etc.
|
2023-05-03 15:36:10 +03:00
|
|
|
// TODO: replace this usage with "github.com/c2h5oh/datasize",
|
|
|
|
// or maybe https://github.com/docker/go-units/.
|
2020-08-06 20:58:47 +03:00
|
|
|
func ByteSized(size int64, precision int, sep string) string {
|
|
|
|
f := float64(size)
|
|
|
|
tpl := "%." + strconv.Itoa(precision) + "f" + sep
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case f >= yb:
|
|
|
|
return fmt.Sprintf(tpl+"YB", f/yb)
|
|
|
|
case f >= zb:
|
|
|
|
return fmt.Sprintf(tpl+"ZB", f/zb)
|
|
|
|
case f >= eb:
|
|
|
|
return fmt.Sprintf(tpl+"EB", f/eb)
|
|
|
|
case f >= pb:
|
|
|
|
return fmt.Sprintf(tpl+"PB", f/pb)
|
|
|
|
case f >= tb:
|
|
|
|
return fmt.Sprintf(tpl+"TB", f/tb)
|
|
|
|
case f >= gb:
|
|
|
|
return fmt.Sprintf(tpl+"GB", f/gb)
|
|
|
|
case f >= mb:
|
|
|
|
return fmt.Sprintf(tpl+"MB", f/mb)
|
|
|
|
case f >= kb:
|
|
|
|
return fmt.Sprintf(tpl+"KB", f/kb)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf(tpl+"B", f)
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ = iota // ignore first value by assigning to blank identifier
|
|
|
|
kb float64 = 1 << (10 * iota)
|
|
|
|
mb
|
|
|
|
gb
|
|
|
|
tb
|
|
|
|
pb
|
|
|
|
eb
|
|
|
|
zb
|
|
|
|
yb
|
|
|
|
)
|
|
|
|
|
2022-12-17 02:34:33 +03:00
|
|
|
func SprintJSON(value any) string {
|
2020-08-06 20:58:47 +03:00
|
|
|
j, err := json.MarshalIndent(value, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return string(j)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UUID returns a new UUID string.
|
|
|
|
func UUID() string {
|
|
|
|
return uuid.New().String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uniq32 returns a UUID-like string that only contains
|
|
|
|
// alphanumeric chars. The result has length 32.
|
2022-12-17 01:54:09 +03:00
|
|
|
// The first element is guaranteed to be a letter.
|
2020-08-06 20:58:47 +03:00
|
|
|
func Uniq32() string {
|
2022-12-17 01:54:09 +03:00
|
|
|
return UniqN(32)
|
2020-08-06 20:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Uniq8 returns a UUID-like string that only contains
|
|
|
|
// alphanumeric chars. The result has length 8.
|
2022-12-17 01:54:09 +03:00
|
|
|
// The first element is guaranteed to be a letter.
|
2020-08-06 20:58:47 +03:00
|
|
|
func Uniq8() string {
|
|
|
|
// I'm sure there's a more efficient way of doing this, but
|
|
|
|
// this is fine for now.
|
2022-12-17 01:54:09 +03:00
|
|
|
return UniqN(8)
|
2020-08-06 20:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// UniqSuffix returns s with a unique suffix.
|
|
|
|
func UniqSuffix(s string) string {
|
|
|
|
return s + "_" + Uniq8()
|
|
|
|
}
|
|
|
|
|
2022-12-17 01:54:09 +03:00
|
|
|
// UniqPrefix returns s with a unique prefix.
|
|
|
|
func UniqPrefix(s string) string {
|
|
|
|
return Uniq8() + "_" + s
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
// charsetAlphanumericLower is a set of characters to generate from. Note
|
|
|
|
// that ambiguous chars such as "i" or "j" are excluded.
|
|
|
|
charsetAlphanumericLower = "abcdefghkrstuvwxyz2345689"
|
|
|
|
|
|
|
|
// charsetAlphaLower is similar to charsetAlphanumericLower, but
|
|
|
|
// without numbers.
|
|
|
|
charsetAlphaLower = "abcdefghkrstuvwxyz"
|
|
|
|
)
|
|
|
|
|
|
|
|
func stringWithCharset(length int, charset string) string {
|
|
|
|
if charset == "" {
|
|
|
|
panic("charset has zero length")
|
|
|
|
}
|
|
|
|
|
|
|
|
if length <= 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
b := make([]byte, length)
|
|
|
|
for i := range b {
|
2022-12-18 08:16:10 +03:00
|
|
|
b[i] = charset[rand.Intn(len(charset))] //#nosec G404 // Doesn't need to be strongly random
|
2022-12-17 01:54:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UniqN returns a uniq string of length n. The first element is
|
|
|
|
// guaranteed to be a letter.
|
|
|
|
func UniqN(length int) string {
|
|
|
|
switch {
|
|
|
|
case length <= 0:
|
|
|
|
return ""
|
|
|
|
case length == 1:
|
|
|
|
return stringWithCharset(1, charsetAlphaLower)
|
|
|
|
default:
|
|
|
|
return stringWithCharset(1, charsetAlphaLower) + stringWithCharset(length-1, charsetAlphanumericLower)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-06 20:58:47 +03:00
|
|
|
// Plu handles the most common (English language) case of
|
|
|
|
// pluralization. With arg s being "row(s) col(s)", Plu
|
|
|
|
// returns "row col" if arg i is 1, otherwise returns "rows cols".
|
|
|
|
func Plu(s string, i int) string {
|
|
|
|
if i == 1 {
|
2022-12-18 09:07:38 +03:00
|
|
|
return strings.ReplaceAll(s, "(s)", "")
|
2020-08-06 20:58:47 +03:00
|
|
|
}
|
2022-12-18 09:07:38 +03:00
|
|
|
return strings.ReplaceAll(s, "(s)", "s")
|
2020-08-06 20:58:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// RepeatJoin returns a string consisting of count copies
|
|
|
|
// of s separated by sep. For example:
|
|
|
|
//
|
2022-12-17 01:54:09 +03:00
|
|
|
// stringz.RepeatJoin("?", 3, ", ") == "?, ?, ?"
|
2020-08-06 20:58:47 +03:00
|
|
|
func RepeatJoin(s string, count int, sep string) string {
|
|
|
|
if s == "" || count == 0 {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
if count == 1 {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
var b strings.Builder
|
|
|
|
b.Grow(len(s)*count + len(sep)*(count-1))
|
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
b.WriteString(s)
|
|
|
|
if i < count-1 {
|
|
|
|
b.WriteString(sep)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Surround returns s prefixed and suffixed with w.
|
|
|
|
func Surround(s, w string) string {
|
|
|
|
sb := strings.Builder{}
|
|
|
|
sb.Grow(len(s) + len(w)*2)
|
|
|
|
sb.WriteString(w)
|
|
|
|
sb.WriteString(s)
|
|
|
|
sb.WriteString(w)
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SurroundSlice returns a new slice with each element
|
|
|
|
// of a prefixed and suffixed with w, unless a is nil,
|
|
|
|
// in which case nil is returned.
|
|
|
|
func SurroundSlice(a []string, w string) []string {
|
|
|
|
if a == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(a) == 0 {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
ret := make([]string, len(a))
|
|
|
|
sb := strings.Builder{}
|
|
|
|
for i := 0; i < len(a); i++ {
|
|
|
|
sb.Grow(len(a[i]) + len(w)*2)
|
|
|
|
sb.WriteString(w)
|
|
|
|
sb.WriteString(a[i])
|
|
|
|
sb.WriteString(w)
|
|
|
|
ret[i] = sb.String()
|
|
|
|
sb.Reset()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrefixSlice returns a new slice with each element
|
|
|
|
// of a prefixed with w, unless a is nil, in which
|
|
|
|
// case nil is returned.
|
|
|
|
func PrefixSlice(a []string, w string) []string {
|
|
|
|
if a == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(a) == 0 {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
ret := make([]string, len(a))
|
|
|
|
sb := strings.Builder{}
|
|
|
|
for i := 0; i < len(a); i++ {
|
|
|
|
sb.Grow(len(a[i]) + len(w))
|
|
|
|
sb.WriteString(w)
|
|
|
|
sb.WriteString(a[i])
|
|
|
|
ret[i] = sb.String()
|
|
|
|
sb.Reset()
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2023-04-16 01:28:51 +03:00
|
|
|
// SuffixSlice returns a new slice containing each element
|
|
|
|
// of a with suffix w. If a is nil, nil is returned.
|
|
|
|
func SuffixSlice(a []string, w string) []string {
|
|
|
|
if a == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if len(a) == 0 {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
for i := range a {
|
|
|
|
a[i] += w
|
|
|
|
}
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
|
2020-08-06 20:58:47 +03:00
|
|
|
// UniqTableName returns a new lower-case table name based on
|
|
|
|
// tbl, with a unique suffix, and a maximum length of 63. This
|
|
|
|
// value of 63 is chosen because it's less than the maximum table name
|
|
|
|
// length for Postgres, SQL Server, SQLite and MySQL.
|
|
|
|
func UniqTableName(tbl string) string {
|
|
|
|
const maxLength = 63
|
|
|
|
tbl = strings.TrimSpace(tbl)
|
|
|
|
tbl = strings.ToLower(tbl)
|
|
|
|
if tbl == "" {
|
|
|
|
tbl = "tbl"
|
|
|
|
}
|
|
|
|
|
|
|
|
suffix := "__" + Uniq8()
|
|
|
|
if len(tbl) > maxLength-len(suffix) {
|
|
|
|
tbl = tbl[0 : maxLength-len(suffix)]
|
|
|
|
}
|
|
|
|
tbl += suffix
|
|
|
|
|
|
|
|
// paranoid sanitization
|
2022-12-18 09:07:38 +03:00
|
|
|
tbl = strings.ReplaceAll(tbl, "@", "_")
|
|
|
|
tbl = strings.ReplaceAll(tbl, "/", "_")
|
2020-08-06 20:58:47 +03:00
|
|
|
|
|
|
|
return tbl
|
|
|
|
}
|
|
|
|
|
|
|
|
// SanitizeAlphaNumeric replaces any non-alphanumeric
|
|
|
|
// runes of s with r (which is typically underscore).
|
|
|
|
//
|
2022-12-17 01:54:09 +03:00
|
|
|
// a#2%3.4_ --> a_2_3_4_
|
2020-08-06 20:58:47 +03:00
|
|
|
func SanitizeAlphaNumeric(s string, r rune) string {
|
|
|
|
runes := []rune(s)
|
|
|
|
|
|
|
|
for i, v := range runes {
|
|
|
|
switch {
|
|
|
|
case v == r, unicode.IsLetter(v), unicode.IsNumber(v):
|
|
|
|
default:
|
|
|
|
runes[i] = r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(runes)
|
|
|
|
}
|
2020-10-20 18:05:43 +03:00
|
|
|
|
|
|
|
// LineCount returns the number of lines in r. If skipEmpty is
|
|
|
|
// true, empty lines are skipped (a whitespace-only line is not
|
|
|
|
// considered empty). If r is nil or any error occurs, -1 is returned.
|
|
|
|
func LineCount(r io.Reader, skipEmpty bool) int {
|
|
|
|
if r == nil {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
sc := bufio.NewScanner(r)
|
|
|
|
var i int
|
|
|
|
|
|
|
|
if skipEmpty {
|
|
|
|
for sc.Scan() {
|
|
|
|
if len(sc.Bytes()) > 0 {
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sc.Err() != nil {
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
|
2023-04-01 11:38:32 +03:00
|
|
|
for i = 0; sc.Scan(); i++ { //nolint:revive
|
|
|
|
// no-op
|
2020-10-20 18:05:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return i
|
|
|
|
}
|
2022-12-17 05:09:49 +03:00
|
|
|
|
|
|
|
// TrimLen returns s but with a maximum length of maxLen.
|
2022-12-17 07:59:42 +03:00
|
|
|
func TrimLen(s string, maxLen int) string {
|
2022-12-17 05:09:49 +03:00
|
|
|
if len(s) <= maxLen {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
return s[:maxLen]
|
|
|
|
}
|
2022-12-30 20:10:56 +03:00
|
|
|
|
2023-03-28 09:48:24 +03:00
|
|
|
// DoubleQuote double-quotes (and escapes) s.
|
|
|
|
//
|
|
|
|
// hello "world" --> "hello ""world"""
|
|
|
|
func DoubleQuote(s string) string {
|
|
|
|
const q = '"'
|
|
|
|
sb := strings.Builder{}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
for _, r := range s {
|
|
|
|
if r == q {
|
|
|
|
sb.WriteRune(q)
|
|
|
|
}
|
|
|
|
sb.WriteRune(r)
|
|
|
|
}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// BacktickQuote backtick-quotes (and escapes) s.
|
|
|
|
//
|
|
|
|
// hello `world` --> `hello ``world```
|
|
|
|
func BacktickQuote(s string) string {
|
|
|
|
const q = '`'
|
|
|
|
sb := strings.Builder{}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
for _, r := range s {
|
|
|
|
if r == q {
|
|
|
|
sb.WriteRune(q)
|
|
|
|
}
|
|
|
|
sb.WriteRune(r)
|
|
|
|
}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// SingleQuote single-quotes (and escapes) s.
|
|
|
|
//
|
|
|
|
// jessie's girl --> 'jessie''s girl'
|
|
|
|
func SingleQuote(s string) string {
|
|
|
|
const q = '\''
|
|
|
|
sb := strings.Builder{}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
for _, r := range s {
|
|
|
|
if r == q {
|
|
|
|
sb.WriteRune(q)
|
|
|
|
}
|
|
|
|
sb.WriteRune(r)
|
|
|
|
}
|
|
|
|
sb.WriteRune(q)
|
|
|
|
return sb.String()
|
|
|
|
}
|
2023-04-02 22:49:45 +03:00
|
|
|
|
|
|
|
// Type returns the printed type of v.
|
|
|
|
func Type(v any) string {
|
|
|
|
return fmt.Sprintf("%T", v)
|
|
|
|
}
|
2023-04-07 11:00:49 +03:00
|
|
|
|
|
|
|
var identRegex = regexp.MustCompile(`\A[a-zA-Z][a-zA-Z0-9_]*$`)
|
|
|
|
|
|
|
|
// ValidIdent returns an error if s is not a valid identifier.
|
|
|
|
// And identifier must start with a letter, and may contain letters,
|
|
|
|
// numbers, and underscore.
|
|
|
|
func ValidIdent(s string) error {
|
|
|
|
if identRegex.Match([]byte(s)) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return errz.Errorf("invalid identifier: %s", s)
|
|
|
|
}
|
2023-04-09 17:44:27 +03:00
|
|
|
|
2023-05-07 05:36:34 +03:00
|
|
|
// Strings returns a []string for a. If a is empty or nil,
|
2023-04-09 17:44:27 +03:00
|
|
|
// an empty slice is returned. A nil element is treated as empty string.
|
|
|
|
func Strings[E any](a []E) []string {
|
|
|
|
if len(a) == 0 {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
s := make([]string, len(a))
|
|
|
|
for i := range a {
|
|
|
|
switch v := any(a[i]).(type) {
|
|
|
|
case nil:
|
|
|
|
// nil is treated as empty string
|
|
|
|
case string:
|
|
|
|
s[i] = v
|
|
|
|
case fmt.Stringer:
|
|
|
|
s[i] = v.String()
|
|
|
|
default:
|
|
|
|
s[i] = fmt.Sprintf("%v", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// StringsD works like Strings, but it first dereferences
|
|
|
|
// every element of a. Thus if a is []any{*string, *int}, it
|
|
|
|
// is treated as if it were []any{string, int}.
|
|
|
|
func StringsD[E any](a []E) []string {
|
|
|
|
if len(a) == 0 {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
s := make([]string, len(a))
|
|
|
|
for i := range a {
|
|
|
|
switch v := Val(a[i]).(type) {
|
|
|
|
case nil:
|
|
|
|
// nil is treated as empty string
|
|
|
|
case string:
|
|
|
|
s[i] = v
|
|
|
|
case fmt.Stringer:
|
|
|
|
s[i] = v.String()
|
|
|
|
default:
|
|
|
|
s[i] = fmt.Sprintf("%v", v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Val returns the fully dereferenced value of i. If i
|
|
|
|
// is nil, nil is returned. If i has type *(*string),
|
|
|
|
// Val(i) returns string.
|
2023-05-07 05:36:34 +03:00
|
|
|
//
|
2023-04-09 17:44:27 +03:00
|
|
|
// TODO: Should Val be renamed to Deref?
|
|
|
|
func Val(i any) any {
|
|
|
|
if i == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
v := reflect.ValueOf(i)
|
|
|
|
for {
|
|
|
|
if !v.IsValid() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
switch v.Kind() { //nolint:exhaustive
|
|
|
|
default:
|
|
|
|
return v.Interface()
|
|
|
|
case reflect.Ptr, reflect.Interface:
|
|
|
|
if v.IsNil() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
v = v.Elem()
|
|
|
|
// Loop again
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-07 05:36:34 +03:00
|
|
|
|
|
|
|
// VisitLines visits the lines of s, returning a new string built from
|
|
|
|
// applying fn to each line.
|
|
|
|
func VisitLines(s string, fn func(i int, line string) string) string {
|
|
|
|
var sb strings.Builder
|
|
|
|
|
|
|
|
sc := bufio.NewScanner(strings.NewReader(s))
|
|
|
|
var line string
|
|
|
|
for i := 0; sc.Scan(); i++ {
|
|
|
|
line = sc.Text()
|
|
|
|
line = fn(i, line)
|
|
|
|
if i > 0 {
|
|
|
|
sb.WriteRune('\n')
|
|
|
|
}
|
|
|
|
sb.WriteString(line)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
// IndentLines returns a new string built from indenting each line of s.
|
|
|
|
func IndentLines(s, indent string) string {
|
|
|
|
return VisitLines(s, func(_ int, line string) string {
|
|
|
|
return indent + line
|
|
|
|
})
|
|
|
|
}
|