Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / cmd / semantictokens.go
1 // Copyright 2020 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package cmd
6
7 import (
8         "bytes"
9         "context"
10         "flag"
11         "fmt"
12         "go/parser"
13         "go/token"
14         "io/ioutil"
15         "log"
16         "os"
17         "runtime"
18         "unicode/utf8"
19
20         "golang.org/x/tools/internal/lsp"
21         "golang.org/x/tools/internal/lsp/protocol"
22         "golang.org/x/tools/internal/lsp/source"
23         "golang.org/x/tools/internal/span"
24 )
25
26 // generate semantic tokens and interpolate them in the file
27
28 // The output is the input file decorated with comments showing the
29 // syntactic tokens. The comments are stylized:
30 //   /*<arrow><length>,<token type>,[<modifiers]*/
31 // For most occurrences, the comment comes just before the token it
32 // describes, and arrow is a right arrow. If the token is inside a string
33 // the comment comes just after the string, and the arrow is a left arrow.
34 // <length> is the length of the token in runes, <token type> is one
35 // of the supported semantic token types, and <modifiers. is a
36 // (possibly empty) list of token type modifiers.
37
38 // There are 3 coordinate systems for lines and character offsets in lines
39 // LSP (what's returned from semanticTokens()):
40 //    0-based: the first line is line 0, the first character of a line
41 //      is character 0, and characters are counted as UTF-16 code points
42 // gopls (and Go error messages):
43 //    1-based: the first line is line1, the first chararcter of a line
44 //      is character 0, and characters are counted as bytes
45 // internal (as used in marks, and lines:=bytes.Split(buf, '\n'))
46 //    0-based: lines and character positions are 1 less than in
47 //      the gopls coordinate system
48
49 type semtok struct {
50         app *Application
51 }
52
53 var colmap *protocol.ColumnMapper
54
55 func (c *semtok) Name() string      { return "semtok" }
56 func (c *semtok) Usage() string     { return "<filename>" }
57 func (c *semtok) ShortHelp() string { return "show semantic tokens for the specified file" }
58 func (c *semtok) DetailedHelp(f *flag.FlagSet) {
59         for i := 1; ; i++ {
60                 _, f, l, ok := runtime.Caller(i)
61                 if !ok {
62                         break
63                 }
64                 log.Printf("%d: %s:%d", i, f, l)
65         }
66         fmt.Fprint(f.Output(), `
67 Example: show the semantic tokens for this file:
68
69   $ gopls semtok internal/lsp/cmd/semtok.go
70
71         gopls semtok flags are:
72 `)
73         f.PrintDefaults()
74 }
75
76 // Run performs the semtok on the files specified by args and prints the
77 // results to stdout in the format described above.
78 func (c *semtok) Run(ctx context.Context, args ...string) error {
79         if len(args) != 1 {
80                 return fmt.Errorf("expected one file name, got %d", len(args))
81         }
82         // perhaps simpler if app had just had a FlagSet member
83         origOptions := c.app.options
84         c.app.options = func(opts *source.Options) {
85                 origOptions(opts)
86                 opts.SemanticTokens = true
87         }
88         conn, err := c.app.connect(ctx)
89         if err != nil {
90                 return err
91         }
92         defer conn.terminate(ctx)
93         uri := span.URIFromPath(args[0])
94         file := conn.AddFile(ctx, uri)
95         if file.err != nil {
96                 return file.err
97         }
98
99         resp, err := conn.semanticTokens(ctx, uri)
100         if err != nil {
101                 return err
102         }
103         buf, err := ioutil.ReadFile(args[0])
104         if err != nil {
105                 log.Fatal(err)
106         }
107         fset := token.NewFileSet()
108         f, err := parser.ParseFile(fset, args[0], buf, 0)
109         if err != nil {
110                 log.Printf("parsing %s failed %v", args[0], err)
111                 return err
112         }
113         tok := fset.File(f.Pos())
114         if tok == nil {
115                 // can't happen; just parsed this file
116                 return fmt.Errorf("can't find %s in fset", args[0])
117         }
118         tc := span.NewContentConverter(args[0], buf)
119         colmap = &protocol.ColumnMapper{
120                 URI:       span.URI(args[0]),
121                 Content:   buf,
122                 Converter: tc,
123         }
124         err = decorate(file.uri.Filename(), resp.Data)
125         if err != nil {
126                 return err
127         }
128         return nil
129 }
130
131 type mark struct {
132         line, offset int // 1-based, from RangeSpan
133         len          int // bytes, not runes
134         typ          string
135         mods         []string
136 }
137
138 // prefixes for semantic token comments
139 const (
140         SemanticLeft  = "/*⇐"
141         SemanticRight = "/*⇒"
142 )
143
144 func markLine(m mark, lines [][]byte) {
145         l := lines[m.line-1] // mx is 1-based
146         length := utf8.RuneCount(l[m.offset-1 : m.offset-1+m.len])
147         splitAt := m.offset - 1
148         insert := ""
149         if m.typ == "namespace" && m.offset-1+m.len < len(l) && l[m.offset-1+m.len] == '"' {
150                 // it is the last component of an import spec
151                 // cannot put a comment inside a string
152                 insert = fmt.Sprintf("%s%d,namespace,[]*/", SemanticLeft, length)
153                 splitAt = m.offset + m.len
154         } else {
155                 insert = fmt.Sprintf("%s%d,%s,%v*/", SemanticRight, length, m.typ, m.mods)
156         }
157         x := append([]byte(insert), l[splitAt:]...)
158         l = append(l[:splitAt], x...)
159         lines[m.line-1] = l
160 }
161
162 func decorate(file string, result []float64) error {
163         buf, err := ioutil.ReadFile(file)
164         if err != nil {
165                 return err
166         }
167         marks := newMarks(result)
168         if len(marks) == 0 {
169                 return nil
170         }
171         lines := bytes.Split(buf, []byte{'\n'})
172         for i := len(marks) - 1; i >= 0; i-- {
173                 mx := marks[i]
174                 markLine(mx, lines)
175         }
176         os.Stdout.Write(bytes.Join(lines, []byte{'\n'}))
177         return nil
178 }
179
180 func newMarks(d []float64) []mark {
181         ans := []mark{}
182         // the following two loops could be merged, at the cost
183         // of making the logic slightly more complicated to understand
184         // first, convert from deltas to absolute, in LSP coordinates
185         lspLine := make([]float64, len(d)/5)
186         lspChar := make([]float64, len(d)/5)
187         line, char := 0.0, 0.0
188         for i := 0; 5*i < len(d); i++ {
189                 lspLine[i] = line + d[5*i+0]
190                 if d[5*i+0] > 0 {
191                         char = 0
192                 }
193                 lspChar[i] = char + d[5*i+1]
194                 char = lspChar[i]
195                 line = lspLine[i]
196         }
197         // second, convert to gopls coordinates
198         for i := 0; 5*i < len(d); i++ {
199                 pr := protocol.Range{
200                         Start: protocol.Position{
201                                 Line:      lspLine[i],
202                                 Character: lspChar[i],
203                         },
204                         End: protocol.Position{
205                                 Line:      lspLine[i],
206                                 Character: lspChar[i] + d[5*i+2],
207                         },
208                 }
209                 spn, err := colmap.RangeSpan(pr)
210                 if err != nil {
211                         log.Fatal(err)
212                 }
213                 m := mark{
214                         line:   spn.Start().Line(),
215                         offset: spn.Start().Column(),
216                         len:    spn.End().Column() - spn.Start().Column(),
217                         typ:    lsp.SemType(int(d[5*i+3])),
218                         mods:   lsp.SemMods(int(d[5*i+4])),
219                 }
220                 ans = append(ans, m)
221         }
222         return ans
223 }