github.com/bazelbuild/bazel-gazelle@v0.36.1-0.20240520142334-61b277ba6fed/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 "os" 22 "path/filepath" 23 24 "github.com/bazelbuild/bazel-gazelle/config" 25 "github.com/bazelbuild/bazel-gazelle/rule" 26 ) 27 28 func fixFile(c *config.Config, f *rule.File) error { 29 newContent := f.Format() 30 if bytes.Equal(f.Content, newContent) { 31 return nil 32 } 33 outPath := findOutputPath(c, f) 34 if err := os.MkdirAll(filepath.Dir(outPath), 0o777); err != nil { 35 return err 36 } 37 if err := os.WriteFile(outPath, newContent, 0o666); err != nil { 38 return err 39 } 40 f.Content = newContent 41 if getUpdateConfig(c).print0 { 42 fmt.Printf("%s\x00", outPath) 43 } 44 return nil 45 }