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