]> Cypherpunks.ru repositories - gostls13.git/blob - src/cmd/compile/internal/types2/typestring.go
[dev.typeparams] cmd/compile/internal/types2: remove TestIncompleteInterfaces (cleanup)
[gostls13.git] / src / cmd / compile / internal / types2 / typestring.go
1 // Copyright 2013 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 // This file implements printing of types.
6
7 package types2
8
9 import (
10         "bytes"
11         "fmt"
12         "unicode/utf8"
13 )
14
15 // A Qualifier controls how named package-level objects are printed in
16 // calls to TypeString, ObjectString, and SelectionString.
17 //
18 // These three formatting routines call the Qualifier for each
19 // package-level object O, and if the Qualifier returns a non-empty
20 // string p, the object is printed in the form p.O.
21 // If it returns an empty string, only the object name O is printed.
22 //
23 // Using a nil Qualifier is equivalent to using (*Package).Path: the
24 // object is qualified by the import path, e.g., "encoding/json.Marshal".
25 //
26 type Qualifier func(*Package) string
27
28 // RelativeTo returns a Qualifier that fully qualifies members of
29 // all packages other than pkg.
30 func RelativeTo(pkg *Package) Qualifier {
31         if pkg == nil {
32                 return nil
33         }
34         return func(other *Package) string {
35                 if pkg == other {
36                         return "" // same package; unqualified
37                 }
38                 return other.Path()
39         }
40 }
41
42 // TypeString returns the string representation of typ.
43 // The Qualifier controls the printing of
44 // package-level objects, and may be nil.
45 func TypeString(typ Type, qf Qualifier) string {
46         var buf bytes.Buffer
47         WriteType(&buf, typ, qf)
48         return buf.String()
49 }
50
51 // WriteType writes the string representation of typ to buf.
52 // The Qualifier controls the printing of
53 // package-level objects, and may be nil.
54 func WriteType(buf *bytes.Buffer, typ Type, qf Qualifier) {
55         writeType(buf, typ, qf, make([]Type, 0, 8))
56 }
57
58 // instanceMarker is the prefix for an instantiated type
59 // in "non-evaluated" instance form.
60 const instanceMarker = '#'
61
62 func writeType(buf *bytes.Buffer, typ Type, qf Qualifier, visited []Type) {
63         // Theoretically, this is a quadratic lookup algorithm, but in
64         // practice deeply nested composite types with unnamed component
65         // types are uncommon. This code is likely more efficient than
66         // using a map.
67         for _, t := range visited {
68                 if t == typ {
69                         fmt.Fprintf(buf, "○%T", goTypeName(typ)) // cycle to typ
70                         return
71                 }
72         }
73         visited = append(visited, typ)
74
75         switch t := typ.(type) {
76         case nil:
77                 buf.WriteString("<nil>")
78
79         case *Basic:
80                 // exported basic types go into package unsafe
81                 // (currently this is just unsafe.Pointer)
82                 if isExported(t.name) {
83                         if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
84                                 writeTypeName(buf, obj, qf)
85                                 break
86                         }
87                 }
88                 buf.WriteString(t.name)
89
90         case *Array:
91                 fmt.Fprintf(buf, "[%d]", t.len)
92                 writeType(buf, t.elem, qf, visited)
93
94         case *Slice:
95                 buf.WriteString("[]")
96                 writeType(buf, t.elem, qf, visited)
97
98         case *Struct:
99                 buf.WriteString("struct{")
100                 for i, f := range t.fields {
101                         if i > 0 {
102                                 buf.WriteString("; ")
103                         }
104                         // This doesn't do the right thing for embedded type
105                         // aliases where we should print the alias name, not
106                         // the aliased type (see issue #44410).
107                         if !f.embedded {
108                                 buf.WriteString(f.name)
109                                 buf.WriteByte(' ')
110                         }
111                         writeType(buf, f.typ, qf, visited)
112                         if tag := t.Tag(i); tag != "" {
113                                 fmt.Fprintf(buf, " %q", tag)
114                         }
115                 }
116                 buf.WriteByte('}')
117
118         case *Pointer:
119                 buf.WriteByte('*')
120                 writeType(buf, t.base, qf, visited)
121
122         case *Tuple:
123                 writeTuple(buf, t, false, qf, visited)
124
125         case *Signature:
126                 buf.WriteString("func")
127                 writeSignature(buf, t, qf, visited)
128
129         case *Union:
130                 // Unions only appear as (syntactic) embedded elements
131                 // in interfaces and syntactically cannot be empty.
132                 if t.NumTerms() == 0 {
133                         panic("internal error: empty union")
134                 }
135                 for i, t := range t.terms {
136                         if i > 0 {
137                                 buf.WriteByte('|')
138                         }
139                         if t.tilde {
140                                 buf.WriteByte('~')
141                         }
142                         writeType(buf, t.typ, qf, visited)
143                 }
144
145         case *Interface:
146                 buf.WriteString("interface{")
147                 first := true
148                 for _, m := range t.methods {
149                         if !first {
150                                 buf.WriteString("; ")
151                         }
152                         first = false
153                         buf.WriteString(m.name)
154                         writeSignature(buf, m.typ.(*Signature), qf, visited)
155                 }
156                 for _, typ := range t.embeddeds {
157                         if !first {
158                                 buf.WriteString("; ")
159                         }
160                         first = false
161                         writeType(buf, typ, qf, visited)
162                 }
163                 buf.WriteByte('}')
164
165         case *Map:
166                 buf.WriteString("map[")
167                 writeType(buf, t.key, qf, visited)
168                 buf.WriteByte(']')
169                 writeType(buf, t.elem, qf, visited)
170
171         case *Chan:
172                 var s string
173                 var parens bool
174                 switch t.dir {
175                 case SendRecv:
176                         s = "chan "
177                         // chan (<-chan T) requires parentheses
178                         if c, _ := t.elem.(*Chan); c != nil && c.dir == RecvOnly {
179                                 parens = true
180                         }
181                 case SendOnly:
182                         s = "chan<- "
183                 case RecvOnly:
184                         s = "<-chan "
185                 default:
186                         panic("unreachable")
187                 }
188                 buf.WriteString(s)
189                 if parens {
190                         buf.WriteByte('(')
191                 }
192                 writeType(buf, t.elem, qf, visited)
193                 if parens {
194                         buf.WriteByte(')')
195                 }
196
197         case *Named:
198                 if t.instance != nil {
199                         buf.WriteByte(instanceMarker)
200                 }
201                 writeTypeName(buf, t.obj, qf)
202                 if t.targs != nil {
203                         // instantiated type
204                         buf.WriteByte('[')
205                         writeTypeList(buf, t.targs, qf, visited)
206                         buf.WriteByte(']')
207                 } else if t.TParams().Len() != 0 {
208                         // parameterized type
209                         writeTParamList(buf, t.TParams().list(), qf, visited)
210                 }
211
212         case *TypeParam:
213                 s := "?"
214                 if t.obj != nil {
215                         // Optionally write out package for typeparams (like Named).
216                         // TODO(danscales): this is required for import/export, so
217                         // we maybe need a separate function that won't be changed
218                         // for debugging purposes.
219                         if t.obj.pkg != nil {
220                                 writePackage(buf, t.obj.pkg, qf)
221                         }
222                         s = t.obj.name
223                 }
224                 buf.WriteString(s + subscript(t.id))
225
226         case *top:
227                 buf.WriteString("⊤")
228
229         default:
230                 // For externally defined implementations of Type.
231                 // Note: In this case cycles won't be caught.
232                 buf.WriteString(t.String())
233         }
234 }
235
236 func writeTypeList(buf *bytes.Buffer, list []Type, qf Qualifier, visited []Type) {
237         for i, typ := range list {
238                 if i > 0 {
239                         buf.WriteString(", ")
240                 }
241                 writeType(buf, typ, qf, visited)
242         }
243 }
244
245 func writeTParamList(buf *bytes.Buffer, list []*TypeName, qf Qualifier, visited []Type) {
246         buf.WriteString("[")
247         var prev Type
248         for i, p := range list {
249                 // TODO(gri) support 'any' sugar here.
250                 var b Type = &emptyInterface
251                 if t, _ := p.typ.(*TypeParam); t != nil && t.bound != nil {
252                         b = t.bound
253                 }
254                 if i > 0 {
255                         if b != prev {
256                                 // type bound changed - write previous one before advancing
257                                 buf.WriteByte(' ')
258                                 writeType(buf, prev, qf, visited)
259                         }
260                         buf.WriteString(", ")
261                 }
262                 prev = b
263
264                 if t, _ := p.typ.(*TypeParam); t != nil {
265                         writeType(buf, t, qf, visited)
266                 } else {
267                         buf.WriteString(p.name)
268                 }
269         }
270         if prev != nil {
271                 buf.WriteByte(' ')
272                 writeType(buf, prev, qf, visited)
273         }
274         buf.WriteByte(']')
275 }
276
277 func writeTypeName(buf *bytes.Buffer, obj *TypeName, qf Qualifier) {
278         if obj == nil {
279                 buf.WriteString("<Named w/o object>")
280                 return
281         }
282         if obj.pkg != nil {
283                 writePackage(buf, obj.pkg, qf)
284         }
285         buf.WriteString(obj.name)
286
287         if instanceHashing != 0 {
288                 // For local defined types, use the (original!) TypeName's scope
289                 // numbers to disambiguate.
290                 typ := obj.typ.(*Named)
291                 // TODO(gri) Figure out why typ.orig != typ.orig.orig sometimes
292                 //           and whether the loop can iterate more than twice.
293                 //           (It seems somehow connected to instance types.)
294                 for typ.orig != typ {
295                         typ = typ.orig
296                 }
297                 writeScopeNumbers(buf, typ.obj.parent)
298         }
299 }
300
301 // writeScopeNumbers writes the number sequence for this scope to buf
302 // in the form ".i.j.k" where i, j, k, etc. stand for scope numbers.
303 // If a scope is nil or has no parent (such as a package scope), nothing
304 // is written.
305 func writeScopeNumbers(buf *bytes.Buffer, s *Scope) {
306         if s != nil && s.number > 0 {
307                 writeScopeNumbers(buf, s.parent)
308                 fmt.Fprintf(buf, ".%d", s.number)
309         }
310 }
311
312 func writeTuple(buf *bytes.Buffer, tup *Tuple, variadic bool, qf Qualifier, visited []Type) {
313         buf.WriteByte('(')
314         if tup != nil {
315                 for i, v := range tup.vars {
316                         if i > 0 {
317                                 buf.WriteString(", ")
318                         }
319                         if v.name != "" {
320                                 buf.WriteString(v.name)
321                                 buf.WriteByte(' ')
322                         }
323                         typ := v.typ
324                         if variadic && i == len(tup.vars)-1 {
325                                 if s, ok := typ.(*Slice); ok {
326                                         buf.WriteString("...")
327                                         typ = s.elem
328                                 } else {
329                                         // special case:
330                                         // append(s, "foo"...) leads to signature func([]byte, string...)
331                                         if t := asBasic(typ); t == nil || t.kind != String {
332                                                 panic("internal error: string type expected")
333                                         }
334                                         writeType(buf, typ, qf, visited)
335                                         buf.WriteString("...")
336                                         continue
337                                 }
338                         }
339                         writeType(buf, typ, qf, visited)
340                 }
341         }
342         buf.WriteByte(')')
343 }
344
345 // WriteSignature writes the representation of the signature sig to buf,
346 // without a leading "func" keyword.
347 // The Qualifier controls the printing of
348 // package-level objects, and may be nil.
349 func WriteSignature(buf *bytes.Buffer, sig *Signature, qf Qualifier) {
350         writeSignature(buf, sig, qf, make([]Type, 0, 8))
351 }
352
353 func writeSignature(buf *bytes.Buffer, sig *Signature, qf Qualifier, visited []Type) {
354         if sig.TParams().Len() != 0 {
355                 writeTParamList(buf, sig.TParams().list(), qf, visited)
356         }
357
358         writeTuple(buf, sig.params, sig.variadic, qf, visited)
359
360         n := sig.results.Len()
361         if n == 0 {
362                 // no result
363                 return
364         }
365
366         buf.WriteByte(' ')
367         if n == 1 && sig.results.vars[0].name == "" {
368                 // single unnamed result
369                 writeType(buf, sig.results.vars[0].typ, qf, visited)
370                 return
371         }
372
373         // multiple or named result(s)
374         writeTuple(buf, sig.results, false, qf, visited)
375 }
376
377 // subscript returns the decimal (utf8) representation of x using subscript digits.
378 func subscript(x uint64) string {
379         const w = len("₀") // all digits 0...9 have the same utf8 width
380         var buf [32 * w]byte
381         i := len(buf)
382         for {
383                 i -= w
384                 utf8.EncodeRune(buf[i:], '₀'+rune(x%10)) // '₀' == U+2080
385                 x /= 10
386                 if x == 0 {
387                         break
388                 }
389         }
390         return string(buf[i:])
391 }