2015-01-31 02:27:36 +01:00
|
|
|
// Copyright 2015 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 cc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-07-25 18:19:50 +02:00
|
|
|
"path/filepath"
|
2015-01-31 02:27:36 +01:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2015-04-08 22:03:43 +02:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-01-31 02:27:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Efficiently converts a list of include directories to a single string
|
|
|
|
// of cflags with -I prepended to each directory.
|
2016-05-19 00:37:25 +02:00
|
|
|
func includeDirsToFlags(dirs android.Paths) string {
|
|
|
|
return android.JoinWithPrefix(dirs.Strings(), "-I")
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func includeFilesToFlags(files android.Paths) string {
|
|
|
|
return android.JoinWithPrefix(files.Strings(), "-include ")
|
2015-09-14 21:30:50 +02:00
|
|
|
}
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
func ldDirsToFlags(dirs []string) string {
|
2016-05-19 00:37:25 +02:00
|
|
|
return android.JoinWithPrefix(dirs, "-L")
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func libNamesToFlags(names []string) string {
|
2016-05-19 00:37:25 +02:00
|
|
|
return android.JoinWithPrefix(names, "-l")
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2017-12-23 00:47:09 +01:00
|
|
|
var indexList = android.IndexList
|
|
|
|
var inList = android.InList
|
|
|
|
var filterList = android.FilterList
|
|
|
|
var removeListFromList = android.RemoveListFromList
|
|
|
|
var removeFromList = android.RemoveFromList
|
2016-01-06 23:41:07 +01:00
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
var libNameRegexp = regexp.MustCompile(`^lib(.*)$`)
|
|
|
|
|
|
|
|
func moduleToLibName(module string) (string, error) {
|
|
|
|
matches := libNameRegexp.FindStringSubmatch(module)
|
|
|
|
if matches == nil {
|
|
|
|
return "", fmt.Errorf("Library module name %s does not start with lib", module)
|
|
|
|
}
|
|
|
|
return matches[1], nil
|
|
|
|
}
|
|
|
|
|
2016-01-04 23:34:37 +01:00
|
|
|
func flagsToBuilderFlags(in Flags) builderFlags {
|
2015-01-31 02:27:36 +01:00
|
|
|
return builderFlags{
|
2017-11-19 03:23:14 +01:00
|
|
|
globalFlags: strings.Join(in.GlobalFlags, " "),
|
|
|
|
arFlags: strings.Join(in.ArFlags, " "),
|
|
|
|
asFlags: strings.Join(in.AsFlags, " "),
|
|
|
|
cFlags: strings.Join(in.CFlags, " "),
|
|
|
|
toolingCFlags: strings.Join(in.ToolingCFlags, " "),
|
|
|
|
conlyFlags: strings.Join(in.ConlyFlags, " "),
|
|
|
|
cppFlags: strings.Join(in.CppFlags, " "),
|
|
|
|
yaccFlags: strings.Join(in.YaccFlags, " "),
|
|
|
|
protoFlags: strings.Join(in.protoFlags, " "),
|
2018-04-06 02:48:32 +02:00
|
|
|
protoOutParams: strings.Join(in.protoOutParams, ","),
|
2017-11-19 03:23:14 +01:00
|
|
|
aidlFlags: strings.Join(in.aidlFlags, " "),
|
|
|
|
rsFlags: strings.Join(in.rsFlags, " "),
|
|
|
|
ldFlags: strings.Join(in.LdFlags, " "),
|
|
|
|
libFlags: strings.Join(in.libFlags, " "),
|
|
|
|
tidyFlags: strings.Join(in.TidyFlags, " "),
|
|
|
|
sAbiFlags: strings.Join(in.SAbiFlags, " "),
|
|
|
|
yasmFlags: strings.Join(in.YasmFlags, " "),
|
|
|
|
toolchain: in.Toolchain,
|
|
|
|
clang: in.Clang,
|
|
|
|
coverage: in.Coverage,
|
|
|
|
tidy: in.Tidy,
|
|
|
|
sAbiDump: in.SAbiDump,
|
2018-02-14 22:58:34 +01:00
|
|
|
protoRoot: in.ProtoRoot,
|
2016-12-01 23:45:23 +01:00
|
|
|
|
2017-03-31 00:03:04 +02:00
|
|
|
systemIncludeFlags: strings.Join(in.SystemIncludeFlags, " "),
|
|
|
|
|
2016-12-01 23:45:23 +01:00
|
|
|
groupStaticLibs: in.GroupStaticLibs,
|
2018-02-09 03:32:11 +01:00
|
|
|
arGoldPlugin: in.ArGoldPlugin,
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-15 00:17:19 +01:00
|
|
|
|
2016-05-25 23:47:21 +02:00
|
|
|
func addPrefix(list []string, prefix string) []string {
|
|
|
|
for i := range list {
|
|
|
|
list[i] = prefix + list[i]
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2017-08-03 14:22:50 +02:00
|
|
|
|
|
|
|
func addSuffix(list []string, suffix string) []string {
|
|
|
|
for i := range list {
|
|
|
|
list[i] = list[i] + suffix
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2018-07-25 18:19:50 +02:00
|
|
|
|
|
|
|
var shlibVersionPattern = regexp.MustCompile("(?:\\.\\d+)+")
|
|
|
|
|
|
|
|
// splitFileExt splits a file name into root, suffix and ext. root stands for the file name without
|
|
|
|
// the file extension and the version number (e.g. "libexample"). suffix stands for the
|
|
|
|
// concatenation of the file extension and the version number (e.g. ".so.1.0"). ext stands for the
|
|
|
|
// file extension after the version numbers are trimmed (e.g. ".so").
|
|
|
|
func splitFileExt(name string) (string, string, string) {
|
|
|
|
// Extract and trim the shared lib version number if the file name ends with dot digits.
|
|
|
|
suffix := ""
|
|
|
|
matches := shlibVersionPattern.FindAllStringIndex(name, -1)
|
|
|
|
if len(matches) > 0 {
|
|
|
|
lastMatch := matches[len(matches)-1]
|
|
|
|
if lastMatch[1] == len(name) {
|
|
|
|
suffix = name[lastMatch[0]:lastMatch[1]]
|
|
|
|
name = name[0:lastMatch[0]]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract the file name root and the file extension.
|
|
|
|
ext := filepath.Ext(name)
|
|
|
|
root := strings.TrimSuffix(name, ext)
|
|
|
|
suffix = ext + suffix
|
|
|
|
|
|
|
|
return root, suffix, ext
|
|
|
|
}
|