2016-09-27 06:45:04 +08:00
|
|
|
// Copyright 2016 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 (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
|
|
|
"android/soong/cc/config"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TidyProperties struct {
|
|
|
|
// whether to run clang-tidy over C-like sources.
|
|
|
|
Tidy *bool
|
|
|
|
|
|
|
|
// Extra flags to pass to clang-tidy
|
|
|
|
Tidy_flags []string
|
|
|
|
|
|
|
|
// Extra checks to enable or disable in clang-tidy
|
|
|
|
Tidy_checks []string
|
|
|
|
}
|
|
|
|
|
|
|
|
type tidyFeature struct {
|
|
|
|
Properties TidyProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tidy *tidyFeature) props() []interface{} {
|
|
|
|
return []interface{}{&tidy.Properties}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tidy *tidyFeature) begin(ctx BaseModuleContext) {
|
|
|
|
}
|
|
|
|
|
2016-12-14 09:06:13 +08:00
|
|
|
func (tidy *tidyFeature) deps(ctx DepsContext, deps Deps) Deps {
|
2016-09-27 06:45:04 +08:00
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
|
|
|
func (tidy *tidyFeature) flags(ctx ModuleContext, flags Flags) Flags {
|
2016-12-06 09:11:06 +08:00
|
|
|
CheckBadTidyFlags(ctx, "tidy_flags", tidy.Properties.Tidy_flags)
|
|
|
|
CheckBadTidyChecks(ctx, "tidy_checks", tidy.Properties.Tidy_checks)
|
|
|
|
|
2016-09-27 06:45:04 +08:00
|
|
|
// Check if tidy is explicitly disabled for this module
|
|
|
|
if tidy.Properties.Tidy != nil && !*tidy.Properties.Tidy {
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
// If not explicitly set, check the global tidy flag
|
2017-11-29 16:27:14 +08:00
|
|
|
if tidy.Properties.Tidy == nil && !ctx.Config().ClangTidy() {
|
2016-09-27 06:45:04 +08:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clang-tidy requires clang
|
|
|
|
if !flags.Clang {
|
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
flags.Tidy = true
|
|
|
|
|
|
|
|
esc := proptools.NinjaAndShellEscape
|
|
|
|
|
|
|
|
flags.TidyFlags = append(flags.TidyFlags, esc(tidy.Properties.Tidy_flags)...)
|
|
|
|
if len(flags.TidyFlags) == 0 {
|
|
|
|
headerFilter := "-header-filter=\"(" + ctx.ModuleDir() + "|${config.TidyDefaultHeaderDirs})\""
|
|
|
|
flags.TidyFlags = append(flags.TidyFlags, headerFilter)
|
|
|
|
}
|
|
|
|
|
2017-12-16 12:57:48 +08:00
|
|
|
// If clang-tidy is not enabled globally, add the -quiet flag.
|
|
|
|
if !ctx.Config().ClangTidy() {
|
|
|
|
flags.TidyFlags = append(flags.TidyFlags, "-quiet")
|
|
|
|
}
|
|
|
|
|
2017-05-04 09:13:08 +08:00
|
|
|
// We might be using the static analyzer through clang tidy.
|
|
|
|
// https://bugs.llvm.org/show_bug.cgi?id=32914
|
|
|
|
flags.TidyFlags = append(flags.TidyFlags, "-extra-arg-before=-D__clang_analyzer__")
|
|
|
|
|
2016-09-27 06:45:04 +08:00
|
|
|
tidyChecks := "-checks="
|
2017-11-29 16:27:14 +08:00
|
|
|
if checks := ctx.Config().TidyChecks(); len(checks) > 0 {
|
2016-09-27 06:45:04 +08:00
|
|
|
tidyChecks += checks
|
|
|
|
} else {
|
|
|
|
tidyChecks += config.TidyChecksForDir(ctx.ModuleDir())
|
|
|
|
}
|
|
|
|
if len(tidy.Properties.Tidy_checks) > 0 {
|
|
|
|
tidyChecks = tidyChecks + "," + strings.Join(esc(tidy.Properties.Tidy_checks), ",")
|
|
|
|
}
|
|
|
|
flags.TidyFlags = append(flags.TidyFlags, tidyChecks)
|
|
|
|
|
|
|
|
return flags
|
|
|
|
}
|