gofmt 的文化演变

The Cultural Evolution of gofmt

Robert Griesemer

Google, Inc.

gofmt

2

初衷

3

历史

GRINDEF  (Bill Gosper, 1967)           第一个计算行长度
SOAP     (R. Scowen et al, 1969)       简化了晦涩的算法程序
NEATER2  (Ken Conrow, R. Smith, 1970)  PL/1格式器,作为(早期的)纠错工具
cb       (Unix Version 7, 1979)        C程序美化器
indent   (4.2 BSD, 1983)               缩进和格化化C代码
等等
ClangFormat                            C/C++/Objective-C 格式器
Uncrustify                             C, C++, C#, ObjectiveC, D, Java, Pawn and VALA的美化器
等等
4

事实上

5

好的格式美化器的问题

6

格式化Go

7

尽量保证其简单

一个格化标准搞定所有!

8

gofmt的基本结构

9

处理源代码

// Syntax of an if statement.
IfStmt = "if" [ SimpleStmt ";" ] Expression Block [ "else" ( IfStmt | Block ) ] .

// An IfStmt node represents an if statement.
IfStmt struct {
    If   token.Pos // position of "if" keyword
    Init Stmt      // initialization statement; or nil
    Cond Expr      // condition
    Body *BlockStmt
    Else Stmt // else branch; or nil
}
10

基本的格式化

case *ast.IfStmt:
    p.print(token.IF)
    p.controlClause(false, s.Init, s.Cond, nil)
    p.block(s.Body, 1)
    if s.Else != nil {
        p.print(blank, token.ELSE, blank)
        switch s.Else.(type) {
        case *ast.BlockStmt, *ast.IfStmt:
            p.stmt(s.Else, nextIsRBrace)
        default:
            p.print(token.LBRACE, indent, formfeed)
            p.stmt(s.Else, true)
            p.print(unindent, formfeed, token.RBRACE)
        }
    }
11

细致的调节

x = a + b
x = a + b*c
if a+b <= d {
if a+b*c <= d {
12

注释的处理

// A CommentGroup represents a sequence of comments
// with no other tokens and no empty lines between.
//
type CommentGroup struct {
    List []*Comment // len(List) > 0
}
13

注释在 AST 上的表达

14

格式化注释

15

魔鬼就在细节中

16

格式化单独的注释

func f() {              func() {
 /*                             /*
  * foo                          * foo
  * bar         ==>              * bar
  * bal                          * bal
 */                              */
        if ...                   if  ...
}                       }
17

对齐

var (                                 var (
        x, y int = 2, 3 // foo                x, y int     = 2, 3 // foo
        z float32 // bar         ==>          z    float32        // bar
        s string // bal                       s    string         // bal
)                                     )
18

灵活的制表符宽度

通常的制表符把当前的写位置移动到下一个固定的位置.

基本的办法:让制表符宽度更加灵活.

被 Nick Gravgaard 提出于2006

实现在 text/tabwriter 包中.

19

灵活制表符宽度的展示

20

综合在一起 (1)

对于固定宽度的字体,处理的很好.

比例大小的字体也可以被编辑器支持,如果这个编辑器可以支持灵活的制表符宽度.

21

综合在一起 (2)

22

从宏观上看

23

gofmt 的应用

24

gofmt 作为源代码变换工具

gofmt -w -r 'a[i:len(x)] -> a[i:]' *.go
25

大家的反应

现在,格式已经不是一个问题。

26

其它语言也在向我们学习

现在,任何语言都被要求带有自动的源代码格式器。

27

总结

28

编程文化的演变

29

至今的收获:应用程序

我们想要:

30

至今的收获:实现过程

=> 现在的设计使得操作 AST 和保持注释在正确的地方十分困难。

我们想要:

31

将来的计划

32

Thank you

Robert Griesemer

Google, Inc.

Use the left and right arrow keys or click the left and right edges of the page to navigate between slides.
(Press 'H' or navigate to hide this message.)