Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
f23a6dba
Commit
f23a6dba
authored
Feb 08, 2012
by
Brad Fitzpatrick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd/api: compare multiple contexts
R=golang-dev, rsc CC=golang-dev
https://golang.org/cl/5626045
parent
bb7b1a11
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
4 deletions
+61
-4
goapi.go
src/cmd/api/goapi.go
+61
-4
No files found.
src/cmd/api/goapi.go
View file @
f23a6dba
...
...
@@ -34,6 +34,27 @@ var (
verbose
=
flag
.
Bool
(
"v"
,
false
,
"Verbose debugging"
)
)
var
contexts
=
[]
*
build
.
Context
{
{
GOOS
:
"linux"
,
GOARCH
:
"386"
,
CgoEnabled
:
true
},
{
GOOS
:
"linux"
,
GOARCH
:
"386"
},
{
GOOS
:
"linux"
,
GOARCH
:
"amd64"
,
CgoEnabled
:
true
},
{
GOOS
:
"linux"
,
GOARCH
:
"amd64"
},
{
GOOS
:
"darwin"
,
GOARCH
:
"386"
,
CgoEnabled
:
true
},
{
GOOS
:
"darwin"
,
GOARCH
:
"386"
},
{
GOOS
:
"darwin"
,
GOARCH
:
"amd64"
,
CgoEnabled
:
true
},
{
GOOS
:
"darwin"
,
GOARCH
:
"amd64"
},
{
GOOS
:
"windows"
,
GOARCH
:
"amd64"
},
{
GOOS
:
"windows"
,
GOARCH
:
"386"
},
}
func
contextName
(
c
*
build
.
Context
)
string
{
s
:=
c
.
GOOS
+
"-"
+
c
.
GOARCH
if
c
.
CgoEnabled
{
return
s
+
"-cgo"
}
return
s
}
func
main
()
{
flag
.
Parse
()
...
...
@@ -48,11 +69,15 @@ func main() {
pkgs
=
strings
.
Fields
(
string
(
stds
))
}
w
:=
NewWalker
()
tree
,
_
,
err
:=
build
.
FindTree
(
"os"
)
// some known package
if
err
!=
nil
{
log
.
Fatalf
(
"failed to find tree: %v"
,
err
)
}
var
featureCtx
=
make
(
map
[
string
]
map
[
string
]
bool
)
// feature -> context name -> true
for
_
,
context
:=
range
contexts
{
w
:=
NewWalker
()
w
.
context
=
context
w
.
tree
=
tree
for
_
,
pkg
:=
range
pkgs
{
...
...
@@ -70,6 +95,28 @@ func main() {
}
w
.
WalkPackage
(
pkg
)
}
ctxName
:=
contextName
(
context
)
for
_
,
f
:=
range
w
.
Features
()
{
if
featureCtx
[
f
]
==
nil
{
featureCtx
[
f
]
=
make
(
map
[
string
]
bool
)
}
featureCtx
[
f
][
ctxName
]
=
true
}
}
var
features
[]
string
for
f
,
cmap
:=
range
featureCtx
{
if
len
(
cmap
)
==
len
(
contexts
)
{
features
=
append
(
features
,
f
)
continue
}
comma
:=
strings
.
Index
(
f
,
","
)
for
cname
:=
range
cmap
{
f2
:=
fmt
.
Sprintf
(
"%s (%s)%s"
,
f
[
:
comma
],
cname
,
f
[
comma
:
])
features
=
append
(
features
,
f2
)
}
}
sort
.
Strings
(
features
)
bw
:=
bufio
.
NewWriter
(
os
.
Stdout
)
defer
bw
.
Flush
()
...
...
@@ -81,7 +128,7 @@ func main() {
}
v1
:=
strings
.
Split
(
string
(
bs
),
"
\n
"
)
sort
.
Strings
(
v1
)
v2
:=
w
.
Features
()
v2
:=
features
take
:=
func
(
sl
*
[]
string
)
string
{
s
:=
(
*
sl
)[
0
]
*
sl
=
(
*
sl
)[
1
:
]
...
...
@@ -99,7 +146,7 @@ func main() {
}
}
}
else
{
for
_
,
f
:=
range
w
.
Features
()
{
for
_
,
f
:=
range
features
{
fmt
.
Fprintf
(
bw
,
"%s
\n
"
,
f
)
}
}
...
...
@@ -112,6 +159,7 @@ type pkgSymbol struct {
}
type
Walker
struct
{
context
*
build
.
Context
tree
*
build
.
Tree
fset
*
token
.
FileSet
scope
[]
string
...
...
@@ -221,8 +269,17 @@ func (w *Walker) WalkPackage(name string) {
}()
dir
:=
filepath
.
Join
(
w
.
tree
.
SrcDir
(),
filepath
.
FromSlash
(
name
))
info
,
err
:=
build
.
ScanDir
(
dir
)
var
info
*
build
.
DirInfo
var
err
error
if
ctx
:=
w
.
context
;
ctx
!=
nil
{
info
,
err
=
ctx
.
ScanDir
(
dir
)
}
else
{
info
,
err
=
build
.
ScanDir
(
dir
)
}
if
err
!=
nil
{
if
strings
.
Contains
(
err
.
Error
(),
"no Go source files"
)
{
return
}
log
.
Fatalf
(
"pkg %q, dir %q: ScanDir: %v"
,
name
,
dir
,
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment