/src/cmd/fix/go1pkgrename.go

http://github.com/tav/go · Go · 146 lines · 117 code · 16 blank · 13 comment · 12 complexity · e483d1347e22468e9bd90e6f799ada7f MD5 · raw file

  1. // Copyright 2011 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. package main
  5. import (
  6. "go/ast"
  7. "strings"
  8. )
  9. func init() {
  10. register(go1pkgrenameFix)
  11. }
  12. var go1pkgrenameFix = fix{
  13. "go1rename",
  14. "2011-11-08",
  15. go1pkgrename,
  16. `Rewrite imports for packages moved during transition to Go 1.
  17. http://codereview.appspot.com/5316078
  18. `,
  19. }
  20. var go1PackageRenames = []struct{ old, new string }{
  21. {"asn1", "encoding/asn1"},
  22. {"big", "math/big"},
  23. {"cmath", "math/cmplx"},
  24. {"csv", "encoding/csv"},
  25. {"exec", "os/exec"},
  26. {"exp/template/html", "html/template"},
  27. {"gob", "encoding/gob"},
  28. {"http", "net/http"},
  29. {"http/cgi", "net/http/cgi"},
  30. {"http/fcgi", "net/http/fcgi"},
  31. {"http/httptest", "net/http/httptest"},
  32. {"http/pprof", "net/http/pprof"},
  33. {"json", "encoding/json"},
  34. {"mail", "net/mail"},
  35. {"rpc", "net/rpc"},
  36. {"rpc/jsonrpc", "net/rpc/jsonrpc"},
  37. {"scanner", "text/scanner"},
  38. {"smtp", "net/smtp"},
  39. {"syslog", "log/syslog"},
  40. {"tabwriter", "text/tabwriter"},
  41. {"template", "text/template"},
  42. {"template/parse", "text/template/parse"},
  43. {"rand", "math/rand"},
  44. {"url", "net/url"},
  45. {"utf16", "unicode/utf16"},
  46. {"utf8", "unicode/utf8"},
  47. {"xml", "encoding/xml"},
  48. // go.crypto sub-repository
  49. {"crypto/bcrypt", "code.google.com/p/go.crypto/bcrypt"},
  50. {"crypto/blowfish", "code.google.com/p/go.crypto/blowfish"},
  51. {"crypto/cast5", "code.google.com/p/go.crypto/cast5"},
  52. {"crypto/md4", "code.google.com/p/go.crypto/md4"},
  53. {"crypto/ocsp", "code.google.com/p/go.crypto/ocsp"},
  54. {"crypto/openpgp", "code.google.com/p/go.crypto/openpgp"},
  55. {"crypto/openpgp/armor", "code.google.com/p/go.crypto/openpgp/armor"},
  56. {"crypto/openpgp/elgamal", "code.google.com/p/go.crypto/openpgp/elgamal"},
  57. {"crypto/openpgp/errors", "code.google.com/p/go.crypto/openpgp/errors"},
  58. {"crypto/openpgp/packet", "code.google.com/p/go.crypto/openpgp/packet"},
  59. {"crypto/openpgp/s2k", "code.google.com/p/go.crypto/openpgp/s2k"},
  60. {"crypto/ripemd160", "code.google.com/p/go.crypto/ripemd160"},
  61. {"crypto/twofish", "code.google.com/p/go.crypto/twofish"},
  62. {"crypto/xtea", "code.google.com/p/go.crypto/xtea"},
  63. {"exp/ssh", "code.google.com/p/go.crypto/ssh"},
  64. // go.image sub-repository
  65. {"image/bmp", "code.google.com/p/go.image/bmp"},
  66. {"image/tiff", "code.google.com/p/go.image/tiff"},
  67. // go.net sub-repository
  68. {"net/dict", "code.google.com/p/go.net/dict"},
  69. {"net/websocket", "code.google.com/p/go.net/websocket"},
  70. {"exp/spdy", "code.google.com/p/go.net/spdy"},
  71. {"http/spdy", "code.google.com/p/go.net/spdy"},
  72. // go.codereview sub-repository
  73. {"encoding/git85", "code.google.com/p/go.codereview/git85"},
  74. {"patch", "code.google.com/p/go.codereview/patch"},
  75. // exp
  76. {"ebnf", "exp/ebnf"},
  77. {"go/types", "exp/types"},
  78. // deleted
  79. {"container/vector", ""},
  80. {"exp/datafmt", ""},
  81. {"go/typechecker", ""},
  82. {"old/netchan", ""},
  83. {"old/regexp", ""},
  84. {"old/template", ""},
  85. {"try", ""},
  86. }
  87. var go1PackageNameRenames = []struct{ newPath, old, new string }{
  88. {"html/template", "html", "template"},
  89. {"math/cmplx", "cmath", "cmplx"},
  90. }
  91. func go1pkgrename(f *ast.File) bool {
  92. fixed := false
  93. // First update the imports.
  94. for _, rename := range go1PackageRenames {
  95. spec := importSpec(f, rename.old)
  96. if spec == nil {
  97. continue
  98. }
  99. if rename.new == "" {
  100. warn(spec.Pos(), "package %q has been deleted in Go 1", rename.old)
  101. continue
  102. }
  103. if rewriteImport(f, rename.old, rename.new) {
  104. fixed = true
  105. }
  106. if strings.HasPrefix(rename.new, "exp/") {
  107. warn(spec.Pos(), "package %q is not part of Go 1", rename.new)
  108. }
  109. }
  110. if !fixed {
  111. return false
  112. }
  113. // Now update the package names used by importers.
  114. for _, rename := range go1PackageNameRenames {
  115. // These are rare packages, so do the import test before walking.
  116. if imports(f, rename.newPath) {
  117. walk(f, func(n interface{}) {
  118. if sel, ok := n.(*ast.SelectorExpr); ok {
  119. if isTopName(sel.X, rename.old) {
  120. // We know Sel.X is an Ident.
  121. sel.X.(*ast.Ident).Name = rename.new
  122. return
  123. }
  124. }
  125. })
  126. }
  127. }
  128. return fixed
  129. }