Browse Source

Merge pull request #413 from WangLeonard/gva_gormv2_dev-fix-automodelcode

修复代码生成中对gorm的重复检查
main
奇淼(piexlmax 4 years ago
committed by GitHub
parent
commit
b8826b0a4a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      server/utils/injectionCode.go

19
server/utils/injectionCode.go

@ -65,9 +65,9 @@ func AutoInjectionCode(filepath string, funcName string, codeData string) error
} }
// 在指定函数名,且函数中startComment和endComment都存在时,进行区间查重 // 在指定函数名,且函数中startComment和endComment都存在时,进行区间查重
if (codeStartPos != -1 && codeEndPos != srcDataLen) && (startCommentPos != -1 && endCommentPos != srcDataLen) && expectedFunction != nil {
if (codeStartPos != -1 && codeEndPos <= srcDataLen) && (startCommentPos != -1 && endCommentPos != srcDataLen) && expectedFunction != nil {
if exist := checkExist(&srcData, startCommentPos, endCommentPos, expectedFunction.Body, codeData); exist { if exist := checkExist(&srcData, startCommentPos, endCommentPos, expectedFunction.Body, codeData); exist {
fmt.Println("已存在")
fmt.Printf("文件 %s 待插入数据 %s 已存在\n", filepath, codeData)
return nil // 这里不需要返回错误? return nil // 这里不需要返回错误?
} }
} }
@ -122,6 +122,21 @@ func checkExist(srcData *[]byte, startPos int, endPos int, blockStmt *ast.BlockS
if checkExist(srcData, startPos, endPos, stmt, target) { if checkExist(srcData, startPos, endPos, stmt, target) {
return true return true
} }
case *ast.AssignStmt:
// 为 model 中的代码进行检查
if len(stmt.Rhs) > 0 {
if callExpr, ok := stmt.Rhs[0].(*ast.CallExpr); ok {
for _, arg := range callExpr.Args {
if int(arg.Pos()) > startPos && int(arg.End()) < endPos {
text := string((*srcData)[int(arg.Pos()-1):int(arg.End())])
key := strings.TrimSpace(text)
if key == target {
return true
}
}
}
}
}
} }
} }
return false return false

Loading…
Cancel
Save