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