如何使用golang编写基于注解的静态代码增强器/生成器
发表于:2025-11-14 作者:千家信息网编辑
千家信息网最后更新 2025年11月14日,本篇内容介绍了"如何使用golang编写基于注解的静态代码增强器/生成器"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅
千家信息网最后更新 2025年11月14日如何使用golang编写基于注解的静态代码增强器/生成器
本篇内容介绍了"如何使用golang编写基于注解的静态代码增强器/生成器"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
Spring
Spring的主要特性:1. 控制反转(Inversion of Control, IoC)2. 面向容器3. 面向切面(AspectOriented Programming, AOP)源码gitee地址:https://gitee.com/ioly/learning.gooop原文链接:https://my.oschina.net/ioly
目标
参考spring boot常用注解,使用golang编写"基于注解的静态代码增强器/生成器"
子目标(Day 11)
编写针对@RestController的增强器
enhancer/IEnhancer.go: 定义增强器接口
enhancer/RestControllerEnhancer.go:REST控制器的增强实现
enhancer/IEnhancer.go: 定义增强器接口
package enhancerimport "learning/gooop/spring/autogen/domain"// IEnhancer clones the original file and appends enhanced codetype IEnhancer interface { Matches(file *domain.CodeFileInfo) bool Enhance(file *domain.CodeFileInfo) (error, *domain.CodeFileInfo)}enhancer/RestControllerEnhancer.go REST控制器的增强实现
package controllerimport ( "errors" "fmt" "learning/gooop/spring/autogen/domain" "path" "strings")type RestControllerEnhancer inttype tMappingMethodInfo struct { httpMethod string httpPath string method *domain.MethodInfo}func (me *RestControllerEnhancer) Matches(file *domain.CodeFileInfo) bool { for _, it := range file.Structs { if ok, _ := me.hasAnnotation(it.Annotations, "RestController"); ok { return true } } return false}func (me *RestControllerEnhancer) Enhance(file *domain.CodeFileInfo) (error, *domain.CodeFileInfo) { // clone file file = file.Clone().(*domain.CodeFileInfo) file.LocalFile = strings.Replace(file.LocalFile, ".go", "_Enhanced.go", -1) // find structs with @RestController changed := false for _, it := range file.Structs { if ok, a := me.hasAnnotation(it.Annotations, "RestController"); ok { // enhance target struct e := me.enhanceStruct(it, a) if e != nil { return e, nil } changed = true } } if changed { return nil, file } else { return nil, nil }}func (me *RestControllerEnhancer) hasAnnotation(arr []*domain.AnnotationInfo, name string) (bool, *domain.AnnotationInfo) { for _, it := range arr { if it.Name == name { return true, it } } return false, nil}func (me *RestControllerEnhancer) enhanceStruct(s *domain.StructInfo, sa *domain.AnnotationInfo) error { // update struct name s.Name = s.Name + "_Enhanced" // ensure imports me.ensureImport(s.CodeFile, "github.com/gin-gonic/gin") me.ensureImport(s.CodeFile, "net/http") // enhance GetMapping methods methods := []*tMappingMethodInfo{} for _, it := range s.Methods { if ok, a := me.hasAnnotation(it.Annotations, "GetMapping"); ok { e := me.enhanceGetMapping(it, a) if e != nil { return e } info := new(tMappingMethodInfo) info.httpMethod = "GET" info.httpPath = path.Join(sa.Get("path"), a.Get("path")) info.method = it methods = append(methods, info) } } // enhance PostMapping methods for _, it := range s.Methods { if ok, a := me.hasAnnotation(it.Annotations, "PostMapping"); ok { e := me.enhancePostMapping(it, a) if e != nil { return e } info := new(tMappingMethodInfo) info.httpMethod = "POST" info.httpPath = path.Join(sa.Get("path"), a.Get("path")) info.method = it methods = append(methods, info) } } // generate RegisterRestController() if len(methods) <= 0 { return errors.New("no mapping method found") } file := s.CodeFile addLine := func(line string) { file.AdditionalLines = append(file.AdditionalLines, line) } addLine(`// RegisterRestController is auto generated to implements controller.IRestController interface`) addLine(fmt.Sprintf(`func (me *%s) RegisterRestController(r *gin.Engine) {`, s.Name)) for _, it := range methods { addLine(fmt.Sprintf(` r.%s("%s", me.%s)`, it.httpMethod, it.httpPath, it.method.Name)) } addLine(`}`) return nil}func (me *RestControllerEnhancer) ensureImport(file *domain.CodeFileInfo, p string) { for _, it := range file.Imports { if it.Package == p { return } } // add import info it := new(domain.ImportInfo) it.CodeFile = file it.Package = p file.AdditionalImports = append(file.AdditionalImports, it)}func (me *RestControllerEnhancer) enhanceGetMapping(method *domain.MethodInfo, a *domain.AnnotationInfo) error { // todo: fixme panic("implements me")}func (me *RestControllerEnhancer) enhancePostMapping(method *domain.MethodInfo, a *domain.AnnotationInfo) error { // todo: fixme panic("implements me")}"如何使用golang编写基于注解的静态代码增强器/生成器"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!
增强器
注解
代码
生成器
静态
生成
控制
内容
接口
控制器
更多
目标
知识
实用
学有所成
接下来
切面
原文
困境
地址
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
软件开发工程师有证吗
剑网三的服务器是国产的吗
网站上传到服务器软件
哈职专科网络技术排名
应用软件开发系统有哪些
铁路网络安全事件分为几类
电脑数据库文件剪切怎么恢复
管家婆重装后导入数据库
什么是xml数据库
网络隐私与网络安全法
襄阳深圳团帮互联网科技
图形数据库直连
上海网络技术外包
紧身衣视频软件开发
国家网络安全产业园挂牌西集
如何看敏捷软件开发这本书
服务器时间不准确
数据库技术与应用实训第二章
航海王启航公益服服务器异常
华为高斯数据库停止更新
香港软件开发有几家
乳山软件开发入门教程教学视频
固定资产软件开发
我的世界服务器如何强制tp
2020软件开发企业
个人怎么保证网络安全
数据库使用领域举例
nppexec软件开发商
邮件服务器怎么查询历史记录
国际服刺激战场新号服务器维护