mirror of
https://github.com/golang/go
synced 2024-11-21 22:44:40 -07:00
godoc: make godoc go work
- if a package path leads to subdirectories only, show command instead, if any - to force documentation for a command, use the cmd/ prefix, as in: godoc cmd/go (note that for the go command, the prefix is not required since there is no actual go library package at the moment) Fixes #3012. R=rsc CC=golang-dev https://golang.org/cl/5665049
This commit is contained in:
parent
95902d10d2
commit
3a582a768b
@ -9,12 +9,15 @@ Godoc extracts and generates documentation for Go programs.
|
|||||||
It has two modes.
|
It has two modes.
|
||||||
|
|
||||||
Without the -http flag, it runs in command-line mode and prints plain text
|
Without the -http flag, it runs in command-line mode and prints plain text
|
||||||
documentation to standard output and exits. If the -src flag is specified,
|
documentation to standard output and exits. If both a library package and
|
||||||
godoc prints the exported interface of a package in Go source form, or the
|
a command with the same name exists, using the prefix cmd/ will force
|
||||||
implementation of a specific exported language entity:
|
documentation on the command rather than the library package. If the -src
|
||||||
|
flag is specified, godoc prints the exported interface of a package in Go
|
||||||
|
source form, or the implementation of a specific exported language entity:
|
||||||
|
|
||||||
godoc fmt # documentation for package fmt
|
godoc fmt # documentation for package fmt
|
||||||
godoc fmt Printf # documentation for fmt.Printf
|
godoc fmt Printf # documentation for fmt.Printf
|
||||||
|
godoc cmd/go # force documentation for the go command
|
||||||
godoc -src fmt # fmt package interface in Go source form
|
godoc -src fmt # fmt package interface in Go source form
|
||||||
godoc -src fmt Printf # implementation of fmt.Printf
|
godoc -src fmt Printf # implementation of fmt.Printf
|
||||||
|
|
||||||
|
@ -374,11 +374,16 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// determine paths
|
// determine paths
|
||||||
|
const cmdPrefix = "cmd/"
|
||||||
path := flag.Arg(0)
|
path := flag.Arg(0)
|
||||||
if len(path) > 0 && path[0] == '.' {
|
var forceCmd bool
|
||||||
|
if strings.HasPrefix(path, ".") {
|
||||||
// assume cwd; don't assume -goroot
|
// assume cwd; don't assume -goroot
|
||||||
cwd, _ := os.Getwd() // ignore errors
|
cwd, _ := os.Getwd() // ignore errors
|
||||||
path = filepath.Join(cwd, path)
|
path = filepath.Join(cwd, path)
|
||||||
|
} else if strings.HasPrefix(path, cmdPrefix) {
|
||||||
|
path = path[len(cmdPrefix):]
|
||||||
|
forceCmd = true
|
||||||
}
|
}
|
||||||
relpath := path
|
relpath := path
|
||||||
abspath := path
|
abspath := path
|
||||||
@ -393,6 +398,7 @@ func main() {
|
|||||||
|
|
||||||
var mode PageInfoMode
|
var mode PageInfoMode
|
||||||
if relpath == builtinPkgPath {
|
if relpath == builtinPkgPath {
|
||||||
|
// the fake built-in package contains unexported identifiers
|
||||||
mode = noFiltering
|
mode = noFiltering
|
||||||
}
|
}
|
||||||
if *srcMode {
|
if *srcMode {
|
||||||
@ -404,20 +410,35 @@ func main() {
|
|||||||
}
|
}
|
||||||
// TODO(gri): Provide a mechanism (flag?) to select a package
|
// TODO(gri): Provide a mechanism (flag?) to select a package
|
||||||
// if there are multiple packages in a directory.
|
// if there are multiple packages in a directory.
|
||||||
info := pkgHandler.getPageInfo(abspath, relpath, "", mode)
|
|
||||||
|
|
||||||
|
// first, try as package unless forced as command
|
||||||
|
var info PageInfo
|
||||||
|
if !forceCmd {
|
||||||
|
info = pkgHandler.getPageInfo(abspath, relpath, "", mode)
|
||||||
|
}
|
||||||
|
|
||||||
|
// second, try as command
|
||||||
|
if !filepath.IsAbs(path) {
|
||||||
|
abspath = absolutePath(path, cmdHandler.fsRoot)
|
||||||
|
}
|
||||||
|
cinfo := cmdHandler.getPageInfo(abspath, relpath, "", mode)
|
||||||
|
|
||||||
|
// determine what to use
|
||||||
if info.IsEmpty() {
|
if info.IsEmpty() {
|
||||||
// try again, this time assume it's a command
|
if !cinfo.IsEmpty() {
|
||||||
if !filepath.IsAbs(path) {
|
// only cinfo exists - switch to cinfo
|
||||||
abspath = absolutePath(path, cmdHandler.fsRoot)
|
info = cinfo
|
||||||
}
|
}
|
||||||
cmdInfo := cmdHandler.getPageInfo(abspath, relpath, "", mode)
|
} else if !cinfo.IsEmpty() {
|
||||||
// only use the cmdInfo if it actually contains a result
|
// both info and cinfo exist - use cinfo if info
|
||||||
// (don't hide errors reported from looking up a package)
|
// contains only subdirectory information
|
||||||
if !cmdInfo.IsEmpty() {
|
if info.PAst == nil && info.PDoc == nil {
|
||||||
info = cmdInfo
|
info = cinfo
|
||||||
|
} else {
|
||||||
|
fmt.Printf("use 'godoc %s%s' for documentation on the %s command \n\n", cmdPrefix, relpath, relpath)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if info.Err != nil {
|
if info.Err != nil {
|
||||||
log.Fatalf("%v", info.Err)
|
log.Fatalf("%v", info.Err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user