github.com/stackb/rules_proto@v0.0.0-20240221195024-5428336c51f1/cmd/gazelle/fix.go (about) 1 /* Copyright 2016 The Bazel Authors. 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 */ 15 16 package main 17 18 import ( 19 "bytes" 20 "fmt" 21 "io/ioutil" 22 "os" 23 "path/filepath" 24 25 "github.com/bazelbuild/bazel-gazelle/config" 26 "github.com/bazelbuild/bazel-gazelle/rule" 27 ) 28 29 func fixFile(c *config.Config, f *rule.File) error { 30 newContent := f.Format() 31 if bytes.Equal(f.Content, newContent) { 32 return nil 33 } 34 outPath := findOutputPath(c, f) 35 if err := os.MkdirAll(filepath.Dir(outPath), 0o777); err != nil { 36 return err 37 } 38 if err := ioutil.WriteFile(outPath, newContent, 0o666); err != nil { 39 return err 40 } 41 f.Content = newContent 42 if getUpdateConfig(c).print0 { 43 fmt.Printf("%s\x00", outPath) 44 } 45 return nil 46 }