summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-03-16 14:17:42 -0700
committerRobert Griesemer <gri@golang.org>2010-03-16 14:17:42 -0700
commit9460e8b0f8eb51248726193c2807b9229c4f269f (patch)
tree2e6ec839e0e9c2fcff7cb747a0b2eb90143d752b /src
parent513f3dcaccce742a4e8cf3a6c6642f24bd61183c (diff)
downloadgolang-9460e8b0f8eb51248726193c2807b9229c4f269f.tar.gz
godoc: initial support for showing popup information
for identifiers in Go source code - at the moment just show identifier kind (var, func, etc.) and name (eventually should show declaration, type, etc.) - JavaScript parts by adg R=rsc CC=adg, golang-dev http://codereview.appspot.com/578042
Diffstat (limited to 'src')
-rw-r--r--src/cmd/godoc/godoc.go71
-rw-r--r--src/pkg/go/ast/scope.go13
2 files changed, 78 insertions, 6 deletions
diff --git a/src/cmd/godoc/godoc.go b/src/cmd/godoc/godoc.go
index 067f82a5f..286ecc99e 100644
--- a/src/cmd/godoc/godoc.go
+++ b/src/cmd/godoc/godoc.go
@@ -441,6 +441,36 @@ func (root *Directory) listing(skipRoot bool) *DirList {
type Styler struct {
linetags bool
highlight string
+ objmap map[*ast.Object]int
+ count int
+}
+
+
+func newStyler(highlight string) *Styler {
+ return &Styler{true, highlight, make(map[*ast.Object]int), 0}
+}
+
+
+func (s *Styler) id(obj *ast.Object) int {
+ n, found := s.objmap[obj]
+ if !found {
+ n = s.count
+ s.objmap[obj] = n
+ s.count++
+ }
+ return n
+}
+
+
+func (s *Styler) mapping() []*ast.Object {
+ if s.objmap == nil {
+ return nil
+ }
+ m := make([]*ast.Object, s.count)
+ for obj, i := range s.objmap {
+ m[i] = obj
+ }
+ return m
}
@@ -477,8 +507,15 @@ func (s *Styler) BasicLit(x *ast.BasicLit) (text []byte, tag printer.HTMLTag) {
func (s *Styler) Ident(id *ast.Ident) (text []byte, tag printer.HTMLTag) {
text = []byte(id.Name())
+ var str string
+ if s.objmap != nil {
+ str = fmt.Sprintf(` id="%d"`, s.id(id.Obj))
+ }
if s.highlight == id.Name() {
- tag = printer.HTMLTag{"<span class=highlight>", "</span>"}
+ str += ` class="highlight"`
+ }
+ if str != "" {
+ tag = printer.HTMLTag{"<span" + str + ">", "</span>"}
}
return
}
@@ -761,6 +798,19 @@ func localnameFmt(w io.Writer, x interface{}, format string) {
}
+// Template formatter for "popupInfo" format.
+func popupInfoFmt(w io.Writer, x interface{}, format string) {
+ obj := x.(*ast.Object)
+ // for now, show object kind and name; eventually
+ // do something more interesting (show declaration,
+ // for instance)
+ if obj.Kind != ast.Err {
+ fmt.Fprintf(w, "%s ", obj.Kind)
+ }
+ template.HTMLEscape(w, []byte(obj.Name))
+}
+
+
var fmap = template.FormatterMap{
"": textFmt,
"html": htmlFmt,
@@ -776,6 +826,7 @@ var fmap = template.FormatterMap{
"time": timeFmt,
"dir/": dirslashFmt,
"localname": localnameFmt,
+ "popupInfo": popupInfoFmt,
}
@@ -799,7 +850,8 @@ var (
godocHTML,
packageHTML,
packageText,
- searchHTML *template.Template
+ searchHTML,
+ sourceHTML *template.Template
)
func readTemplates() {
@@ -810,6 +862,7 @@ func readTemplates() {
packageHTML = readTemplate("package.html")
packageText = readTemplate("package.txt")
searchHTML = readTemplate("search.html")
+ sourceHTML = readTemplate("source.html")
}
@@ -913,11 +966,17 @@ func serveGoSource(c *http.Conn, r *http.Request, abspath, relpath string) {
}
var buf bytes.Buffer
- fmt.Fprintln(&buf, "<pre>")
- writeNode(&buf, file, true, &Styler{linetags: true, highlight: r.FormValue("h")})
- fmt.Fprintln(&buf, "</pre>")
+ styler := newStyler(r.FormValue("h"))
+ writeNode(&buf, file, true, styler)
+
+ type SourceInfo struct {
+ Source []byte
+ Data []*ast.Object
+ }
+ info := &SourceInfo{buf.Bytes(), styler.mapping()}
- servePage(c, "Source file "+relpath, "", buf.Bytes())
+ contents := applyTemplate(sourceHTML, "sourceHTML", info)
+ servePage(c, "Source file "+relpath, "", contents)
}
diff --git a/src/pkg/go/ast/scope.go b/src/pkg/go/ast/scope.go
index 28e4f8db0..32b9d9d9f 100644
--- a/src/pkg/go/ast/scope.go
+++ b/src/pkg/go/ast/scope.go
@@ -19,6 +19,19 @@ const (
)
+var objKindStrings = [...]string{
+ Err: "<unknown object kind>",
+ Pkg: "package",
+ Con: "const",
+ Typ: "type",
+ Var: "var",
+ Fun: "func",
+}
+
+
+func (kind ObjKind) String() string { return objKindStrings[kind] }
+
+
// An Object describes a language entity such as a package,
// constant, type, variable, or function (incl. methods).
//