Writing a Go Tool to Parse and Modify Struct Tags

Fatih Arslan · · 1325 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

Liveblog by Matt King

Fatih_Arslan_Struct_Tags

Overview

Struct field tags are an important part of encode/decode types, especially when using packages such as encoding/json. However, modifying tags is repetitive, cumbersome and open to human errors. We can make it easy to modify tags with an automated tool that is written for this sole purpose.

gomodifytags

A Go tool to modify/update field tags in structs. gomodifytags makes it easy to update, add or delete the tags in a struct field. You can easily add new tags, update existing tags (such as appending a new key, i.e: db,xml, etc..) or remove existing tags. It also allows you to add and remove tag options. It’s intended to be used by an editor, but also has modes to run it from the terminal. Read the usage section below for more information. View on Sourcegraph or clone the GitHub Project or to get started.

How does it work?

  • Parse the file
  • Find the selection
  • Modify the struct
  • Output the result

Why do we need tooling?

Because working with struct tags are not fun. Let’s take the following struct:

type Example struct {

    StatusID int64 `json:"status_id"`

    Foo string     `json:"foo" xml:"foo"`

    Bar bool       `json:"bar" xml:"bar"`


    Server struct {

        Address string `json:"address"`

        TLS bool       `json:"tls",xml:"tls"`

    } `json="server"`

  
    DiskSize int64   `json:disk_size`

    Volumes []string `"json":"volumes"`

}

Maybe you noticed or maybe you didn’t, but there are 4 errors in the first struct example. This can be a mess to deal with and that’s why tooling is important.

Here is how the struct should look:

type Example struct {

    StatusID int64 `json:"status_id"`

    Foo string     `json:"foo" xml:"foo"`

    Bar bool       `json:"bar" xml:"bar"` 

    Server struct {

        Address string `json:"address"`

        TLS bool       `json:"tls" xml:"tls"`

    } `json:"server"`

  
    DiskSize int64   `json:"disk_size"`

    Volumes []string `json:"volumes"`

}

gomodifytags underwent several iterations. The first implementation worked by first searching backwards from the cursor to the first ‘struct {‘ literal. Once found, it searched forward for the right hand brace ‘}’. Then it would calculate the line number between the braces and for each line, get the first identifier, convert it to camel_case and append it to the same line.

This was problematic and could result in duplicate tags, the inability to handle nested structures, and would break if there were inline comments. The second attempt relied on the Go parser family.

The second iteration also ran into problems when calling reflect.StructTag. It couldn’t detect if the tag is malformed, it doesn’t know the semantics of options (i.e omitempty), and it doesn’t return all existing tags.

The solution we have now works by first fetching configuration settings, parsing the content, finding the selection, modifying the struct tag and outputting the formatted result.

gomodifytags was built from the ground up for editors. By building the tool editor first we are able to select structs based on offset or range of lines. We can write the result to stdout or file so we can preserve file history and undo changes easily.

Editor Integrations

  • vim with vim-go

  • atom with go-plus

  • vscode with vscode-go

Update

If you want to learn more about how to write a tool to modify struct tags. Check out the slides.

About the speaker

Fatih is a Software Engineer at @DigitalOcean. A Gopher and a coffee geek. He’s the author of vim-go and several popular Go packages. He’s contributed to several open source projects, such as Go, Terraform, HCL, and Koding.

GitHub

Twitter

Medium


有疑问加站长微信联系(非本文作者)

本文来自:sourcegraph

感谢作者:Fatih Arslan

查看原文:Writing a Go Tool to Parse and Modify Struct Tags

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

1325 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传