mirror of
https://github.com/beego/bee.git
synced 2024-11-05 17:00:53 +00:00
Compare content after formatting
This commit is contained in:
parent
dbb41fa430
commit
5703fe7cc8
@ -1,11 +1,13 @@
|
||||
package beegopro
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/beego/bee/internal/pkg/system"
|
||||
beeLogger "github.com/beego/bee/logger"
|
||||
"github.com/davecgh/go-spew/spew"
|
||||
"github.com/flosch/pongo2"
|
||||
"github.com/smartwalle/pongo2render"
|
||||
"go/format"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path"
|
||||
@ -120,15 +122,27 @@ func (r *RenderFile) Exec(name string) {
|
||||
var orgContent []byte
|
||||
if err == nil {
|
||||
if org, err := os.OpenFile(r.Descriptor.DstPath, os.O_RDONLY, 0666); err == nil {
|
||||
defer org.Close()
|
||||
orgContent,_ = ioutil.ReadAll(org)
|
||||
org.Close()
|
||||
} else {
|
||||
beeLogger.Log.Infof("file err %s", err)
|
||||
}
|
||||
}
|
||||
// Replace or create when content changes
|
||||
if len(orgContent) == 0 || FileContentChange(string(orgContent),buf) {
|
||||
err = r.write(r.FlushFile, buf)
|
||||
output := []byte(buf)
|
||||
if r.Option.EnableFormat && filepath.Ext(r.FlushFile) == ".go" {
|
||||
// format code
|
||||
var bts []byte
|
||||
bts, err = format.Source([]byte(buf))
|
||||
if err != nil {
|
||||
err = errors.New("format buf error " + err.Error())
|
||||
return
|
||||
}
|
||||
output = bts
|
||||
}
|
||||
|
||||
if FileContentChange(orgContent,output) {
|
||||
err = r.write(r.FlushFile, output)
|
||||
if err != nil {
|
||||
beeLogger.Log.Fatalf("Could not create file: %s", err)
|
||||
return
|
||||
|
@ -11,13 +11,12 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"regexp"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
// write to file
|
||||
func (c *RenderFile) write(filename string, buf string) (err error) {
|
||||
func (c *RenderFile) write(filename string, buf []byte) (err error) {
|
||||
if utils.IsExist(filename) && !isNeedOverwrite(filename) {
|
||||
return
|
||||
}
|
||||
@ -191,34 +190,19 @@ func getModelType(orm string) (inputType, goType, mysqlType, tag string) {
|
||||
return
|
||||
}
|
||||
|
||||
func FileContentChange(org,new string) bool {
|
||||
if org == "" {
|
||||
return false
|
||||
func FileContentChange(org,new []byte) bool {
|
||||
if len(org) == 0 {
|
||||
return true
|
||||
}
|
||||
var orgContent,newContent string
|
||||
jump := false
|
||||
// expect tab character and blank space and "import(***)"
|
||||
reg := regexp.MustCompile("\\s+")
|
||||
for i, s := range strings.Split(org, "\n") {
|
||||
if s == "import (" {
|
||||
jump = true
|
||||
}
|
||||
if jump && s == ")" {
|
||||
jump = false
|
||||
}
|
||||
if i > 2 && !jump {
|
||||
orgContent += reg.ReplaceAllString(s, "")
|
||||
for i, s := range strings.Split(string(org), "\n") {
|
||||
if i > 1 {
|
||||
orgContent += s
|
||||
}
|
||||
}
|
||||
for i, s := range strings.Split(new, "\n") {
|
||||
if s == "import (" {
|
||||
jump = true
|
||||
}
|
||||
if jump && s == ")" {
|
||||
jump = false
|
||||
}
|
||||
if i > 2 && !jump {
|
||||
newContent += reg.ReplaceAllString(s, "")
|
||||
for i, s := range strings.Split(string(new), "\n") {
|
||||
if i > 1 {
|
||||
newContent += s
|
||||
}
|
||||
}
|
||||
orgMd5 := md5.Sum([]byte(orgContent))
|
||||
@ -226,5 +210,6 @@ func FileContentChange(org,new string) bool {
|
||||
if orgMd5 != newMd5 {
|
||||
return true
|
||||
}
|
||||
beeLogger.Log.Infof("File has no change in the content")
|
||||
return false
|
||||
}
|
Loading…
Reference in New Issue
Block a user