blob: 695c2520bf1c86276e9ee617ecb2279def6018e1 [file] [log] [blame]
// Copyright (C) 2016 The Android Open Source Project
//
// 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 validate registers and implements the "validate" apic command.
//
// The validate command analyses the specified API for correctness, reporting errors if any problems
// are found.
package main
import (
"flag"
"fmt"
"os"
"android.googlesource.com/platform/tools/gpu/api"
"android.googlesource.com/platform/tools/gpu/api/validate"
"android.googlesource.com/platform/tools/gpu/framework/app"
"android.googlesource.com/platform/tools/gpu/framework/log"
)
func init() {
verb := &app.Verb{
Name: "validate",
ShortHelp: "Validates an api file for correctness",
Run: doValidate,
}
app.AddVerb(verb)
}
func doValidate(ctx log.Context, flags flag.FlagSet) error {
args := flags.Args()
if len(args) < 1 {
app.Usage(ctx, "Missing api file")
return nil
}
for _, apiName := range args {
processor := api.NewProcessor()
compiled, errs := api.Resolve(apiName)
if err := api.CheckErrors(apiName, errs, maxErrors); err != nil {
return err
}
ctx.Info().S("api", apiName).Log("Validating")
issues := validate.Validate(compiled, processor.Mappings, nil)
fmt.Fprintf(os.Stderr, "%v\n", issues)
if c := len(issues); c > 0 {
return fmt.Errorf("%d issues found", c)
}
}
return nil
}