]> Cypherpunks.ru repositories - gostls13.git/blob - src/go/types/lookup.go
go/types, types2: add cause parameter to missingMethod, (new)assertableTo
[gostls13.git] / src / go / types / lookup.go
1 // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
2
3 // Copyright 2013 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
6
7 // This file implements various field and method lookup functions.
8
9 package types
10
11 import (
12         "bytes"
13         "strings"
14 )
15
16 // Internal use of LookupFieldOrMethod: If the obj result is a method
17 // associated with a concrete (non-interface) type, the method's signature
18 // may not be fully set up. Call Checker.objDecl(obj, nil) before accessing
19 // the method's type.
20
21 // LookupFieldOrMethod looks up a field or method with given package and name
22 // in T and returns the corresponding *Var or *Func, an index sequence, and a
23 // bool indicating if there were any pointer indirections on the path to the
24 // field or method. If addressable is set, T is the type of an addressable
25 // variable (only matters for method lookups). T must not be nil.
26 //
27 // The last index entry is the field or method index in the (possibly embedded)
28 // type where the entry was found, either:
29 //
30 //  1. the list of declared methods of a named type; or
31 //  2. the list of all methods (method set) of an interface type; or
32 //  3. the list of fields of a struct type.
33 //
34 // The earlier index entries are the indices of the embedded struct fields
35 // traversed to get to the found entry, starting at depth 0.
36 //
37 // If no entry is found, a nil object is returned. In this case, the returned
38 // index and indirect values have the following meaning:
39 //
40 //   - If index != nil, the index sequence points to an ambiguous entry
41 //     (the same name appeared more than once at the same embedding level).
42 //
43 //   - If indirect is set, a method with a pointer receiver type was found
44 //     but there was no pointer on the path from the actual receiver type to
45 //     the method's formal receiver base type, nor was the receiver addressable.
46 func LookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string) (obj Object, index []int, indirect bool) {
47         if T == nil {
48                 panic("LookupFieldOrMethod on nil type")
49         }
50
51         // Methods cannot be associated to a named pointer type.
52         // (spec: "The type denoted by T is called the receiver base type;
53         // it must not be a pointer or interface type and it must be declared
54         // in the same package as the method.").
55         // Thus, if we have a named pointer type, proceed with the underlying
56         // pointer type but discard the result if it is a method since we would
57         // not have found it for T (see also go.dev/issue/8590).
58         if t, _ := T.(*Named); t != nil {
59                 if p, _ := t.Underlying().(*Pointer); p != nil {
60                         obj, index, indirect = lookupFieldOrMethod(p, false, pkg, name, false)
61                         if _, ok := obj.(*Func); ok {
62                                 return nil, nil, false
63                         }
64                         return
65                 }
66         }
67
68         obj, index, indirect = lookupFieldOrMethod(T, addressable, pkg, name, false)
69
70         // If we didn't find anything and if we have a type parameter with a core type,
71         // see if there is a matching field (but not a method, those need to be declared
72         // explicitly in the constraint). If the constraint is a named pointer type (see
73         // above), we are ok here because only fields are accepted as results.
74         const enableTParamFieldLookup = false // see go.dev/issue/51576
75         if enableTParamFieldLookup && obj == nil && isTypeParam(T) {
76                 if t := coreType(T); t != nil {
77                         obj, index, indirect = lookupFieldOrMethod(t, addressable, pkg, name, false)
78                         if _, ok := obj.(*Var); !ok {
79                                 obj, index, indirect = nil, nil, false // accept fields (variables) only
80                         }
81                 }
82         }
83         return
84 }
85
86 // lookupFieldOrMethod should only be called by LookupFieldOrMethod and missingMethod.
87 // If foldCase is true, the lookup for methods will include looking for any method
88 // which case-folds to the same as 'name' (used for giving helpful error messages).
89 //
90 // The resulting object may not be fully type-checked.
91 func lookupFieldOrMethod(T Type, addressable bool, pkg *Package, name string, foldCase bool) (obj Object, index []int, indirect bool) {
92         // WARNING: The code in this function is extremely subtle - do not modify casually!
93
94         if name == "_" {
95                 return // blank fields/methods are never found
96         }
97
98         typ, isPtr := deref(T)
99
100         // *typ where typ is an interface (incl. a type parameter) has no methods.
101         if isPtr {
102                 if _, ok := under(typ).(*Interface); ok {
103                         return
104                 }
105         }
106
107         // Start with typ as single entry at shallowest depth.
108         current := []embeddedType{{typ, nil, isPtr, false}}
109
110         // seen tracks named types that we have seen already, allocated lazily.
111         // Used to avoid endless searches in case of recursive types.
112         //
113         // We must use a lookup on identity rather than a simple map[*Named]bool as
114         // instantiated types may be identical but not equal.
115         var seen instanceLookup
116
117         // search current depth
118         for len(current) > 0 {
119                 var next []embeddedType // embedded types found at current depth
120
121                 // look for (pkg, name) in all types at current depth
122                 for _, e := range current {
123                         typ := e.typ
124
125                         // If we have a named type, we may have associated methods.
126                         // Look for those first.
127                         if named, _ := typ.(*Named); named != nil {
128                                 if alt := seen.lookup(named); alt != nil {
129                                         // We have seen this type before, at a more shallow depth
130                                         // (note that multiples of this type at the current depth
131                                         // were consolidated before). The type at that depth shadows
132                                         // this same type at the current depth, so we can ignore
133                                         // this one.
134                                         continue
135                                 }
136                                 seen.add(named)
137
138                                 // look for a matching attached method
139                                 if i, m := named.lookupMethod(pkg, name, foldCase); m != nil {
140                                         // potential match
141                                         // caution: method may not have a proper signature yet
142                                         index = concat(e.index, i)
143                                         if obj != nil || e.multiples {
144                                                 return nil, index, false // collision
145                                         }
146                                         obj = m
147                                         indirect = e.indirect
148                                         continue // we can't have a matching field or interface method
149                                 }
150                         }
151
152                         switch t := under(typ).(type) {
153                         case *Struct:
154                                 // look for a matching field and collect embedded types
155                                 for i, f := range t.fields {
156                                         if f.sameId(pkg, name) {
157                                                 assert(f.typ != nil)
158                                                 index = concat(e.index, i)
159                                                 if obj != nil || e.multiples {
160                                                         return nil, index, false // collision
161                                                 }
162                                                 obj = f
163                                                 indirect = e.indirect
164                                                 continue // we can't have a matching interface method
165                                         }
166                                         // Collect embedded struct fields for searching the next
167                                         // lower depth, but only if we have not seen a match yet
168                                         // (if we have a match it is either the desired field or
169                                         // we have a name collision on the same depth; in either
170                                         // case we don't need to look further).
171                                         // Embedded fields are always of the form T or *T where
172                                         // T is a type name. If e.typ appeared multiple times at
173                                         // this depth, f.typ appears multiple times at the next
174                                         // depth.
175                                         if obj == nil && f.embedded {
176                                                 typ, isPtr := deref(f.typ)
177                                                 // TODO(gri) optimization: ignore types that can't
178                                                 // have fields or methods (only Named, Struct, and
179                                                 // Interface types need to be considered).
180                                                 next = append(next, embeddedType{typ, concat(e.index, i), e.indirect || isPtr, e.multiples})
181                                         }
182                                 }
183
184                         case *Interface:
185                                 // look for a matching method (interface may be a type parameter)
186                                 if i, m := t.typeSet().LookupMethod(pkg, name, foldCase); m != nil {
187                                         assert(m.typ != nil)
188                                         index = concat(e.index, i)
189                                         if obj != nil || e.multiples {
190                                                 return nil, index, false // collision
191                                         }
192                                         obj = m
193                                         indirect = e.indirect
194                                 }
195                         }
196                 }
197
198                 if obj != nil {
199                         // found a potential match
200                         // spec: "A method call x.m() is valid if the method set of (the type of) x
201                         //        contains m and the argument list can be assigned to the parameter
202                         //        list of m. If x is addressable and &x's method set contains m, x.m()
203                         //        is shorthand for (&x).m()".
204                         if f, _ := obj.(*Func); f != nil {
205                                 // determine if method has a pointer receiver
206                                 if f.hasPtrRecv() && !indirect && !addressable {
207                                         return nil, nil, true // pointer/addressable receiver required
208                                 }
209                         }
210                         return
211                 }
212
213                 current = consolidateMultiples(next)
214         }
215
216         return nil, nil, false // not found
217 }
218
219 // embeddedType represents an embedded type
220 type embeddedType struct {
221         typ       Type
222         index     []int // embedded field indices, starting with index at depth 0
223         indirect  bool  // if set, there was a pointer indirection on the path to this field
224         multiples bool  // if set, typ appears multiple times at this depth
225 }
226
227 // consolidateMultiples collects multiple list entries with the same type
228 // into a single entry marked as containing multiples. The result is the
229 // consolidated list.
230 func consolidateMultiples(list []embeddedType) []embeddedType {
231         if len(list) <= 1 {
232                 return list // at most one entry - nothing to do
233         }
234
235         n := 0                     // number of entries w/ unique type
236         prev := make(map[Type]int) // index at which type was previously seen
237         for _, e := range list {
238                 if i, found := lookupType(prev, e.typ); found {
239                         list[i].multiples = true
240                         // ignore this entry
241                 } else {
242                         prev[e.typ] = n
243                         list[n] = e
244                         n++
245                 }
246         }
247         return list[:n]
248 }
249
250 func lookupType(m map[Type]int, typ Type) (int, bool) {
251         // fast path: maybe the types are equal
252         if i, found := m[typ]; found {
253                 return i, true
254         }
255
256         for t, i := range m {
257                 if Identical(t, typ) {
258                         return i, true
259                 }
260         }
261
262         return 0, false
263 }
264
265 type instanceLookup struct {
266         // buf is used to avoid allocating the map m in the common case of a small
267         // number of instances.
268         buf [3]*Named
269         m   map[*Named][]*Named
270 }
271
272 func (l *instanceLookup) lookup(inst *Named) *Named {
273         for _, t := range l.buf {
274                 if t != nil && Identical(inst, t) {
275                         return t
276                 }
277         }
278         for _, t := range l.m[inst.Origin()] {
279                 if Identical(inst, t) {
280                         return t
281                 }
282         }
283         return nil
284 }
285
286 func (l *instanceLookup) add(inst *Named) {
287         for i, t := range l.buf {
288                 if t == nil {
289                         l.buf[i] = inst
290                         return
291                 }
292         }
293         if l.m == nil {
294                 l.m = make(map[*Named][]*Named)
295         }
296         insts := l.m[inst.Origin()]
297         l.m[inst.Origin()] = append(insts, inst)
298 }
299
300 // MissingMethod returns (nil, false) if V implements T, otherwise it
301 // returns a missing method required by T and whether it is missing or
302 // just has the wrong type.
303 //
304 // For non-interface types V, or if static is set, V implements T if all
305 // methods of T are present in V. Otherwise (V is an interface and static
306 // is not set), MissingMethod only checks that methods of T which are also
307 // present in V have matching types (e.g., for a type assertion x.(T) where
308 // x is of interface type V).
309 func MissingMethod(V Type, T *Interface, static bool) (method *Func, wrongType bool) {
310         m, alt := (*Checker)(nil).missingMethod(V, T, static, Identical, nil)
311         // Only report a wrong type if the alternative method has the same name as m.
312         return m, alt != nil && alt.name == m.name // alt != nil implies m != nil
313 }
314
315 // missingMethod is like MissingMethod but accepts a *Checker as receiver,
316 // a comparator equivalent for type comparison, and a *string for error causes.
317 // The receiver may be nil if missingMethod is invoked through an exported
318 // API call (such as MissingMethod), i.e., when all methods have been type-
319 // checked.
320 // The underlying type of T must be an interface; T (rather than its under-
321 // lying type) is used for better error messages (reported through *cause).
322 // The comparator is used to compare signatures.
323 // If a method is missing and cause is not nil, *cause is set to the error cause.
324 //
325 // If a method is missing on T but is found on *T, or if a method is found
326 // on T when looked up with case-folding, this alternative method is returned
327 // as the second result.
328 func (check *Checker) missingMethod(V, T Type, static bool, equivalent func(x, y Type) bool, cause *string) (method, alt *Func) {
329         methods := under(T).(*Interface).typeSet().methods // T must be an interface
330         if len(methods) == 0 {
331                 return
332         }
333
334         if cause != nil {
335                 defer func() {
336                         if method != nil {
337                                 *cause = check.missingMethodCause(V, T, method, alt)
338                         }
339                 }()
340         }
341
342         // V is an interface
343         if u, _ := under(V).(*Interface); u != nil {
344                 tset := u.typeSet()
345                 for _, m := range methods {
346                         _, f := tset.LookupMethod(m.pkg, m.name, false)
347
348                         if f == nil {
349                                 if !static {
350                                         continue
351                                 }
352                                 return m, nil
353                         }
354
355                         if !equivalent(f.typ, m.typ) {
356                                 return m, f
357                         }
358                 }
359
360                 return
361         }
362
363         // V is not an interface
364         for _, m := range methods {
365                 // TODO(gri) should this be calling LookupFieldOrMethod instead (and why not)?
366                 obj, _, _ := lookupFieldOrMethod(V, false, m.pkg, m.name, false)
367
368                 // check if m is on *V, or on V with case-folding
369                 found := obj != nil
370                 if !found {
371                         // TODO(gri) Instead of NewPointer(V) below, can we just set the "addressable" argument?
372                         obj, _, _ = lookupFieldOrMethod(NewPointer(V), false, m.pkg, m.name, false)
373                         if obj == nil {
374                                 obj, _, _ = lookupFieldOrMethod(V, false, m.pkg, m.name, true /* fold case */)
375                         }
376                 }
377
378                 // we must have a method (not a struct field)
379                 f, _ := obj.(*Func)
380                 if f == nil {
381                         return m, nil
382                 }
383
384                 // methods may not have a fully set up signature yet
385                 if check != nil {
386                         check.objDecl(f, nil)
387                 }
388
389                 if !found || !equivalent(f.typ, m.typ) {
390                         return m, f
391                 }
392         }
393
394         return
395 }
396
397 // missingMethodCause returns a string giving the detailed cause for a missing method m,
398 // where m is missing from V, but required by T. It puts the cause in parentheses,
399 // and may include more have/want info after that. If non-nil, alt is a relevant
400 // method that matches in some way. It may have the correct name, but wrong type, or
401 // it may have a pointer receiver, or it may have the correct name except wrong case.
402 // check may be nil.
403 // missingMethodCause should only be called by missingMethod.
404 // TODO(gri) integrate this logic into missingMethod and get rid of this function.
405 func (check *Checker) missingMethodCause(V, T Type, m, alt *Func) string {
406         mname := "method " + m.Name()
407
408         if alt != nil {
409                 if m.Name() != alt.Name() {
410                         return check.sprintf("(missing %s)\n\t\thave %s\n\t\twant %s",
411                                 mname, check.funcString(alt, false), check.funcString(m, false))
412                 }
413
414                 if Identical(m.typ, alt.typ) {
415                         return check.sprintf("(%s has pointer receiver)", mname)
416                 }
417
418                 altS, mS := check.funcString(alt, false), check.funcString(m, false)
419                 if altS == mS {
420                         // Would tell the user that Foo isn't a Foo, add package information to disambiguate.
421                         // See go.dev/issue/54258.
422                         altS, mS = check.funcString(alt, true), check.funcString(m, true)
423                 }
424
425                 return check.sprintf("(wrong type for %s)\n\t\thave %s\n\t\twant %s",
426                         mname, altS, mS)
427         }
428
429         if isInterfacePtr(V) {
430                 return "(" + check.interfacePtrError(V) + ")"
431         }
432
433         if isInterfacePtr(T) {
434                 return "(" + check.interfacePtrError(T) + ")"
435         }
436
437         obj, _, _ := lookupFieldOrMethod(V, true /* auto-deref */, m.pkg, m.name, false)
438         if fld, _ := obj.(*Var); fld != nil {
439                 return check.sprintf("(%s.%s is a field, not a method)", V, fld.Name())
440         }
441
442         return check.sprintf("(missing %s)", mname)
443 }
444
445 func isInterfacePtr(T Type) bool {
446         p, _ := under(T).(*Pointer)
447         return p != nil && IsInterface(p.base)
448 }
449
450 // check may be nil.
451 func (check *Checker) interfacePtrError(T Type) string {
452         assert(isInterfacePtr(T))
453         if p, _ := under(T).(*Pointer); isTypeParam(p.base) {
454                 return check.sprintf("type %s is pointer to type parameter, not type parameter", T)
455         }
456         return check.sprintf("type %s is pointer to interface, not interface", T)
457 }
458
459 // funcString returns a string of the form name + signature for f.
460 // check may be nil.
461 func (check *Checker) funcString(f *Func, pkgInfo bool) string {
462         buf := bytes.NewBufferString(f.name)
463         var qf Qualifier
464         if check != nil && !pkgInfo {
465                 qf = check.qualifier
466         }
467         w := newTypeWriter(buf, qf)
468         w.pkgInfo = pkgInfo
469         w.paramNames = false
470         w.signature(f.typ.(*Signature))
471         return buf.String()
472 }
473
474 // assertableTo reports whether a value of type V can be asserted to have type T.
475 // It returns (nil, false) as affirmative answer. Otherwise it returns a missing
476 // method required by V and whether it is missing or just has the wrong type.
477 // The receiver may be nil if assertableTo is invoked through an exported API call
478 // (such as AssertableTo), i.e., when all methods have been type-checked.
479 // The underlying type of V must be an interface.
480 // If the result is negative and cause is not nil, *cause is set to the error cause.
481 // TODO(gri) replace calls to this function with calls to newAssertableTo.
482 func (check *Checker) assertableTo(V, T Type, cause *string) (method, wrongType *Func) {
483         // no static check is required if T is an interface
484         // spec: "If T is an interface type, x.(T) asserts that the
485         //        dynamic type of x implements the interface T."
486         if IsInterface(T) {
487                 return
488         }
489         // TODO(gri) fix this for generalized interfaces
490         return check.missingMethod(T, V, false, Identical, cause)
491 }
492
493 // newAssertableTo reports whether a value of type V can be asserted to have type T.
494 // It also implements behavior for interfaces that currently are only permitted
495 // in constraint position (we have not yet defined that behavior in the spec).
496 // The underlying type of V must be an interface.
497 // If the result is false and cause is not nil, *cause is set to the error cause.
498 func (check *Checker) newAssertableTo(V, T Type, cause *string) bool {
499         // no static check is required if T is an interface
500         // spec: "If T is an interface type, x.(T) asserts that the
501         //        dynamic type of x implements the interface T."
502         if IsInterface(T) {
503                 return true
504         }
505         return check.implements(T, V, false, cause)
506 }
507
508 // deref dereferences typ if it is a *Pointer and returns its base and true.
509 // Otherwise it returns (typ, false).
510 func deref(typ Type) (Type, bool) {
511         if p, _ := typ.(*Pointer); p != nil {
512                 // p.base should never be nil, but be conservative
513                 if p.base == nil {
514                         if debug {
515                                 panic("pointer with nil base type (possibly due to an invalid cyclic declaration)")
516                         }
517                         return Typ[Invalid], true
518                 }
519                 return p.base, true
520         }
521         return typ, false
522 }
523
524 // derefStructPtr dereferences typ if it is a (named or unnamed) pointer to a
525 // (named or unnamed) struct and returns its base. Otherwise it returns typ.
526 func derefStructPtr(typ Type) Type {
527         if p, _ := under(typ).(*Pointer); p != nil {
528                 if _, ok := under(p.base).(*Struct); ok {
529                         return p.base
530                 }
531         }
532         return typ
533 }
534
535 // concat returns the result of concatenating list and i.
536 // The result does not share its underlying array with list.
537 func concat(list []int, i int) []int {
538         var t []int
539         t = append(t, list...)
540         return append(t, i)
541 }
542
543 // fieldIndex returns the index for the field with matching package and name, or a value < 0.
544 func fieldIndex(fields []*Var, pkg *Package, name string) int {
545         if name != "_" {
546                 for i, f := range fields {
547                         if f.sameId(pkg, name) {
548                                 return i
549                         }
550                 }
551         }
552         return -1
553 }
554
555 // lookupMethod returns the index of and method with matching package and name, or (-1, nil).
556 // If foldCase is true, method names are considered equal if they are equal with case folding.
557 func lookupMethod(methods []*Func, pkg *Package, name string, foldCase bool) (int, *Func) {
558         if name != "_" {
559                 for i, m := range methods {
560                         if (m.name == name || foldCase && strings.EqualFold(m.name, name)) && m.sameId(pkg, m.name) {
561                                 return i, m
562                         }
563                 }
564         }
565         return -1, nil
566 }