mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
feat(cmd/gf): add gopackage
option for command gf gen pbentity
to specify go_package
for generated proto files (#4141)
This commit is contained in:
parent
1ef1c442d3
commit
42d8845d35
@ -38,6 +38,7 @@ type (
|
|||||||
g.Meta `name:"pbentity" config:"{CGenPbEntityConfig}" brief:"{CGenPbEntityBrief}" eg:"{CGenPbEntityEg}" ad:"{CGenPbEntityAd}"`
|
g.Meta `name:"pbentity" config:"{CGenPbEntityConfig}" brief:"{CGenPbEntityBrief}" eg:"{CGenPbEntityEg}" ad:"{CGenPbEntityAd}"`
|
||||||
Path string `name:"path" short:"p" brief:"{CGenPbEntityBriefPath}" d:"manifest/protobuf/pbentity"`
|
Path string `name:"path" short:"p" brief:"{CGenPbEntityBriefPath}" d:"manifest/protobuf/pbentity"`
|
||||||
Package string `name:"package" short:"k" brief:"{CGenPbEntityBriefPackage}"`
|
Package string `name:"package" short:"k" brief:"{CGenPbEntityBriefPackage}"`
|
||||||
|
GoPackage string `name:"goPackage" short:"g" brief:"{CGenPbEntityBriefGoPackage}"`
|
||||||
Link string `name:"link" short:"l" brief:"{CGenPbEntityBriefLink}"`
|
Link string `name:"link" short:"l" brief:"{CGenPbEntityBriefLink}"`
|
||||||
Tables string `name:"tables" short:"t" brief:"{CGenPbEntityBriefTables}"`
|
Tables string `name:"tables" short:"t" brief:"{CGenPbEntityBriefTables}"`
|
||||||
Prefix string `name:"prefix" short:"f" brief:"{CGenPbEntityBriefPrefix}"`
|
Prefix string `name:"prefix" short:"f" brief:"{CGenPbEntityBriefPrefix}"`
|
||||||
@ -111,6 +112,7 @@ CONFIGURATION SUPPORT
|
|||||||
`
|
`
|
||||||
CGenPbEntityBriefPath = `directory path for generated files storing`
|
CGenPbEntityBriefPath = `directory path for generated files storing`
|
||||||
CGenPbEntityBriefPackage = `package path for all entity proto files`
|
CGenPbEntityBriefPackage = `package path for all entity proto files`
|
||||||
|
CGenPbEntityBriefGoPackage = `go package path for all entity proto files`
|
||||||
CGenPbEntityBriefLink = `database configuration, the same as the ORM configuration of GoFrame`
|
CGenPbEntityBriefLink = `database configuration, the same as the ORM configuration of GoFrame`
|
||||||
CGenPbEntityBriefTables = `generate models only for given tables, multiple table names separated with ','`
|
CGenPbEntityBriefTables = `generate models only for given tables, multiple table names separated with ','`
|
||||||
CGenPbEntityBriefPrefix = `add specified prefix for all entity names and entity proto files`
|
CGenPbEntityBriefPrefix = `add specified prefix for all entity names and entity proto files`
|
||||||
@ -236,6 +238,7 @@ func init() {
|
|||||||
`CGenPbEntityAd`: CGenPbEntityAd,
|
`CGenPbEntityAd`: CGenPbEntityAd,
|
||||||
`CGenPbEntityBriefPath`: CGenPbEntityBriefPath,
|
`CGenPbEntityBriefPath`: CGenPbEntityBriefPath,
|
||||||
`CGenPbEntityBriefPackage`: CGenPbEntityBriefPackage,
|
`CGenPbEntityBriefPackage`: CGenPbEntityBriefPackage,
|
||||||
|
`CGenPbEntityBriefGoPackage`: CGenPbEntityBriefGoPackage,
|
||||||
`CGenPbEntityBriefLink`: CGenPbEntityBriefLink,
|
`CGenPbEntityBriefLink`: CGenPbEntityBriefLink,
|
||||||
`CGenPbEntityBriefTables`: CGenPbEntityBriefTables,
|
`CGenPbEntityBriefTables`: CGenPbEntityBriefTables,
|
||||||
`CGenPbEntityBriefPrefix`: CGenPbEntityBriefPrefix,
|
`CGenPbEntityBriefPrefix`: CGenPbEntityBriefPrefix,
|
||||||
@ -369,10 +372,13 @@ func generatePbEntityContentFile(ctx context.Context, in CGenPbEntityInternalInp
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.GoPackage == "" {
|
||||||
|
in.GoPackage = in.Package
|
||||||
|
}
|
||||||
entityContent := gstr.ReplaceByMap(getTplPbEntityContent(""), g.MapStrStr{
|
entityContent := gstr.ReplaceByMap(getTplPbEntityContent(""), g.MapStrStr{
|
||||||
"{Imports}": packageImportsArray.Join("\n"),
|
"{Imports}": packageImportsArray.Join("\n"),
|
||||||
"{PackageName}": gfile.Basename(in.Package),
|
"{PackageName}": gfile.Basename(in.Package),
|
||||||
"{GoPackage}": in.Package,
|
"{GoPackage}": in.GoPackage,
|
||||||
"{OptionContent}": in.Option,
|
"{OptionContent}": in.Option,
|
||||||
"{EntityMessage}": entityMessageDefine,
|
"{EntityMessage}": entityMessageDefine,
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user