blob: 234bda3650478da46c26c859636e70f29f59135f [file] [log] [blame]
Colin Crossc0b06f12015-04-08 13:03:43 -07001// Copyright 2015 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Colin Cross635c3b02016-05-18 15:37:25 -070015package android
Colin Crossc0b06f12015-04-08 13:03:43 -070016
Dan Willemsenb1957a52016-06-23 23:44:54 -070017import (
Colin Cross3020fee2019-03-19 15:05:17 -070018 "fmt"
Ivan Lozano022a73b2019-09-09 20:29:31 -070019 "path/filepath"
Inseob Kim1a365c62019-06-08 15:47:51 +090020 "reflect"
Colin Cross3020fee2019-03-19 15:05:17 -070021 "regexp"
Dan Willemsenb1957a52016-06-23 23:44:54 -070022 "runtime"
23 "sort"
24 "strings"
25)
Colin Cross1f8c52b2015-06-16 16:38:17 -070026
Colin Cross454c0872019-02-15 23:03:34 -080027// CopyOf returns a new slice that has the same contents as s.
28func CopyOf(s []string) []string {
29 return append([]string(nil), s...)
30}
31
Sasha Smundak1e533922020-11-19 16:48:18 -080032// JoinWithPrefix prepends the prefix to each string in the list and
33// returns them joined together with " " as separator.
Colin Crossc0b06f12015-04-08 13:03:43 -070034func JoinWithPrefix(strs []string, prefix string) string {
Yu Liu8d82ac52022-05-17 15:13:28 -070035 return JoinWithPrefixAndSeparator(strs, prefix, " ")
36}
37
38// JoinWithPrefixAndSeparator prepends the prefix to each string in the list and
39// returns them joined together with the given separator.
40func JoinWithPrefixAndSeparator(strs []string, prefix string, sep string) string {
Colin Crossc0b06f12015-04-08 13:03:43 -070041 if len(strs) == 0 {
42 return ""
43 }
44
Sasha Smundak1e533922020-11-19 16:48:18 -080045 var buf strings.Builder
46 buf.WriteString(prefix)
47 buf.WriteString(strs[0])
48 for i := 1; i < len(strs); i++ {
Yu Liu8d82ac52022-05-17 15:13:28 -070049 buf.WriteString(sep)
Sasha Smundak1e533922020-11-19 16:48:18 -080050 buf.WriteString(prefix)
51 buf.WriteString(strs[i])
Colin Crossc0b06f12015-04-08 13:03:43 -070052 }
Sasha Smundak1e533922020-11-19 16:48:18 -080053 return buf.String()
Colin Crossc0b06f12015-04-08 13:03:43 -070054}
Colin Cross9b6826f2015-04-10 15:47:33 -070055
Sasha Smundak1e533922020-11-19 16:48:18 -080056// JoinWithSuffix appends the suffix to each string in the list and
57// returns them joined together with given separator.
Inseob Kim1f086e22019-05-09 13:29:15 +090058func JoinWithSuffix(strs []string, suffix string, separator string) string {
59 if len(strs) == 0 {
60 return ""
61 }
62
Sasha Smundak1e533922020-11-19 16:48:18 -080063 var buf strings.Builder
64 buf.WriteString(strs[0])
65 buf.WriteString(suffix)
66 for i := 1; i < len(strs); i++ {
67 buf.WriteString(separator)
68 buf.WriteString(strs[i])
69 buf.WriteString(suffix)
Inseob Kim1f086e22019-05-09 13:29:15 +090070 }
Sasha Smundak1e533922020-11-19 16:48:18 -080071 return buf.String()
Inseob Kim1f086e22019-05-09 13:29:15 +090072}
73
Colin Cross9eb853b2022-02-17 11:13:37 -080074// SorterStringKeys returns the keys of the given string-keyed map in the ascending order.
Inseob Kim1a365c62019-06-08 15:47:51 +090075func SortedStringKeys(m interface{}) []string {
76 v := reflect.ValueOf(m)
77 if v.Kind() != reflect.Map {
78 panic(fmt.Sprintf("%#v is not a map", m))
79 }
Colin Cross9eb853b2022-02-17 11:13:37 -080080 if v.Len() == 0 {
81 return nil
82 }
83 iter := v.MapRange()
84 s := make([]string, 0, v.Len())
85 for iter.Next() {
86 s = append(s, iter.Key().String())
Colin Cross1f8c52b2015-06-16 16:38:17 -070087 }
88 sort.Strings(s)
89 return s
90}
Dan Willemsenb1957a52016-06-23 23:44:54 -070091
Colin Cross9eb853b2022-02-17 11:13:37 -080092// stringValues returns the values of the given string-valued map in randomized map order.
93func stringValues(m interface{}) []string {
94 v := reflect.ValueOf(m)
95 if v.Kind() != reflect.Map {
96 panic(fmt.Sprintf("%#v is not a map", m))
97 }
98 if v.Len() == 0 {
99 return nil
100 }
101 iter := v.MapRange()
102 s := make([]string, 0, v.Len())
103 for iter.Next() {
104 s = append(s, iter.Value().String())
105 }
106 return s
107}
108
109// SortedStringValues returns the values of the given string-valued map in the ascending order.
110func SortedStringValues(m interface{}) []string {
111 s := stringValues(m)
112 sort.Strings(s)
113 return s
114}
115
116// SortedUniqueStringValues returns the values of the given string-valued map in the ascending order
117// with duplicates removed.
118func SortedUniqueStringValues(m interface{}) []string {
119 s := stringValues(m)
120 return SortedUniqueStrings(s)
121}
122
Sasha Smundak1e533922020-11-19 16:48:18 -0800123// IndexList returns the index of the first occurrence of the given string in the list or -1
Colin Crossb4330e22017-12-22 15:47:09 -0800124func IndexList(s string, list []string) int {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700125 for i, l := range list {
126 if l == s {
127 return i
128 }
129 }
130
131 return -1
132}
133
Sasha Smundak1e533922020-11-19 16:48:18 -0800134// InList checks if the string belongs to the list
Colin Crossb4330e22017-12-22 15:47:09 -0800135func InList(s string, list []string) bool {
136 return IndexList(s, list) != -1
Dan Willemsenb1957a52016-06-23 23:44:54 -0700137}
138
Sam Delmerico4e115cc2023-01-19 15:36:52 -0500139func setFromList[T comparable](l []T) map[T]bool {
140 m := make(map[T]bool, len(l))
141 for _, t := range l {
142 m[t] = true
143 }
144 return m
145}
146
147// ListDifference checks if the two lists contain the same elements
148func ListDifference[T comparable](l1, l2 []T) []T {
149 diff := []T{}
150 m1 := setFromList(l1)
151 m2 := setFromList(l2)
152 for _, t := range l1 {
153 if _, ok := m2[t]; !ok {
154 diff = append(diff, t)
155 }
156 }
157 for _, t := range l2 {
158 if _, ok := m1[t]; !ok {
159 diff = append(diff, t)
160 }
161 }
162 return diff
163}
164
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800165// Returns true if the given string s is prefixed with any string in the given prefix list.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800166func HasAnyPrefix(s string, prefixList []string) bool {
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800167 for _, prefix := range prefixList {
168 if strings.HasPrefix(s, prefix) {
169 return true
170 }
171 }
172 return false
173}
174
Chih-Hung Hsieh9f94c362021-02-10 21:56:03 -0800175// Returns true if any string in the given list has the given substring.
176func SubstringInList(list []string, substr string) bool {
177 for _, s := range list {
178 if strings.Contains(s, substr) {
179 return true
180 }
181 }
182 return false
183}
184
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800185// Returns true if any string in the given list has the given prefix.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800186func PrefixInList(list []string, prefix string) bool {
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800187 for _, s := range list {
Ivan Lozano5f595532017-07-13 14:46:05 -0700188 if strings.HasPrefix(s, prefix) {
189 return true
190 }
191 }
192 return false
193}
194
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400195// Returns true if any string in the given list has the given suffix.
196func SuffixInList(list []string, suffix string) bool {
197 for _, s := range list {
198 if strings.HasSuffix(s, suffix) {
199 return true
200 }
201 }
202 return false
203}
204
Jooyung Han12df5fb2019-07-11 16:18:47 +0900205// IndexListPred returns the index of the element which in the given `list` satisfying the predicate, or -1 if there is no such element.
206func IndexListPred(pred func(s string) bool, list []string) int {
207 for i, l := range list {
208 if pred(l) {
209 return i
210 }
211 }
212
213 return -1
214}
215
Sasha Smundak1e533922020-11-19 16:48:18 -0800216// FilterList divides the string list into two lists: one with the strings belonging
217// to the given filter list, and the other with the remaining ones
Colin Crossb4330e22017-12-22 15:47:09 -0800218func FilterList(list []string, filter []string) (remainder []string, filtered []string) {
Sasha Smundak1e533922020-11-19 16:48:18 -0800219 // InList is O(n). May be worth using more efficient lookup for longer lists.
Colin Crossb4330e22017-12-22 15:47:09 -0800220 for _, l := range list {
221 if InList(l, filter) {
222 filtered = append(filtered, l)
223 } else {
224 remainder = append(remainder, l)
225 }
226 }
227
228 return
229}
230
Martin Stjernholm1461c4d2021-03-27 19:04:05 +0000231// FilterListPred returns the elements of the given list for which the predicate
232// returns true. Order is kept.
233func FilterListPred(list []string, pred func(s string) bool) (filtered []string) {
234 for _, l := range list {
235 if pred(l) {
236 filtered = append(filtered, l)
237 }
238 }
239 return
240}
241
Sasha Smundak1e533922020-11-19 16:48:18 -0800242// RemoveListFromList removes the strings belonging to the filter list from the
243// given list and returns the result
Colin Crossb4330e22017-12-22 15:47:09 -0800244func RemoveListFromList(list []string, filter_out []string) (result []string) {
245 result = make([]string, 0, len(list))
246 for _, l := range list {
247 if !InList(l, filter_out) {
248 result = append(result, l)
249 }
250 }
251 return
252}
253
Sasha Smundak1e533922020-11-19 16:48:18 -0800254// RemoveFromList removes given string from the string list.
Colin Crossb4330e22017-12-22 15:47:09 -0800255func RemoveFromList(s string, list []string) (bool, []string) {
Sasha Smundak1e533922020-11-19 16:48:18 -0800256 result := make([]string, 0, len(list))
257 var removed bool
258 for _, item := range list {
259 if item != s {
260 result = append(result, item)
261 } else {
262 removed = true
Logan Chien7922ab82018-03-06 18:29:27 +0800263 }
264 }
Sasha Smundak1e533922020-11-19 16:48:18 -0800265 return removed, result
Colin Crossb4330e22017-12-22 15:47:09 -0800266}
267
Colin Crossb6715442017-10-24 11:13:31 -0700268// FirstUniqueStrings returns all unique elements of a slice of strings, keeping the first copy of
269// each. It modifies the slice contents in place, and returns a subslice of the original slice.
270func FirstUniqueStrings(list []string) []string {
Colin Cross27027c72020-02-28 15:34:17 -0800271 // 128 was chosen based on BenchmarkFirstUniqueStrings results.
272 if len(list) > 128 {
273 return firstUniqueStringsMap(list)
274 }
275 return firstUniqueStringsList(list)
276}
277
278func firstUniqueStringsList(list []string) []string {
Colin Crossb6715442017-10-24 11:13:31 -0700279 k := 0
280outer:
281 for i := 0; i < len(list); i++ {
282 for j := 0; j < k; j++ {
283 if list[i] == list[j] {
284 continue outer
285 }
286 }
287 list[k] = list[i]
288 k++
289 }
290 return list[:k]
291}
292
Colin Cross27027c72020-02-28 15:34:17 -0800293func firstUniqueStringsMap(list []string) []string {
294 k := 0
295 seen := make(map[string]bool, len(list))
296 for i := 0; i < len(list); i++ {
297 if seen[list[i]] {
298 continue
299 }
300 seen[list[i]] = true
301 list[k] = list[i]
302 k++
303 }
304 return list[:k]
305}
306
Colin Crossb6715442017-10-24 11:13:31 -0700307// LastUniqueStrings returns all unique elements of a slice of strings, keeping the last copy of
308// each. It modifies the slice contents in place, and returns a subslice of the original slice.
309func LastUniqueStrings(list []string) []string {
310 totalSkip := 0
311 for i := len(list) - 1; i >= totalSkip; i-- {
312 skip := 0
313 for j := i - 1; j >= totalSkip; j-- {
314 if list[i] == list[j] {
315 skip++
316 } else {
317 list[j+skip] = list[j]
318 }
319 }
320 totalSkip += skip
321 }
322 return list[totalSkip:]
323}
324
Jooyung Hane1633032019-08-01 17:41:43 +0900325// SortedUniqueStrings returns what the name says
326func SortedUniqueStrings(list []string) []string {
327 unique := FirstUniqueStrings(list)
328 sort.Strings(unique)
329 return unique
330}
331
Dan Willemsenb1957a52016-06-23 23:44:54 -0700332// checkCalledFromInit panics if a Go package's init function is not on the
333// call stack.
334func checkCalledFromInit() {
335 for skip := 3; ; skip++ {
336 _, funcName, ok := callerName(skip)
337 if !ok {
338 panic("not called from an init func")
339 }
340
Colin Cross3020fee2019-03-19 15:05:17 -0700341 if funcName == "init" || strings.HasPrefix(funcName, "init·") ||
342 strings.HasPrefix(funcName, "init.") {
Dan Willemsenb1957a52016-06-23 23:44:54 -0700343 return
344 }
345 }
346}
347
Colin Cross3020fee2019-03-19 15:05:17 -0700348// A regex to find a package path within a function name. It finds the shortest string that is
349// followed by '.' and doesn't have any '/'s left.
350var pkgPathRe = regexp.MustCompile(`^(.*?)\.([^/]+)$`)
351
Dan Willemsenb1957a52016-06-23 23:44:54 -0700352// callerName returns the package path and function name of the calling
353// function. The skip argument has the same meaning as the skip argument of
354// runtime.Callers.
355func callerName(skip int) (pkgPath, funcName string, ok bool) {
356 var pc [1]uintptr
357 n := runtime.Callers(skip+1, pc[:])
358 if n != 1 {
359 return "", "", false
360 }
361
Colin Cross3020fee2019-03-19 15:05:17 -0700362 f := runtime.FuncForPC(pc[0]).Name()
363 s := pkgPathRe.FindStringSubmatch(f)
364 if len(s) < 3 {
365 panic(fmt.Errorf("failed to extract package path and function name from %q", f))
Dan Willemsenb1957a52016-06-23 23:44:54 -0700366 }
367
Colin Cross3020fee2019-03-19 15:05:17 -0700368 return s[1], s[2], true
Dan Willemsenb1957a52016-06-23 23:44:54 -0700369}
Sundong Ahn0926fae2017-10-17 16:34:51 +0900370
Sasha Smundak1e533922020-11-19 16:48:18 -0800371// GetNumericSdkVersion removes the first occurrence of system_ in a string,
372// which is assumed to be something like "system_1.2.3"
Sundong Ahn0926fae2017-10-17 16:34:51 +0900373func GetNumericSdkVersion(v string) string {
Sasha Smundak1e533922020-11-19 16:48:18 -0800374 return strings.Replace(v, "system_", "", 1)
Sundong Ahn0926fae2017-10-17 16:34:51 +0900375}
Jiyong Park7f67f482019-01-05 12:57:48 +0900376
377// copied from build/kati/strutil.go
378func substPattern(pat, repl, str string) string {
379 ps := strings.SplitN(pat, "%", 2)
380 if len(ps) != 2 {
381 if str == pat {
382 return repl
383 }
384 return str
385 }
386 in := str
Sasha Smundak1e533922020-11-19 16:48:18 -0800387 trimmed := str
Jiyong Park7f67f482019-01-05 12:57:48 +0900388 if ps[0] != "" {
Sasha Smundak1e533922020-11-19 16:48:18 -0800389 trimmed = strings.TrimPrefix(in, ps[0])
390 if trimmed == in {
Jiyong Park7f67f482019-01-05 12:57:48 +0900391 return str
392 }
393 }
Sasha Smundak1e533922020-11-19 16:48:18 -0800394 in = trimmed
Jiyong Park7f67f482019-01-05 12:57:48 +0900395 if ps[1] != "" {
Sasha Smundak1e533922020-11-19 16:48:18 -0800396 trimmed = strings.TrimSuffix(in, ps[1])
397 if trimmed == in {
Jiyong Park7f67f482019-01-05 12:57:48 +0900398 return str
399 }
400 }
401
402 rs := strings.SplitN(repl, "%", 2)
403 if len(rs) != 2 {
404 return repl
405 }
Sasha Smundak1e533922020-11-19 16:48:18 -0800406 return rs[0] + trimmed + rs[1]
Jiyong Park7f67f482019-01-05 12:57:48 +0900407}
408
409// copied from build/kati/strutil.go
410func matchPattern(pat, str string) bool {
411 i := strings.IndexByte(pat, '%')
412 if i < 0 {
413 return pat == str
414 }
415 return strings.HasPrefix(str, pat[:i]) && strings.HasSuffix(str, pat[i+1:])
416}
Ivan Lozano022a73b2019-09-09 20:29:31 -0700417
418var shlibVersionPattern = regexp.MustCompile("(?:\\.\\d+(?:svn)?)+")
419
420// splitFileExt splits a file name into root, suffix and ext. root stands for the file name without
421// the file extension and the version number (e.g. "libexample"). suffix stands for the
422// concatenation of the file extension and the version number (e.g. ".so.1.0"). ext stands for the
423// file extension after the version numbers are trimmed (e.g. ".so").
424func SplitFileExt(name string) (string, string, string) {
425 // Extract and trim the shared lib version number if the file name ends with dot digits.
426 suffix := ""
427 matches := shlibVersionPattern.FindAllStringIndex(name, -1)
428 if len(matches) > 0 {
429 lastMatch := matches[len(matches)-1]
430 if lastMatch[1] == len(name) {
431 suffix = name[lastMatch[0]:lastMatch[1]]
432 name = name[0:lastMatch[0]]
433 }
434 }
435
436 // Extract the file name root and the file extension.
437 ext := filepath.Ext(name)
438 root := strings.TrimSuffix(name, ext)
439 suffix = ext + suffix
440
441 return root, suffix, ext
442}
Colin Cross0a2f7192019-09-23 14:33:09 -0700443
444// ShardPaths takes a Paths, and returns a slice of Paths where each one has at most shardSize paths.
445func ShardPaths(paths Paths, shardSize int) []Paths {
446 if len(paths) == 0 {
447 return nil
448 }
449 ret := make([]Paths, 0, (len(paths)+shardSize-1)/shardSize)
450 for len(paths) > shardSize {
451 ret = append(ret, paths[0:shardSize])
452 paths = paths[shardSize:]
453 }
454 if len(paths) > 0 {
455 ret = append(ret, paths)
456 }
457 return ret
458}
459
Hans MÃ¥nssond3f2bd72020-11-27 12:37:28 +0100460// ShardString takes a string and returns a slice of strings where the length of each one is
461// at most shardSize.
462func ShardString(s string, shardSize int) []string {
463 if len(s) == 0 {
464 return nil
465 }
466 ret := make([]string, 0, (len(s)+shardSize-1)/shardSize)
467 for len(s) > shardSize {
468 ret = append(ret, s[0:shardSize])
469 s = s[shardSize:]
470 }
471 if len(s) > 0 {
472 ret = append(ret, s)
473 }
474 return ret
475}
476
Colin Cross0a2f7192019-09-23 14:33:09 -0700477// ShardStrings takes a slice of strings, and returns a slice of slices of strings where each one has at most shardSize
478// elements.
479func ShardStrings(s []string, shardSize int) [][]string {
480 if len(s) == 0 {
481 return nil
482 }
483 ret := make([][]string, 0, (len(s)+shardSize-1)/shardSize)
484 for len(s) > shardSize {
485 ret = append(ret, s[0:shardSize])
486 s = s[shardSize:]
487 }
488 if len(s) > 0 {
489 ret = append(ret, s)
490 }
491 return ret
492}
Chih-Hung Hsieha5f22ed2019-10-24 20:47:54 -0700493
Sasha Smundak1e533922020-11-19 16:48:18 -0800494// CheckDuplicate checks if there are duplicates in given string list.
495// If there are, it returns first such duplicate and true.
Chih-Hung Hsieha5f22ed2019-10-24 20:47:54 -0700496func CheckDuplicate(values []string) (duplicate string, found bool) {
497 seen := make(map[string]string)
498 for _, v := range values {
499 if duplicate, found = seen[v]; found {
Sasha Smundak1e533922020-11-19 16:48:18 -0800500 return duplicate, true
Chih-Hung Hsieha5f22ed2019-10-24 20:47:54 -0700501 }
502 seen[v] = v
503 }
Sasha Smundak1e533922020-11-19 16:48:18 -0800504 return "", false
Chih-Hung Hsieha5f22ed2019-10-24 20:47:54 -0700505}