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
ba882f99
Commit
ba882f99
authored
Dec 19, 2008
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fmt and reflect updates for recent changes
TBR=r OCL=21580 CL=21583
parent
dc7b2e98
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
57 deletions
+56
-57
fmt_test.go
src/lib/fmt/fmt_test.go
+7
-6
format.go
src/lib/fmt/format.go
+1
-1
print.go
src/lib/fmt/print.go
+5
-3
all_test.go
src/lib/reflect/all_test.go
+24
-22
tostring.go
src/lib/reflect/tostring.go
+3
-2
type.go
src/lib/reflect/type.go
+7
-17
value.go
src/lib/reflect/value.go
+9
-6
No files found.
src/lib/fmt/fmt_test.go
View file @
ba882f99
...
...
@@ -27,12 +27,13 @@ type FmtTest struct {
}
// TODO(rsc): return []byte, but need to be able to pass as interface.
// func Bytes(s string) []byte {
// b := new([]byte, len(s)+1);
// syscall.StringToBytes(b, s);
// return b[0:len(s)];
// }
func
Bytes
(
s
string
)
string
{
return
s
}
func
Bytes
(
s
string
)
*
[]
byte
{
b
:=
new
([]
byte
,
len
(
s
)
+
1
);
syscall
.
StringToBytes
(
b
,
s
);
bp
:=
new
(
*
[]
byte
);
*
bp
=
b
[
0
:
len
(
s
)];
return
bp
;
}
const
B32
uint32
=
1
<<
32
-
1
const
B64
uint64
=
1
<<
64
-
1
...
...
src/lib/fmt/format.go
View file @
ba882f99
...
...
@@ -71,7 +71,7 @@ func (f *Fmt) init() {
}
export
func
New
()
*
Fmt
{
f
:=
new
(
Fmt
);
f
:=
new
(
*
Fmt
);
f
.
init
();
return
f
;
}
...
...
src/lib/fmt/print.go
View file @
ba882f99
...
...
@@ -46,7 +46,7 @@ type P struct {
}
func
Printer
()
*
P
{
p
:=
new
(
P
);
p
:=
new
(
*
P
);
p
.
fmt
=
fmt
.
New
();
return
p
;
}
...
...
@@ -253,10 +253,12 @@ func getString(v reflect.Value) (val string, ok bool) {
switch
v
.
Kind
()
{
case
reflect
.
StringKind
:
return
v
.
(
reflect
.
StringValue
)
.
Get
(),
true
;
case
reflect
.
PtrKind
:
if
val
,
ok
:=
v
.
Interface
()
.
(
*
[]
byte
);
ok
{
return
string
(
*
val
),
true
;
}
if
valb
,
okb
:=
v
.
Interface
()
.
([]
byte
);
okb
{
return
string
(
valb
),
true
;
}
// TODO(rsc): check for Interface().([]byte) too.
return
""
,
false
;
}
...
...
src/lib/reflect/all_test.go
View file @
ba882f99
...
...
@@ -49,6 +49,9 @@ func typedump(s, t string) {
func
valuedump
(
s
,
t
string
)
{
typ
:=
reflect
.
ParseTypeString
(
""
,
s
);
v
:=
reflect
.
NewInitValue
(
typ
);
if
v
==
nil
{
panicln
(
"valuedump"
,
s
);
}
switch
v
.
Kind
()
{
case
reflect
.
IntKind
:
v
.
(
reflect
.
IntValue
)
.
Set
(
132
);
...
...
@@ -114,11 +117,11 @@ export func TestAll(tt *testing.T) { // TODO(r): wrap up better
typedump
(
"**P.integer"
,
"**P.integer"
);
typedump
(
"[32]int32"
,
"[32]int32"
);
typedump
(
"[]int8"
,
"[]int8"
);
typedump
(
"
*map[string]int32"
,
"*
map[string]int32"
);
typedump
(
"
*chan<-string"
,
"*
chan<-string"
);
typedump
(
"struct {c
*chan *int32; d float32}"
,
"struct{c *
chan*int32; d float32}"
);
typedump
(
"
map[string]int32"
,
"
map[string]int32"
);
typedump
(
"
chan<-string"
,
"
chan<-string"
);
typedump
(
"struct {c
chan *int32; d float32}"
,
"struct{c
chan*int32; d float32}"
);
typedump
(
"*(a int8, b int32)"
,
"*(a int8, b int32)"
);
typedump
(
"struct {c *(?
*chan *P.integer, ? *int8)}"
,
"struct{c *(*
chan*P.integer, *int8)}"
);
typedump
(
"struct {c *(?
chan *P.integer, ? *int8)}"
,
"struct{c *(
chan*P.integer, *int8)}"
);
typedump
(
"struct {a int8; b int32}"
,
"struct{a int8; b int32}"
);
typedump
(
"struct {a int8; b int8; b int32}"
,
"struct{a int8; b int8; b int32}"
);
typedump
(
"struct {a int8; b int8; c int8; b int32}"
,
"struct{a int8; b int8; c int8; b int32}"
);
...
...
@@ -145,11 +148,11 @@ export func TestAll(tt *testing.T) { // TODO(r): wrap up better
valuedump
(
"**int8"
,
"**int8(0)"
);
valuedump
(
"[5]int32"
,
"[5]int32{0, 0, 0, 0, 0}"
);
valuedump
(
"**P.integer"
,
"**P.integer(0)"
);
valuedump
(
"
*map[string]int32"
,
"*map[string]int32(0)
"
);
valuedump
(
"
*chan<-string"
,
"*chan<-string(0)
"
);
valuedump
(
"struct {c
*chan *int32; d float32}"
,
"struct{c *chan*int32; d float32}{*chan*int32(0)
, 0}"
);
valuedump
(
"
map[string]int32"
,
"map[string]int32{<can't iterate on maps>}
"
);
valuedump
(
"
chan<-string"
,
"chan<-string
"
);
valuedump
(
"struct {c
chan *int32; d float32}"
,
"struct{c chan*int32; d float32}{chan*int32
, 0}"
);
valuedump
(
"*(a int8, b int32)"
,
"*(a int8, b int32)(0)"
);
valuedump
(
"struct {c *(?
*chan *P.integer, ? *int8)}"
,
"struct{c *(*chan*P.integer, *int8)}{*(*
chan*P.integer, *int8)(0)}"
);
valuedump
(
"struct {c *(?
chan *P.integer, ? *int8)}"
,
"struct{c *(chan*P.integer, *int8)}{*(
chan*P.integer, *int8)(0)}"
);
valuedump
(
"struct {a int8; b int32}"
,
"struct{a int8; b int32}{0, 0}"
);
valuedump
(
"struct {a int8; b int8; b int32}"
,
"struct{a int8; b int8; b int32}{0, 0, 0}"
);
...
...
@@ -173,7 +176,7 @@ export func TestAll(tt *testing.T) { // TODO(r): wrap up better
}
{
type
C
chan
*
T
;
// TODO: should not be necessary
var
tmp
=
new
(
C
);
var
tmp
=
new
(
*
C
);
value
:=
reflect
.
NewValue
(
tmp
);
assert
(
reflect
.
ValueToString
(
value
),
"*reflect.C·all_test(@)"
);
}
...
...
@@ -185,15 +188,14 @@ export func TestAll(tt *testing.T) { // TODO(r): wrap up better
// value.(reflect.PtrValue).Sub().(reflect.ArrayValue).Elem(4).(reflect.IntValue).Set(123);
// assert(reflect.ValueToString(value.(reflect.PtrValue).Sub()), "reflect.A·all_test{1, 2, 3, 4, 123, 6, 7, 8, 9, 10}");
// }
// {
// type AA []int;
// tmp1 := [10]int{1,2,3,4,5,6,7,8,9,10}; // TODO: should not be necessary to use tmp1
// var tmp *AA = &tmp1;
// value := reflect.NewValue(tmp);
// assert(reflect.ValueToString(value.(reflect.PtrValue).Sub()), "reflect.AA·all_test{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}");
// value.(reflect.PtrValue).Sub().(reflect.ArrayValue).Elem(4).(reflect.IntValue).Set(123);
// assert(reflect.ValueToString(value.(reflect.PtrValue).Sub()), "reflect.AA·all_test{1, 2, 3, 4, 123, 6, 7, 8, 9, 10}");
// }
{
type
AA
[]
int
;
var
tmp
=
AA
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
};
value
:=
reflect
.
NewValue
(
&
tmp
);
// TODO: NewValue(tmp) too
assert
(
reflect
.
ValueToString
(
value
.
(
reflect
.
PtrValue
)
.
Sub
()),
"reflect.AA·all_test{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}"
);
value
.
(
reflect
.
PtrValue
)
.
Sub
()
.
(
reflect
.
ArrayValue
)
.
Elem
(
4
)
.
(
reflect
.
IntValue
)
.
Set
(
123
);
assert
(
reflect
.
ValueToString
(
value
.
(
reflect
.
PtrValue
)
.
Sub
()),
"reflect.AA·all_test{1, 2, 3, 4, 123, 6, 7, 8, 9, 10}"
);
}
{
var
ip
*
int32
;
...
...
@@ -225,13 +227,13 @@ export func TestAll(tt *testing.T) { // TODO(r): wrap up better
pt
=
t
.
(
reflect
.
PtrType
);
assert
(
pt
.
Sub
()
.
String
(),
"int8"
);
t
=
reflect
.
ParseTypeString
(
""
,
"*struct {c
*
chan *int32; d float32}"
);
assert
(
t
.
String
(),
"*struct {c
*
chan *int32; d float32}"
);
t
=
reflect
.
ParseTypeString
(
""
,
"*struct {c chan *int32; d float32}"
);
assert
(
t
.
String
(),
"*struct {c chan *int32; d float32}"
);
pt
=
t
.
(
reflect
.
PtrType
);
assert
(
pt
.
Sub
()
.
String
(),
"struct {c
*
chan *int32; d float32}"
);
assert
(
pt
.
Sub
()
.
String
(),
"struct {c chan *int32; d float32}"
);
st
=
pt
.
Sub
()
.
(
reflect
.
StructType
);
name
,
typ
,
tag
,
offset
=
st
.
Field
(
0
);
assert
(
typ
.
String
(),
"
*
chan *int32"
);
assert
(
typ
.
String
(),
"chan *int32"
);
name
,
typ
,
tag
,
offset
=
st
.
Field
(
1
);
assert
(
typ
.
String
(),
"float32"
);
...
...
src/lib/reflect/tostring.go
View file @
ba882f99
...
...
@@ -190,14 +190,15 @@ func ValueToString(val Value) string {
return
str
;
case
MapKind
:
t
:=
typ
.
(
MapType
);
v
:=
val
.
(
Array
Value
);
v
:=
val
.
(
Map
Value
);
str
=
TypeToString
(
t
,
false
);
str
+=
"{"
;
str
+=
"<can't iterate on maps>"
;
str
+=
"}"
;
return
str
;
case
ChanKind
:
return
"can't print chans yet"
;
str
=
TypeToString
(
typ
,
false
);
return
str
;
case
StructKind
:
t
:=
typ
.
(
StructType
);
v
:=
val
.
(
StructValue
);
...
...
src/lib/reflect/type.go
View file @
ba882f99
...
...
@@ -175,7 +175,7 @@ func NewArrayTypeStruct(name, typestring string, open bool, len int, elem *StubT
func
(
t
*
ArrayTypeStruct
)
Size
()
int
{
if
t
.
open
{
return
ptrsize
// open arrays are pointers to structure
s
return
ptrsize
*
2
// open arrays are 2-word header
s
}
return
t
.
len
*
t
.
elem
.
Get
()
.
Size
();
}
...
...
@@ -207,12 +207,7 @@ type MapTypeStruct struct {
}
func
NewMapTypeStruct
(
name
,
typestring
string
,
key
,
elem
*
StubType
)
*
MapTypeStruct
{
return
&
MapTypeStruct
{
Common
{
MapKind
,
typestring
,
name
,
0
},
key
,
elem
}
}
func
(
t
*
MapTypeStruct
)
Size
()
int
{
panic
(
"reflect.type: map.Size(): cannot happen"
);
return
0
return
&
MapTypeStruct
{
Common
{
MapKind
,
typestring
,
name
,
ptrsize
},
key
,
elem
}
}
func
(
t
*
MapTypeStruct
)
Key
()
Type
{
...
...
@@ -243,12 +238,7 @@ type ChanTypeStruct struct {
}
func
NewChanTypeStruct
(
name
,
typestring
string
,
dir
int
,
elem
*
StubType
)
*
ChanTypeStruct
{
return
&
ChanTypeStruct
{
Common
{
ChanKind
,
typestring
,
name
,
0
},
elem
,
dir
}
}
func
(
t
*
ChanTypeStruct
)
Size
()
int
{
panic
(
"reflect.type: chan.Size(): cannot happen"
);
return
0
return
&
ChanTypeStruct
{
Common
{
ChanKind
,
typestring
,
name
,
ptrsize
},
elem
,
dir
}
}
func
(
t
*
ChanTypeStruct
)
Dir
()
int
{
...
...
@@ -379,14 +369,14 @@ func (t *FuncTypeStruct) Out() StructType {
}
// Cache of expanded types keyed by type name.
var
types
*
map
[
string
]
Type
var
types
map
[
string
]
Type
// List of typename, typestring pairs
var
typestring
*
map
[
string
]
string
var
typestring
map
[
string
]
string
var
initialized
bool
=
false
// Map of basic types to prebuilt StubTypes
var
basicstub
*
map
[
string
]
*
StubType
var
basicstub
map
[
string
]
*
StubType
var
MissingStub
*
StubType
;
var
DotDotDotStub
*
StubType
;
...
...
@@ -849,7 +839,7 @@ export func ParseTypeString(name, typestring string) Type {
// If the typestring is empty, it represents (the type of) a nil interface value
return
NilInterface
}
p
:=
new
(
Parser
);
p
:=
new
(
*
Parser
);
p
.
str
=
typestring
;
p
.
Next
();
return
p
.
Type
(
name
)
.
Get
();
...
...
src/lib/reflect/value.go
View file @
ba882f99
...
...
@@ -46,6 +46,9 @@ func (c *Common) Addr() Addr {
}
func
(
c
*
Common
)
Interface
()
interface
{}
{
if
uintptr
(
c
.
addr
)
==
0
{
panicln
(
"reflect: address 0 for"
,
c
.
typ
.
String
());
}
return
sys
.
unreflect
(
uint64
(
uintptr
(
*
c
.
addr
.
(
*
Addr
))),
c
.
typ
.
String
());
}
...
...
@@ -622,7 +625,7 @@ func (v *FixedArrayValueStruct) Elem(i int) Value {
func
ArrayCreator
(
typ
Type
,
addr
Addr
)
Value
{
arraytype
:=
typ
.
(
ArrayType
);
if
arraytype
.
Open
()
{
v
:=
new
(
OpenArrayValueStruct
);
v
:=
new
(
*
OpenArrayValueStruct
);
v
.
kind
=
ArrayKind
;
v
.
addr
=
addr
;
v
.
typ
=
typ
;
...
...
@@ -631,7 +634,7 @@ func ArrayCreator(typ Type, addr Addr) Value {
v
.
array
=
addr
.
(
*
RuntimeArray
);
return
v
;
}
v
:=
new
(
FixedArrayValueStruct
);
v
:=
new
(
*
FixedArrayValueStruct
);
v
.
kind
=
ArrayKind
;
v
.
addr
=
addr
;
v
.
typ
=
typ
;
...
...
@@ -793,7 +796,7 @@ func NewValueAddr(typ Type, addr Addr) Value {
export
func
NewInitValue
(
typ
Type
)
Value
{
// Some values cannot be made this way.
switch
typ
.
Kind
()
{
case
FuncKind
,
ChanKind
,
MapKind
:
// must be pointers, at least for now (TODO?)
case
FuncKind
:
// must be pointers, at least for now (TODO?)
return
nil
;
case
ArrayKind
:
if
typ
.
(
ArrayType
)
.
Open
()
{
...
...
@@ -821,7 +824,7 @@ export func NewOpenArrayValue(typ ArrayType, len, cap int) ArrayValue {
return
nil
}
array
:=
new
(
RuntimeArray
);
array
:=
new
(
*
RuntimeArray
);
size
:=
typ
.
Elem
()
.
Size
()
*
cap
;
if
size
==
0
{
size
=
1
;
...
...
@@ -871,13 +874,13 @@ export func NewValue(e interface {}) Value {
p
,
ok
:=
typecache
[
typestring
];
if
!
ok
{
typ
:=
ParseTypeString
(
""
,
typestring
);
p
=
new
(
Type
);
p
=
new
(
*
Type
);
*
p
=
typ
;
typecache
[
typestring
]
=
p
;
}
// Content of interface is a value; need a permanent copy to take its address
// so we can modify the contents. Values contain pointers to 'values'.
ap
:=
new
(
uint64
);
ap
:=
new
(
*
uint64
);
*
ap
=
value
;
return
NewValueAddr
(
*
p
,
ap
.
(
Addr
));
}
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