]> Cypherpunks.ru repositories - gostls13.git/blob - src/go/types/resolver.go
[dev.regabi] go/types: type alias decl requires go1.9
[gostls13.git] / src / go / types / resolver.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 package types
6
7 import (
8         "fmt"
9         "go/ast"
10         "go/constant"
11         "go/token"
12         "sort"
13         "strconv"
14         "strings"
15         "unicode"
16 )
17
18 // A declInfo describes a package-level const, type, var, or func declaration.
19 type declInfo struct {
20         file      *Scope        // scope of file containing this declaration
21         lhs       []*Var        // lhs of n:1 variable declarations, or nil
22         typ       ast.Expr      // type, or nil
23         init      ast.Expr      // init/orig expression, or nil
24         inherited bool          // if set, the init expression is inherited from a previous constant declaration
25         fdecl     *ast.FuncDecl // func declaration, or nil
26         aliasPos  token.Pos     // If valid, the decl is a type alias and aliasPos is the position of '='.
27
28         // The deps field tracks initialization expression dependencies.
29         deps map[Object]bool // lazily initialized
30 }
31
32 // hasInitializer reports whether the declared object has an initialization
33 // expression or function body.
34 func (d *declInfo) hasInitializer() bool {
35         return d.init != nil || d.fdecl != nil && d.fdecl.Body != nil
36 }
37
38 // addDep adds obj to the set of objects d's init expression depends on.
39 func (d *declInfo) addDep(obj Object) {
40         m := d.deps
41         if m == nil {
42                 m = make(map[Object]bool)
43                 d.deps = m
44         }
45         m[obj] = true
46 }
47
48 // arityMatch checks that the lhs and rhs of a const or var decl
49 // have the appropriate number of names and init exprs. For const
50 // decls, init is the value spec providing the init exprs; for
51 // var decls, init is nil (the init exprs are in s in this case).
52 func (check *Checker) arityMatch(s, init *ast.ValueSpec) {
53         l := len(s.Names)
54         r := len(s.Values)
55         if init != nil {
56                 r = len(init.Values)
57         }
58
59         const code = _WrongAssignCount
60         switch {
61         case init == nil && r == 0:
62                 // var decl w/o init expr
63                 if s.Type == nil {
64                         check.errorf(s, code, "missing type or init expr")
65                 }
66         case l < r:
67                 if l < len(s.Values) {
68                         // init exprs from s
69                         n := s.Values[l]
70                         check.errorf(n, code, "extra init expr %s", n)
71                         // TODO(gri) avoid declared but not used error here
72                 } else {
73                         // init exprs "inherited"
74                         check.errorf(s, code, "extra init expr at %s", check.fset.Position(init.Pos()))
75                         // TODO(gri) avoid declared but not used error here
76                 }
77         case l > r && (init != nil || r != 1):
78                 n := s.Names[r]
79                 check.errorf(n, code, "missing init expr for %s", n)
80         }
81 }
82
83 func validatedImportPath(path string) (string, error) {
84         s, err := strconv.Unquote(path)
85         if err != nil {
86                 return "", err
87         }
88         if s == "" {
89                 return "", fmt.Errorf("empty string")
90         }
91         const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
92         for _, r := range s {
93                 if !unicode.IsGraphic(r) || unicode.IsSpace(r) || strings.ContainsRune(illegalChars, r) {
94                         return s, fmt.Errorf("invalid character %#U", r)
95                 }
96         }
97         return s, nil
98 }
99
100 // declarePkgObj declares obj in the package scope, records its ident -> obj mapping,
101 // and updates check.objMap. The object must not be a function or method.
102 func (check *Checker) declarePkgObj(ident *ast.Ident, obj Object, d *declInfo) {
103         assert(ident.Name == obj.Name())
104
105         // spec: "A package-scope or file-scope identifier with name init
106         // may only be declared to be a function with this (func()) signature."
107         if ident.Name == "init" {
108                 check.errorf(ident, _InvalidInitDecl, "cannot declare init - must be func")
109                 return
110         }
111
112         // spec: "The main package must have package name main and declare
113         // a function main that takes no arguments and returns no value."
114         if ident.Name == "main" && check.pkg.name == "main" {
115                 check.errorf(ident, _InvalidMainDecl, "cannot declare main - must be func")
116                 return
117         }
118
119         check.declare(check.pkg.scope, ident, obj, token.NoPos)
120         check.objMap[obj] = d
121         obj.setOrder(uint32(len(check.objMap)))
122 }
123
124 // filename returns a filename suitable for debugging output.
125 func (check *Checker) filename(fileNo int) string {
126         file := check.files[fileNo]
127         if pos := file.Pos(); pos.IsValid() {
128                 return check.fset.File(pos).Name()
129         }
130         return fmt.Sprintf("file[%d]", fileNo)
131 }
132
133 func (check *Checker) importPackage(pos token.Pos, path, dir string) *Package {
134         // If we already have a package for the given (path, dir)
135         // pair, use it instead of doing a full import.
136         // Checker.impMap only caches packages that are marked Complete
137         // or fake (dummy packages for failed imports). Incomplete but
138         // non-fake packages do require an import to complete them.
139         key := importKey{path, dir}
140         imp := check.impMap[key]
141         if imp != nil {
142                 return imp
143         }
144
145         // no package yet => import it
146         if path == "C" && (check.conf.FakeImportC || check.conf.go115UsesCgo) {
147                 imp = NewPackage("C", "C")
148                 imp.fake = true // package scope is not populated
149                 imp.cgo = check.conf.go115UsesCgo
150         } else {
151                 // ordinary import
152                 var err error
153                 if importer := check.conf.Importer; importer == nil {
154                         err = fmt.Errorf("Config.Importer not installed")
155                 } else if importerFrom, ok := importer.(ImporterFrom); ok {
156                         imp, err = importerFrom.ImportFrom(path, dir, 0)
157                         if imp == nil && err == nil {
158                                 err = fmt.Errorf("Config.Importer.ImportFrom(%s, %s, 0) returned nil but no error", path, dir)
159                         }
160                 } else {
161                         imp, err = importer.Import(path)
162                         if imp == nil && err == nil {
163                                 err = fmt.Errorf("Config.Importer.Import(%s) returned nil but no error", path)
164                         }
165                 }
166                 // make sure we have a valid package name
167                 // (errors here can only happen through manipulation of packages after creation)
168                 if err == nil && imp != nil && (imp.name == "_" || imp.name == "") {
169                         err = fmt.Errorf("invalid package name: %q", imp.name)
170                         imp = nil // create fake package below
171                 }
172                 if err != nil {
173                         check.errorf(atPos(pos), _BrokenImport, "could not import %s (%s)", path, err)
174                         if imp == nil {
175                                 // create a new fake package
176                                 // come up with a sensible package name (heuristic)
177                                 name := path
178                                 if i := len(name); i > 0 && name[i-1] == '/' {
179                                         name = name[:i-1]
180                                 }
181                                 if i := strings.LastIndex(name, "/"); i >= 0 {
182                                         name = name[i+1:]
183                                 }
184                                 imp = NewPackage(path, name)
185                         }
186                         // continue to use the package as best as we can
187                         imp.fake = true // avoid follow-up lookup failures
188                 }
189         }
190
191         // package should be complete or marked fake, but be cautious
192         if imp.complete || imp.fake {
193                 check.impMap[key] = imp
194                 check.pkgCnt[imp.name]++
195                 return imp
196         }
197
198         // something went wrong (importer may have returned incomplete package without error)
199         return nil
200 }
201
202 // collectObjects collects all file and package objects and inserts them
203 // into their respective scopes. It also performs imports and associates
204 // methods with receiver base type names.
205 func (check *Checker) collectObjects() {
206         pkg := check.pkg
207
208         // pkgImports is the set of packages already imported by any package file seen
209         // so far. Used to avoid duplicate entries in pkg.imports. Allocate and populate
210         // it (pkg.imports may not be empty if we are checking test files incrementally).
211         // Note that pkgImports is keyed by package (and thus package path), not by an
212         // importKey value. Two different importKey values may map to the same package
213         // which is why we cannot use the check.impMap here.
214         var pkgImports = make(map[*Package]bool)
215         for _, imp := range pkg.imports {
216                 pkgImports[imp] = true
217         }
218
219         var methods []*Func // list of methods with non-blank _ names
220         for fileNo, file := range check.files {
221                 // The package identifier denotes the current package,
222                 // but there is no corresponding package object.
223                 check.recordDef(file.Name, nil)
224
225                 // Use the actual source file extent rather than *ast.File extent since the
226                 // latter doesn't include comments which appear at the start or end of the file.
227                 // Be conservative and use the *ast.File extent if we don't have a *token.File.
228                 pos, end := file.Pos(), file.End()
229                 if f := check.fset.File(file.Pos()); f != nil {
230                         pos, end = token.Pos(f.Base()), token.Pos(f.Base()+f.Size())
231                 }
232                 fileScope := NewScope(check.pkg.scope, pos, end, check.filename(fileNo))
233                 check.recordScope(file, fileScope)
234
235                 // determine file directory, necessary to resolve imports
236                 // FileName may be "" (typically for tests) in which case
237                 // we get "." as the directory which is what we would want.
238                 fileDir := dir(check.fset.Position(file.Name.Pos()).Filename)
239
240                 check.walkDecls(file.Decls, func(d decl) {
241                         switch d := d.(type) {
242                         case importDecl:
243                                 // import package
244                                 path, err := validatedImportPath(d.spec.Path.Value)
245                                 if err != nil {
246                                         check.errorf(d.spec.Path, _BadImportPath, "invalid import path (%s)", err)
247                                         return
248                                 }
249
250                                 imp := check.importPackage(d.spec.Path.Pos(), path, fileDir)
251                                 if imp == nil {
252                                         return
253                                 }
254
255                                 // local name overrides imported package name
256                                 name := imp.name
257                                 if d.spec.Name != nil {
258                                         name = d.spec.Name.Name
259                                         if path == "C" {
260                                                 // match cmd/compile (not prescribed by spec)
261                                                 check.errorf(d.spec.Name, _ImportCRenamed, `cannot rename import "C"`)
262                                                 return
263                                         }
264                                 }
265
266                                 if name == "init" {
267                                         check.errorf(d.spec.Name, _InvalidInitDecl, "cannot import package as init - init must be a func")
268                                         return
269                                 }
270
271                                 // add package to list of explicit imports
272                                 // (this functionality is provided as a convenience
273                                 // for clients; it is not needed for type-checking)
274                                 if !pkgImports[imp] {
275                                         pkgImports[imp] = true
276                                         pkg.imports = append(pkg.imports, imp)
277                                 }
278
279                                 pkgName := NewPkgName(d.spec.Pos(), pkg, name, imp)
280                                 if d.spec.Name != nil {
281                                         // in a dot-import, the dot represents the package
282                                         check.recordDef(d.spec.Name, pkgName)
283                                 } else {
284                                         check.recordImplicit(d.spec, pkgName)
285                                 }
286
287                                 if path == "C" {
288                                         // match cmd/compile (not prescribed by spec)
289                                         pkgName.used = true
290                                 }
291
292                                 // add import to file scope
293                                 check.imports = append(check.imports, pkgName)
294                                 if name == "." {
295                                         // dot-import
296                                         if check.dotImportMap == nil {
297                                                 check.dotImportMap = make(map[dotImportKey]*PkgName)
298                                         }
299                                         // merge imported scope with file scope
300                                         for _, obj := range imp.scope.elems {
301                                                 // A package scope may contain non-exported objects,
302                                                 // do not import them!
303                                                 if obj.Exported() {
304                                                         // declare dot-imported object
305                                                         // (Do not use check.declare because it modifies the object
306                                                         // via Object.setScopePos, which leads to a race condition;
307                                                         // the object may be imported into more than one file scope
308                                                         // concurrently. See issue #32154.)
309                                                         if alt := fileScope.Insert(obj); alt != nil {
310                                                                 check.errorf(d.spec.Name, _DuplicateDecl, "%s redeclared in this block", obj.Name())
311                                                                 check.reportAltDecl(alt)
312                                                         } else {
313                                                                 check.dotImportMap[dotImportKey{fileScope, obj}] = pkgName
314                                                         }
315                                                 }
316                                         }
317                                 } else {
318                                         // declare imported package object in file scope
319                                         // (no need to provide s.Name since we called check.recordDef earlier)
320                                         check.declare(fileScope, nil, pkgName, token.NoPos)
321                                 }
322                         case constDecl:
323                                 // declare all constants
324                                 for i, name := range d.spec.Names {
325                                         obj := NewConst(name.Pos(), pkg, name.Name, nil, constant.MakeInt64(int64(d.iota)))
326
327                                         var init ast.Expr
328                                         if i < len(d.init) {
329                                                 init = d.init[i]
330                                         }
331
332                                         d := &declInfo{file: fileScope, typ: d.typ, init: init, inherited: d.inherited}
333                                         check.declarePkgObj(name, obj, d)
334                                 }
335
336                         case varDecl:
337                                 lhs := make([]*Var, len(d.spec.Names))
338                                 // If there's exactly one rhs initializer, use
339                                 // the same declInfo d1 for all lhs variables
340                                 // so that each lhs variable depends on the same
341                                 // rhs initializer (n:1 var declaration).
342                                 var d1 *declInfo
343                                 if len(d.spec.Values) == 1 {
344                                         // The lhs elements are only set up after the for loop below,
345                                         // but that's ok because declareVar only collects the declInfo
346                                         // for a later phase.
347                                         d1 = &declInfo{file: fileScope, lhs: lhs, typ: d.spec.Type, init: d.spec.Values[0]}
348                                 }
349
350                                 // declare all variables
351                                 for i, name := range d.spec.Names {
352                                         obj := NewVar(name.Pos(), pkg, name.Name, nil)
353                                         lhs[i] = obj
354
355                                         di := d1
356                                         if di == nil {
357                                                 // individual assignments
358                                                 var init ast.Expr
359                                                 if i < len(d.spec.Values) {
360                                                         init = d.spec.Values[i]
361                                                 }
362                                                 di = &declInfo{file: fileScope, typ: d.spec.Type, init: init}
363                                         }
364
365                                         check.declarePkgObj(name, obj, di)
366                                 }
367                         case typeDecl:
368                                 obj := NewTypeName(d.spec.Name.Pos(), pkg, d.spec.Name.Name, nil)
369                                 check.declarePkgObj(d.spec.Name, obj, &declInfo{file: fileScope, typ: d.spec.Type, aliasPos: d.spec.Assign})
370                         case funcDecl:
371                                 info := &declInfo{file: fileScope, fdecl: d.decl}
372                                 name := d.decl.Name.Name
373                                 obj := NewFunc(d.decl.Name.Pos(), pkg, name, nil)
374                                 if d.decl.Recv == nil {
375                                         // regular function
376                                         if name == "init" {
377                                                 // don't declare init functions in the package scope - they are invisible
378                                                 obj.parent = pkg.scope
379                                                 check.recordDef(d.decl.Name, obj)
380                                                 // init functions must have a body
381                                                 if d.decl.Body == nil {
382                                                         check.softErrorf(obj, _MissingInitBody, "missing function body")
383                                                 }
384                                         } else {
385                                                 check.declare(pkg.scope, d.decl.Name, obj, token.NoPos)
386                                         }
387                                 } else {
388                                         // method
389                                         // (Methods with blank _ names are never found; no need to collect
390                                         // them for later type association. They will still be type-checked
391                                         // with all the other functions.)
392                                         if name != "_" {
393                                                 methods = append(methods, obj)
394                                         }
395                                         check.recordDef(d.decl.Name, obj)
396                                 }
397                                 // Methods are not package-level objects but we still track them in the
398                                 // object map so that we can handle them like regular functions (if the
399                                 // receiver is invalid); also we need their fdecl info when associating
400                                 // them with their receiver base type, below.
401                                 check.objMap[obj] = info
402                                 obj.setOrder(uint32(len(check.objMap)))
403                         }
404                 })
405         }
406
407         // verify that objects in package and file scopes have different names
408         for _, scope := range check.pkg.scope.children /* file scopes */ {
409                 for _, obj := range scope.elems {
410                         if alt := pkg.scope.Lookup(obj.Name()); alt != nil {
411                                 if pkg, ok := obj.(*PkgName); ok {
412                                         check.errorf(alt, _DuplicateDecl, "%s already declared through import of %s", alt.Name(), pkg.Imported())
413                                         check.reportAltDecl(pkg)
414                                 } else {
415                                         check.errorf(alt, _DuplicateDecl, "%s already declared through dot-import of %s", alt.Name(), obj.Pkg())
416                                         // TODO(gri) dot-imported objects don't have a position; reportAltDecl won't print anything
417                                         check.reportAltDecl(obj)
418                                 }
419                         }
420                 }
421         }
422
423         // Now that we have all package scope objects and all methods,
424         // associate methods with receiver base type name where possible.
425         // Ignore methods that have an invalid receiver. They will be
426         // type-checked later, with regular functions.
427         if methods == nil {
428                 return // nothing to do
429         }
430         check.methods = make(map[*TypeName][]*Func)
431         for _, f := range methods {
432                 fdecl := check.objMap[f].fdecl
433                 if list := fdecl.Recv.List; len(list) > 0 {
434                         // f is a method.
435                         // Determine the receiver base type and associate f with it.
436                         ptr, base := check.resolveBaseTypeName(list[0].Type)
437                         if base != nil {
438                                 f.hasPtrRecv = ptr
439                                 check.methods[base] = append(check.methods[base], f)
440                         }
441                 }
442         }
443 }
444
445 // resolveBaseTypeName returns the non-alias base type name for typ, and whether
446 // there was a pointer indirection to get to it. The base type name must be declared
447 // in package scope, and there can be at most one pointer indirection. If no such type
448 // name exists, the returned base is nil.
449 func (check *Checker) resolveBaseTypeName(typ ast.Expr) (ptr bool, base *TypeName) {
450         // Algorithm: Starting from a type expression, which may be a name,
451         // we follow that type through alias declarations until we reach a
452         // non-alias type name. If we encounter anything but pointer types or
453         // parentheses we're done. If we encounter more than one pointer type
454         // we're done.
455         var seen map[*TypeName]bool
456         for {
457                 typ = unparen(typ)
458
459                 // check if we have a pointer type
460                 if pexpr, _ := typ.(*ast.StarExpr); pexpr != nil {
461                         // if we've already seen a pointer, we're done
462                         if ptr {
463                                 return false, nil
464                         }
465                         ptr = true
466                         typ = unparen(pexpr.X) // continue with pointer base type
467                 }
468
469                 // typ must be a name
470                 name, _ := typ.(*ast.Ident)
471                 if name == nil {
472                         return false, nil
473                 }
474
475                 // name must denote an object found in the current package scope
476                 // (note that dot-imported objects are not in the package scope!)
477                 obj := check.pkg.scope.Lookup(name.Name)
478                 if obj == nil {
479                         return false, nil
480                 }
481
482                 // the object must be a type name...
483                 tname, _ := obj.(*TypeName)
484                 if tname == nil {
485                         return false, nil
486                 }
487
488                 // ... which we have not seen before
489                 if seen[tname] {
490                         return false, nil
491                 }
492
493                 // we're done if tdecl defined tname as a new type
494                 // (rather than an alias)
495                 tdecl := check.objMap[tname] // must exist for objects in package scope
496                 if !tdecl.aliasPos.IsValid() {
497                         return ptr, tname
498                 }
499
500                 // otherwise, continue resolving
501                 typ = tdecl.typ
502                 if seen == nil {
503                         seen = make(map[*TypeName]bool)
504                 }
505                 seen[tname] = true
506         }
507 }
508
509 // packageObjects typechecks all package objects, but not function bodies.
510 func (check *Checker) packageObjects() {
511         // process package objects in source order for reproducible results
512         objList := make([]Object, len(check.objMap))
513         i := 0
514         for obj := range check.objMap {
515                 objList[i] = obj
516                 i++
517         }
518         sort.Sort(inSourceOrder(objList))
519
520         // add new methods to already type-checked types (from a prior Checker.Files call)
521         for _, obj := range objList {
522                 if obj, _ := obj.(*TypeName); obj != nil && obj.typ != nil {
523                         check.addMethodDecls(obj)
524                 }
525         }
526
527         // We process non-alias declarations first, in order to avoid situations where
528         // the type of an alias declaration is needed before it is available. In general
529         // this is still not enough, as it is possible to create sufficiently convoluted
530         // recursive type definitions that will cause a type alias to be needed before it
531         // is available (see issue #25838 for examples).
532         // As an aside, the cmd/compiler suffers from the same problem (#25838).
533         var aliasList []*TypeName
534         // phase 1
535         for _, obj := range objList {
536                 // If we have a type alias, collect it for the 2nd phase.
537                 if tname, _ := obj.(*TypeName); tname != nil && check.objMap[tname].aliasPos.IsValid() {
538                         aliasList = append(aliasList, tname)
539                         continue
540                 }
541
542                 check.objDecl(obj, nil)
543         }
544         // phase 2
545         for _, obj := range aliasList {
546                 check.objDecl(obj, nil)
547         }
548
549         // At this point we may have a non-empty check.methods map; this means that not all
550         // entries were deleted at the end of typeDecl because the respective receiver base
551         // types were not found. In that case, an error was reported when declaring those
552         // methods. We can now safely discard this map.
553         check.methods = nil
554 }
555
556 // inSourceOrder implements the sort.Sort interface.
557 type inSourceOrder []Object
558
559 func (a inSourceOrder) Len() int           { return len(a) }
560 func (a inSourceOrder) Less(i, j int) bool { return a[i].order() < a[j].order() }
561 func (a inSourceOrder) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
562
563 // unusedImports checks for unused imports.
564 func (check *Checker) unusedImports() {
565         // if function bodies are not checked, packages' uses are likely missing - don't check
566         if check.conf.IgnoreFuncBodies {
567                 return
568         }
569
570         // spec: "It is illegal (...) to directly import a package without referring to
571         // any of its exported identifiers. To import a package solely for its side-effects
572         // (initialization), use the blank identifier as explicit package name."
573
574         for _, obj := range check.imports {
575                 if !obj.used && obj.name != "_" {
576                         check.errorUnusedPkg(obj)
577                 }
578         }
579 }
580
581 func (check *Checker) errorUnusedPkg(obj *PkgName) {
582         // If the package was imported with a name other than the final
583         // import path element, show it explicitly in the error message.
584         // Note that this handles both renamed imports and imports of
585         // packages containing unconventional package declarations.
586         // Note that this uses / always, even on Windows, because Go import
587         // paths always use forward slashes.
588         path := obj.imported.path
589         elem := path
590         if i := strings.LastIndex(elem, "/"); i >= 0 {
591                 elem = elem[i+1:]
592         }
593         if obj.name == "" || obj.name == "." || obj.name == elem {
594                 check.softErrorf(obj, _UnusedImport, "%q imported but not used", path)
595         } else {
596                 check.softErrorf(obj, _UnusedImport, "%q imported but not used as %s", path, obj.name)
597         }
598 }
599
600 // dir makes a good-faith attempt to return the directory
601 // portion of path. If path is empty, the result is ".".
602 // (Per the go/build package dependency tests, we cannot import
603 // path/filepath and simply use filepath.Dir.)
604 func dir(path string) string {
605         if i := strings.LastIndexAny(path, `/\`); i > 0 {
606                 return path[:i]
607         }
608         // i <= 0
609         return "."
610 }