blob: af43de98aaae7309800cb0907258ac0c0b3aecba [file] [log] [blame]
Rob Pikefac3dfe2008-10-22 11:02:56 -07001// Copyright 2009 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
5// Reflection library.
6// Handling values.
7
8package reflect
9
10import (
11 "reflect";
Rob Pike50d06952008-12-09 15:41:21 -080012 "unsafe";
Rob Pikefac3dfe2008-10-22 11:02:56 -070013)
14
Rob Pike3bc6fd62009-03-09 17:47:15 -070015// Addr is shorthand for unsafe.Pointer and is used to represent the address of Values.
Russ Cox839a6842009-01-20 14:40:40 -080016type Addr unsafe.Pointer
Rob Pikea45f9472008-11-04 22:54:11 -080017
Rob Pikeed2ac9b2009-01-16 12:48:07 -080018func equalType(a, b Type) bool {
Russ Coxd0e30cd2008-12-10 15:55:59 -080019 return a.String() == b.String()
20}
21
Rob Pike3bc6fd62009-03-09 17:47:15 -070022// Value is the generic interface to reflection values. Once its Kind is known,
23// such as BoolKind, the Value can be narrowed to the appropriate, more
24// specific interface, such as BoolValue. Such narrowed values still implement
25// the Value interface.
Russ Cox839a6842009-01-20 14:40:40 -080026type Value interface {
Rob Pike3bc6fd62009-03-09 17:47:15 -070027 // The kind of thing described: ArrayKind, BoolKind, etc.
Rob Pikea45f9472008-11-04 22:54:11 -080028 Kind() int;
Rob Pike3bc6fd62009-03-09 17:47:15 -070029 // The reflection Type of the value.
Rob Pikea45f9472008-11-04 22:54:11 -080030 Type() Type;
Rob Pike3bc6fd62009-03-09 17:47:15 -070031 // The address of the value.
Rob Pikeb1d37b72008-11-12 14:19:39 -080032 Addr() Addr;
Rob Pike3bc6fd62009-03-09 17:47:15 -070033 // The value itself is the dynamic value of an empty interface.
Russ Cox387df5e2008-11-24 14:51:33 -080034 Interface() interface {};
Rob Pikea45f9472008-11-04 22:54:11 -080035}
36
Russ Coxac6ebfd2009-04-06 21:28:04 -070037func NewValue(e interface{}) Value;
38
Russ Coxb54133d2009-01-15 16:16:42 -080039// commonValue fields and functionality for all values
Rob Pikea45f9472008-11-04 22:54:11 -080040
Russ Coxb54133d2009-01-15 16:16:42 -080041type commonValue struct {
Rob Pikea45f9472008-11-04 22:54:11 -080042 kind int;
43 typ Type;
44 addr Addr;
45}
46
Russ Coxb54133d2009-01-15 16:16:42 -080047func (c *commonValue) Kind() int {
Rob Pikea45f9472008-11-04 22:54:11 -080048 return c.kind
49}
50
Russ Coxb54133d2009-01-15 16:16:42 -080051func (c *commonValue) Type() Type {
Rob Pikea45f9472008-11-04 22:54:11 -080052 return c.typ
53}
54
Russ Coxb54133d2009-01-15 16:16:42 -080055func (c *commonValue) Addr() Addr {
Rob Pikeb1d37b72008-11-12 14:19:39 -080056 return c.addr
57}
58
Russ Coxb54133d2009-01-15 16:16:42 -080059func (c *commonValue) Interface() interface {} {
Russ Cox484ba932009-01-09 00:17:46 -080060 var i interface {};
61 if c.typ.Size() > 8 { // TODO(rsc): how do we know it is 8?
Russ Coxbe2edb52009-03-03 08:39:12 -080062 i = sys.Unreflect(uint64(uintptr(c.addr)), c.typ.String(), true);
Russ Cox484ba932009-01-09 00:17:46 -080063 } else {
64 if uintptr(c.addr) == 0 {
65 panicln("reflect: address 0 for", c.typ.String());
66 }
Russ Coxbe2edb52009-03-03 08:39:12 -080067 i = sys.Unreflect(uint64(uintptr(*(*Addr)(c.addr))), c.typ.String(), false);
Russ Coxba882f92008-12-19 03:06:19 -080068 }
Russ Cox484ba932009-01-09 00:17:46 -080069 return i;
Rob Pikea45f9472008-11-04 22:54:11 -080070}
71
Rob Pikeed2ac9b2009-01-16 12:48:07 -080072func newValueAddr(typ Type, addr Addr) Value
Rob Pikea45f9472008-11-04 22:54:11 -080073
Russ Cox4cf77112009-01-30 14:39:31 -080074type creatorFn func(typ Type, addr Addr) Value
Rob Pikea45f9472008-11-04 22:54:11 -080075
76
Rob Pike178e37e2008-11-02 12:32:14 -080077// -- Missing
78
Rob Pike3bc6fd62009-03-09 17:47:15 -070079// MissingValue represents a value whose type is not known. It usually
80// indicates an error.
Russ Cox839a6842009-01-20 14:40:40 -080081type MissingValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -080082 Value;
Rob Pike178e37e2008-11-02 12:32:14 -080083}
84
Rob Pikeed2ac9b2009-01-16 12:48:07 -080085type missingValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -080086 commonValue
Rob Pike178e37e2008-11-02 12:32:14 -080087}
88
Rob Pikeed2ac9b2009-01-16 12:48:07 -080089func missingCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -080090 return &missingValueStruct{ commonValue{MissingKind, typ, addr} }
Rob Pike178e37e2008-11-02 12:32:14 -080091}
92
Rob Pike282493b2008-10-29 15:31:02 -070093// -- Int
94
Rob Pike3bc6fd62009-03-09 17:47:15 -070095// IntValue represents an int value.
Russ Cox839a6842009-01-20 14:40:40 -080096type IntValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -080097 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -070098 Get() int; // Get the underlying int.
99 Set(int); // Set the underlying int.
Rob Pike282493b2008-10-29 15:31:02 -0700100}
101
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800102type intValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800103 commonValue
Rob Pike282493b2008-10-29 15:31:02 -0700104}
105
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800106func intCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800107 return &intValueStruct{ commonValue{IntKind, typ, addr} }
Rob Pike282493b2008-10-29 15:31:02 -0700108}
109
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800110func (v *intValueStruct) Get() int {
Russ Coxbe2edb52009-03-03 08:39:12 -0800111 return *(*int)(v.addr)
Rob Pike282493b2008-10-29 15:31:02 -0700112}
113
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800114func (v *intValueStruct) Set(i int) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800115 *(*int)(v.addr) = i
Rob Pike282493b2008-10-29 15:31:02 -0700116}
117
Rob Pikefac3dfe2008-10-22 11:02:56 -0700118// -- Int8
119
Rob Pike3bc6fd62009-03-09 17:47:15 -0700120// Int8Value represents an int8 value.
Russ Cox839a6842009-01-20 14:40:40 -0800121type Int8Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800122 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700123 Get() int8; // Get the underlying int8.
124 Set(int8); // Set the underlying int8.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700125}
126
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800127type int8ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800128 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700129}
130
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800131func int8Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800132 return &int8ValueStruct{ commonValue{Int8Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700133}
134
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800135func (v *int8ValueStruct) Get() int8 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800136 return *(*int8)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700137}
138
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800139func (v *int8ValueStruct) Set(i int8) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800140 *(*int8)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700141}
142
Rob Pikefac3dfe2008-10-22 11:02:56 -0700143// -- Int16
144
Rob Pike3bc6fd62009-03-09 17:47:15 -0700145// Int16Value represents an int16 value.
Russ Cox839a6842009-01-20 14:40:40 -0800146type Int16Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800147 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700148 Get() int16; // Get the underlying int16.
149 Set(int16); // Set the underlying int16.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700150}
151
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800152type int16ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800153 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700154}
155
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800156func int16Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800157 return &int16ValueStruct{ commonValue{Int16Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700158}
159
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800160func (v *int16ValueStruct) Get() int16 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800161 return *(*int16)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700162}
163
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800164func (v *int16ValueStruct) Set(i int16) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800165 *(*int16)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700166}
167
Rob Pikefac3dfe2008-10-22 11:02:56 -0700168// -- Int32
169
Rob Pike3bc6fd62009-03-09 17:47:15 -0700170// Int32Value represents an int32 value.
Russ Cox839a6842009-01-20 14:40:40 -0800171type Int32Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800172 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700173 Get() int32; // Get the underlying int32.
174 Set(int32); // Set the underlying int32.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700175}
176
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800177type int32ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800178 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700179}
180
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800181func int32Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800182 return &int32ValueStruct{ commonValue{Int32Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700183}
184
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800185func (v *int32ValueStruct) Get() int32 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800186 return *(*int32)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700187}
188
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800189func (v *int32ValueStruct) Set(i int32) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800190 *(*int32)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700191}
192
Rob Pikefac3dfe2008-10-22 11:02:56 -0700193// -- Int64
194
Rob Pike3bc6fd62009-03-09 17:47:15 -0700195// Int64Value represents an int64 value.
Russ Cox839a6842009-01-20 14:40:40 -0800196type Int64Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800197 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700198 Get() int64; // Get the underlying int64.
199 Set(int64); // Set the underlying int64.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700200}
201
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800202type int64ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800203 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700204}
205
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800206func int64Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800207 return &int64ValueStruct{ commonValue{Int64Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700208}
209
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800210func (v *int64ValueStruct) Get() int64 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800211 return *(*int64)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700212}
213
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800214func (v *int64ValueStruct) Set(i int64) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800215 *(*int64)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700216}
217
Rob Pike282493b2008-10-29 15:31:02 -0700218// -- Uint
219
Rob Pike3bc6fd62009-03-09 17:47:15 -0700220// UintValue represents a uint value.
Russ Cox839a6842009-01-20 14:40:40 -0800221type UintValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800222 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700223 Get() uint; // Get the underlying uint.
224 Set(uint); // Set the underlying uint.
Rob Pike282493b2008-10-29 15:31:02 -0700225}
226
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800227type uintValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800228 commonValue
Rob Pike282493b2008-10-29 15:31:02 -0700229}
230
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800231func uintCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800232 return &uintValueStruct{ commonValue{UintKind, typ, addr} }
Rob Pike282493b2008-10-29 15:31:02 -0700233}
234
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800235func (v *uintValueStruct) Get() uint {
Russ Coxbe2edb52009-03-03 08:39:12 -0800236 return *(*uint)(v.addr)
Rob Pike282493b2008-10-29 15:31:02 -0700237}
238
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800239func (v *uintValueStruct) Set(i uint) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800240 *(*uint)(v.addr) = i
Rob Pike282493b2008-10-29 15:31:02 -0700241}
242
Rob Pikefac3dfe2008-10-22 11:02:56 -0700243// -- Uint8
244
Rob Pike3bc6fd62009-03-09 17:47:15 -0700245// Uint8Value represents a uint8 value.
Russ Cox839a6842009-01-20 14:40:40 -0800246type Uint8Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800247 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700248 Get() uint8; // Get the underlying uint8.
249 Set(uint8); // Set the underlying uint8.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700250}
251
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800252type uint8ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800253 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700254}
255
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800256func uint8Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800257 return &uint8ValueStruct{ commonValue{Uint8Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700258}
259
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800260func (v *uint8ValueStruct) Get() uint8 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800261 return *(*uint8)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700262}
263
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800264func (v *uint8ValueStruct) Set(i uint8) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800265 *(*uint8)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700266}
267
Rob Pikefac3dfe2008-10-22 11:02:56 -0700268// -- Uint16
269
Rob Pike3bc6fd62009-03-09 17:47:15 -0700270// Uint16Value represents a uint16 value.
Russ Cox839a6842009-01-20 14:40:40 -0800271type Uint16Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800272 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700273 Get() uint16; // Get the underlying uint16.
274 Set(uint16); // Set the underlying uint16.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700275}
276
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800277type uint16ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800278 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700279}
280
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800281func uint16Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800282 return &uint16ValueStruct{ commonValue{Uint16Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700283}
284
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800285func (v *uint16ValueStruct) Get() uint16 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800286 return *(*uint16)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700287}
288
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800289func (v *uint16ValueStruct) Set(i uint16) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800290 *(*uint16)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700291}
292
Rob Pikefac3dfe2008-10-22 11:02:56 -0700293// -- Uint32
294
Rob Pike3bc6fd62009-03-09 17:47:15 -0700295// Uint32Value represents a uint32 value.
Russ Cox839a6842009-01-20 14:40:40 -0800296type Uint32Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800297 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700298 Get() uint32; // Get the underlying uint32.
299 Set(uint32); // Set the underlying uint32.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700300}
301
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800302type uint32ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800303 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700304}
305
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800306func uint32Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800307 return &uint32ValueStruct{ commonValue{Uint32Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700308}
309
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800310func (v *uint32ValueStruct) Get() uint32 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800311 return *(*uint32)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700312}
313
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800314func (v *uint32ValueStruct) Set(i uint32) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800315 *(*uint32)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700316}
317
Rob Pikefac3dfe2008-10-22 11:02:56 -0700318// -- Uint64
319
Rob Pike3bc6fd62009-03-09 17:47:15 -0700320// Uint64Value represents a uint64 value.
Russ Cox839a6842009-01-20 14:40:40 -0800321type Uint64Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800322 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700323 Get() uint64; // Get the underlying uint64.
324 Set(uint64); // Set the underlying uint64.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700325}
326
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800327type uint64ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800328 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700329}
330
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800331func uint64Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800332 return &uint64ValueStruct{ commonValue{Uint64Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700333}
334
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800335func (v *uint64ValueStruct) Get() uint64 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800336 return *(*uint64)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700337}
338
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800339func (v *uint64ValueStruct) Set(i uint64) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800340 *(*uint64)(v.addr) = i
Rob Pikefac3dfe2008-10-22 11:02:56 -0700341}
342
Rob Pike9ba97ca2008-12-11 14:41:12 -0800343// -- Uintptr
344
Rob Pike3bc6fd62009-03-09 17:47:15 -0700345// UintptrValue represents a uintptr value.
Russ Cox839a6842009-01-20 14:40:40 -0800346type UintptrValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800347 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700348 Get() uintptr; // Get the underlying uintptr.
349 Set(uintptr); // Set the underlying uintptr.
Rob Pike9ba97ca2008-12-11 14:41:12 -0800350}
351
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800352type uintptrValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800353 commonValue
Rob Pike9ba97ca2008-12-11 14:41:12 -0800354}
355
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800356func uintptrCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800357 return &uintptrValueStruct{ commonValue{UintptrKind, typ, addr} }
Rob Pike9ba97ca2008-12-11 14:41:12 -0800358}
359
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800360func (v *uintptrValueStruct) Get() uintptr {
Russ Coxbe2edb52009-03-03 08:39:12 -0800361 return *(*uintptr)(v.addr)
Rob Pike9ba97ca2008-12-11 14:41:12 -0800362}
363
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800364func (v *uintptrValueStruct) Set(i uintptr) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800365 *(*uintptr)(v.addr) = i
Rob Pike9ba97ca2008-12-11 14:41:12 -0800366}
367
Rob Pike282493b2008-10-29 15:31:02 -0700368// -- Float
369
Rob Pike3bc6fd62009-03-09 17:47:15 -0700370// FloatValue represents a float value.
Russ Cox839a6842009-01-20 14:40:40 -0800371type FloatValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800372 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700373 Get() float; // Get the underlying float.
374 Set(float); // Get the underlying float.
Rob Pike282493b2008-10-29 15:31:02 -0700375}
376
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800377type floatValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800378 commonValue
Rob Pike282493b2008-10-29 15:31:02 -0700379}
380
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800381func floatCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800382 return &floatValueStruct{ commonValue{FloatKind, typ, addr} }
Rob Pike282493b2008-10-29 15:31:02 -0700383}
384
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800385func (v *floatValueStruct) Get() float {
Russ Coxbe2edb52009-03-03 08:39:12 -0800386 return *(*float)(v.addr)
Rob Pike282493b2008-10-29 15:31:02 -0700387}
388
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800389func (v *floatValueStruct) Set(f float) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800390 *(*float)(v.addr) = f
Rob Pike282493b2008-10-29 15:31:02 -0700391}
392
Rob Pikefac3dfe2008-10-22 11:02:56 -0700393// -- Float32
394
Rob Pike3bc6fd62009-03-09 17:47:15 -0700395// Float32Value represents a float32 value.
Russ Cox839a6842009-01-20 14:40:40 -0800396type Float32Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800397 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700398 Get() float32; // Get the underlying float32.
399 Set(float32); // Get the underlying float32.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700400}
401
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800402type float32ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800403 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700404}
405
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800406func float32Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800407 return &float32ValueStruct{ commonValue{Float32Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700408}
409
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800410func (v *float32ValueStruct) Get() float32 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800411 return *(*float32)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700412}
413
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800414func (v *float32ValueStruct) Set(f float32) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800415 *(*float32)(v.addr) = f
Rob Pikefac3dfe2008-10-22 11:02:56 -0700416}
417
Rob Pikefac3dfe2008-10-22 11:02:56 -0700418// -- Float64
419
Rob Pike3bc6fd62009-03-09 17:47:15 -0700420// Float64Value represents a float64 value.
Russ Cox839a6842009-01-20 14:40:40 -0800421type Float64Value interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800422 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700423 Get() float64; // Get the underlying float64.
424 Set(float64); // Get the underlying float64.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700425}
426
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800427type float64ValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800428 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700429}
430
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800431func float64Creator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800432 return &float64ValueStruct{ commonValue{Float64Kind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700433}
434
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800435func (v *float64ValueStruct) Get() float64 {
Russ Coxbe2edb52009-03-03 08:39:12 -0800436 return *(*float64)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700437}
438
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800439func (v *float64ValueStruct) Set(f float64) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800440 *(*float64)(v.addr) = f
Rob Pikefac3dfe2008-10-22 11:02:56 -0700441}
442
Rob Pikefac3dfe2008-10-22 11:02:56 -0700443// -- String
444
Rob Pike3bc6fd62009-03-09 17:47:15 -0700445// StringValue represents a string value.
Russ Cox839a6842009-01-20 14:40:40 -0800446type StringValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800447 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700448 Get() string; // Get the underlying string value.
449 Set(string); // Set the underlying string value.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700450}
451
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800452type stringValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800453 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700454}
455
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800456func stringCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800457 return &stringValueStruct{ commonValue{StringKind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700458}
459
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800460func (v *stringValueStruct) Get() string {
Russ Coxbe2edb52009-03-03 08:39:12 -0800461 return *(*string)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700462}
463
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800464func (v *stringValueStruct) Set(s string) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800465 *(*string)(v.addr) = s
Rob Pikefac3dfe2008-10-22 11:02:56 -0700466}
467
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700468// -- Bool
469
Rob Pike3bc6fd62009-03-09 17:47:15 -0700470// BoolValue represents a bool value.
Russ Cox839a6842009-01-20 14:40:40 -0800471type BoolValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800472 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700473 Get() bool; // Get the underlying bool value.
474 Set(bool); // Set the underlying bool value.
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700475}
476
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800477type boolValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800478 commonValue
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700479}
480
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800481func boolCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800482 return &boolValueStruct{ commonValue{BoolKind, typ, addr} }
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700483}
484
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800485func (v *boolValueStruct) Get() bool {
Russ Coxbe2edb52009-03-03 08:39:12 -0800486 return *(*bool)(v.addr)
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700487}
488
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800489func (v *boolValueStruct) Set(b bool) {
Russ Coxbe2edb52009-03-03 08:39:12 -0800490 *(*bool)(v.addr) = b
Ian Lance Taylor16fd3562008-10-31 16:34:47 -0700491}
492
Rob Pikefac3dfe2008-10-22 11:02:56 -0700493// -- Pointer
494
Rob Pike3bc6fd62009-03-09 17:47:15 -0700495// PtrValue represents a pointer value.
Russ Cox839a6842009-01-20 14:40:40 -0800496type PtrValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800497 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700498 Sub() Value; // The Value pointed to.
499 Get() Addr; // Get the address stored in the pointer.
500 SetSub(Value); // Set the the pointed-to Value.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700501}
502
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800503type ptrValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800504 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700505}
506
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800507func (v *ptrValueStruct) Get() Addr {
Russ Coxbe2edb52009-03-03 08:39:12 -0800508 return *(*Addr)(v.addr)
Rob Pikefac3dfe2008-10-22 11:02:56 -0700509}
510
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800511func (v *ptrValueStruct) Sub() Value {
512 return newValueAddr(v.typ.(PtrType).Sub(), v.Get());
Rob Pikefac3dfe2008-10-22 11:02:56 -0700513}
514
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800515func (v *ptrValueStruct) SetSub(subv Value) {
Russ Coxd0e30cd2008-12-10 15:55:59 -0800516 a := v.typ.(PtrType).Sub();
517 b := subv.Type();
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800518 if !equalType(a, b) {
Russ Coxd0e30cd2008-12-10 15:55:59 -0800519 panicln("reflect: incompatible types in PtrValue.SetSub:",
520 a.String(), b.String());
Rob Pike419e1e02008-11-12 19:05:05 -0800521 }
Russ Coxbe2edb52009-03-03 08:39:12 -0800522 *(*Addr)(v.addr) = subv.Addr();
Rob Pikeb1d37b72008-11-12 14:19:39 -0800523}
524
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800525func ptrCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800526 return &ptrValueStruct{ commonValue{PtrKind, typ, addr} };
Rob Pikefac3dfe2008-10-22 11:02:56 -0700527}
528
Rob Pikec4af3e72008-10-26 08:28:33 -0700529// -- Array
Rob Pike9a7332f2009-01-23 15:56:04 -0800530// Slices and arrays are represented by the same interface.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700531
Rob Pike3bc6fd62009-03-09 17:47:15 -0700532// ArrayValue represents an array or slice value.
Russ Cox839a6842009-01-20 14:40:40 -0800533type ArrayValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800534 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700535 IsSlice() bool; // Is this a slice (true) or array (false)?
536 Len() int; // The length of the array/slice.
537 Cap() int; // The capacity of the array/slice (==Len() for arrays).
538 Elem(i int) Value; // The Value of the i'th element.
539 SetLen(len int); // Set the length; slice only.
540 Set(src ArrayValue); // Set the underlying Value; slice only for src and dest both.
541 CopyFrom(src ArrayValue, n int) // Copy the elements from src; lengths must match.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700542}
Rob Pikec4af3e72008-10-26 08:28:33 -0700543
Rob Pikec5f99cc2009-01-21 15:45:54 -0800544func copyArray(dst ArrayValue, src ArrayValue, n int);
545
Rob Pike34b88732008-10-22 16:48:17 -0700546/*
Rob Pike9a7332f2009-01-23 15:56:04 -0800547 Run-time representation of slices looks like this:
548 struct Slice {
Rob Pike34b88732008-10-22 16:48:17 -0700549 byte* array; // actual data
550 uint32 nel; // number of elements
Russ Coxe4f4ab02008-11-13 13:42:59 -0800551 uint32 cap;
Rob Pike34b88732008-10-22 16:48:17 -0700552 };
553*/
Rob Pike9a7332f2009-01-23 15:56:04 -0800554type runtimeSlice struct {
Russ Coxe4f4ab02008-11-13 13:42:59 -0800555 data Addr;
556 len uint32;
557 cap uint32;
558}
559
Rob Pike9a7332f2009-01-23 15:56:04 -0800560type sliceValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800561 commonValue;
Russ Coxe4f4ab02008-11-13 13:42:59 -0800562 elemtype Type;
563 elemsize int;
Rob Pike9a7332f2009-01-23 15:56:04 -0800564 slice *runtimeSlice;
Russ Coxe4f4ab02008-11-13 13:42:59 -0800565}
Rob Pikefac3dfe2008-10-22 11:02:56 -0700566
Rob Pike9a7332f2009-01-23 15:56:04 -0800567func (v *sliceValueStruct) IsSlice() bool {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700568 return true
569}
570
Rob Pike9a7332f2009-01-23 15:56:04 -0800571func (v *sliceValueStruct) Len() int {
572 return int(v.slice.len);
Russ Coxe4f4ab02008-11-13 13:42:59 -0800573}
574
Rob Pike9a7332f2009-01-23 15:56:04 -0800575func (v *sliceValueStruct) Cap() int {
576 return int(v.slice.cap);
Russ Coxe4f4ab02008-11-13 13:42:59 -0800577}
578
Rob Pike9a7332f2009-01-23 15:56:04 -0800579func (v *sliceValueStruct) SetLen(len int) {
Russ Coxe4f4ab02008-11-13 13:42:59 -0800580 if len > v.Cap() {
Rob Pike9a7332f2009-01-23 15:56:04 -0800581 panicln("reflect: sliceValueStruct.SetLen", len, v.Cap());
Russ Coxe4f4ab02008-11-13 13:42:59 -0800582 }
Rob Pike9a7332f2009-01-23 15:56:04 -0800583 v.slice.len = uint32(len);
Rob Pikefac3dfe2008-10-22 11:02:56 -0700584}
585
Rob Pike9a7332f2009-01-23 15:56:04 -0800586func (v *sliceValueStruct) Set(src ArrayValue) {
587 if !src.IsSlice() {
Rob Pike3bc6fd62009-03-09 17:47:15 -0700588 panic("can't set slice from array");
Rob Pike1b3299e2009-01-23 12:40:55 -0800589 }
Rob Pike9a7332f2009-01-23 15:56:04 -0800590 s := src.(*sliceValueStruct);
Rob Pike1b3299e2009-01-23 12:40:55 -0800591 if !equalType(v.typ, s.typ) {
Rob Pike9a7332f2009-01-23 15:56:04 -0800592 panicln("incompatible types in ArrayValue.Set()");
Rob Pike1b3299e2009-01-23 12:40:55 -0800593 }
Rob Pike9a7332f2009-01-23 15:56:04 -0800594 *v.slice = *s.slice;
Rob Pike1b3299e2009-01-23 12:40:55 -0800595}
596
Rob Pike9a7332f2009-01-23 15:56:04 -0800597func (v *sliceValueStruct) Elem(i int) Value {
598 data_uint := uintptr(v.slice.data) + uintptr(i * v.elemsize);
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800599 return newValueAddr(v.elemtype, Addr(data_uint));
Rob Pikefac3dfe2008-10-22 11:02:56 -0700600}
601
Rob Pike9a7332f2009-01-23 15:56:04 -0800602func (v *sliceValueStruct) CopyFrom(src ArrayValue, n int) {
Rob Pikec5f99cc2009-01-21 15:45:54 -0800603 copyArray(v, src, n);
604}
605
Rob Pike9a7332f2009-01-23 15:56:04 -0800606type arrayValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800607 commonValue;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700608 elemtype Type;
Rob Pike554d0aa2008-11-05 10:17:38 -0800609 elemsize int;
610 len int;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700611}
612
Rob Pike9a7332f2009-01-23 15:56:04 -0800613func (v *arrayValueStruct) IsSlice() bool {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700614 return false
615}
616
Rob Pike9a7332f2009-01-23 15:56:04 -0800617func (v *arrayValueStruct) Len() int {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700618 return v.len
619}
620
Rob Pike9a7332f2009-01-23 15:56:04 -0800621func (v *arrayValueStruct) Cap() int {
Russ Coxe4f4ab02008-11-13 13:42:59 -0800622 return v.len
623}
624
Rob Pike9a7332f2009-01-23 15:56:04 -0800625func (v *arrayValueStruct) SetLen(len int) {
Rob Pike3bc6fd62009-03-09 17:47:15 -0700626 panicln("can't set len of array");
Russ Coxe4f4ab02008-11-13 13:42:59 -0800627}
628
Rob Pike9a7332f2009-01-23 15:56:04 -0800629func (v *arrayValueStruct) Set(src ArrayValue) {
Rob Pike3bc6fd62009-03-09 17:47:15 -0700630 panicln("can't set array");
Rob Pike1b3299e2009-01-23 12:40:55 -0800631}
632
Rob Pike9a7332f2009-01-23 15:56:04 -0800633func (v *arrayValueStruct) Elem(i int) Value {
Rob Pike50d06952008-12-09 15:41:21 -0800634 data_uint := uintptr(v.addr) + uintptr(i * v.elemsize);
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800635 return newValueAddr(v.elemtype, Addr(data_uint));
Rob Pikefac3dfe2008-10-22 11:02:56 -0700636 return nil
637}
638
Rob Pike9a7332f2009-01-23 15:56:04 -0800639func (v *arrayValueStruct) CopyFrom(src ArrayValue, n int) {
Rob Pikec5f99cc2009-01-21 15:45:54 -0800640 copyArray(v, src, n);
641}
642
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800643func arrayCreator(typ Type, addr Addr) Value {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700644 arraytype := typ.(ArrayType);
Rob Pike9a7332f2009-01-23 15:56:04 -0800645 if arraytype.IsSlice() {
646 v := new(sliceValueStruct);
Rob Pikec4af3e72008-10-26 08:28:33 -0700647 v.kind = ArrayKind;
Rob Pike34b88732008-10-22 16:48:17 -0700648 v.addr = addr;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700649 v.typ = typ;
Rob Pike34b88732008-10-22 16:48:17 -0700650 v.elemtype = arraytype.Elem();
651 v.elemsize = v.elemtype.Size();
Russ Coxbe2edb52009-03-03 08:39:12 -0800652 v.slice = (*runtimeSlice)(addr);
Rob Pikefac3dfe2008-10-22 11:02:56 -0700653 return v;
654 }
Rob Pike9a7332f2009-01-23 15:56:04 -0800655 v := new(arrayValueStruct);
Rob Pikec4af3e72008-10-26 08:28:33 -0700656 v.kind = ArrayKind;
Rob Pike34b88732008-10-22 16:48:17 -0700657 v.addr = addr;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700658 v.typ = typ;
659 v.elemtype = arraytype.Elem();
Rob Pike34b88732008-10-22 16:48:17 -0700660 v.elemsize = v.elemtype.Size();
661 v.len = arraytype.Len();
Rob Pikefac3dfe2008-10-22 11:02:56 -0700662 return v;
663}
664
665// -- Map TODO: finish and test
666
Rob Pike3bc6fd62009-03-09 17:47:15 -0700667// MapValue represents a map value.
668// Its implementation is incomplete.
Russ Cox839a6842009-01-20 14:40:40 -0800669type MapValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800670 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700671 Len() int; // The number of elements; currently always returns 0.
672 Elem(key Value) Value; // The value indexed by key; unimplemented.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700673}
674
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800675type mapValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800676 commonValue
Russ Coxde137272008-10-23 12:41:06 -0700677}
678
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800679func mapCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800680 return &mapValueStruct{ commonValue{MapKind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700681}
682
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800683func (v *mapValueStruct) Len() int {
Russ Coxde137272008-10-23 12:41:06 -0700684 return 0 // TODO: probably want this to be dynamic
Rob Pikefac3dfe2008-10-22 11:02:56 -0700685}
686
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800687func (v *mapValueStruct) Elem(key Value) Value {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700688 panic("map value element");
689 return nil
690}
691
Rob Pikefac3dfe2008-10-22 11:02:56 -0700692// -- Chan
693
Rob Pike3bc6fd62009-03-09 17:47:15 -0700694// ChanValue represents a chan value.
695// Its implementation is incomplete.
Russ Cox839a6842009-01-20 14:40:40 -0800696type ChanValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800697 Value;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700698}
699
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800700type chanValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800701 commonValue
Russ Coxde137272008-10-23 12:41:06 -0700702}
703
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800704func chanCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800705 return &chanValueStruct{ commonValue{ChanKind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700706}
707
Rob Pikefac3dfe2008-10-22 11:02:56 -0700708// -- Struct
709
Rob Pike3bc6fd62009-03-09 17:47:15 -0700710// StructValue represents a struct value.
Russ Cox839a6842009-01-20 14:40:40 -0800711type StructValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800712 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700713 Len() int; // The number of fields.
714 Field(i int) Value; // The Value of field i.
Rob Pikefac3dfe2008-10-22 11:02:56 -0700715}
716
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800717type structValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800718 commonValue;
Russ Coxd47d8882008-12-18 22:37:22 -0800719 field []Value;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700720}
721
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800722func (v *structValueStruct) Len() int {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700723 return len(v.field)
724}
725
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800726func (v *structValueStruct) Field(i int) Value {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700727 return v.field[i]
728}
729
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800730func structCreator(typ Type, addr Addr) Value {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700731 t := typ.(StructType);
Rob Pikefac3dfe2008-10-22 11:02:56 -0700732 nfield := t.Len();
Russ Coxbe2edb52009-03-03 08:39:12 -0800733 v := &structValueStruct{ commonValue{StructKind, typ, addr}, make([]Value, nfield) };
Rob Pikefac3dfe2008-10-22 11:02:56 -0700734 for i := 0; i < nfield; i++ {
Rob Pike12a34352008-10-30 17:29:53 -0700735 name, ftype, str, offset := t.Field(i);
Rob Pike50d06952008-12-09 15:41:21 -0800736 addr_uint := uintptr(addr) + uintptr(offset);
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800737 v.field[i] = newValueAddr(ftype, Addr(addr_uint));
Rob Pikefac3dfe2008-10-22 11:02:56 -0700738 }
739 v.typ = typ;
740 return v;
741}
742
743// -- Interface
744
Rob Pike3bc6fd62009-03-09 17:47:15 -0700745// InterfaceValue represents an interface value.
Russ Cox839a6842009-01-20 14:40:40 -0800746type InterfaceValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800747 Value;
Rob Pike3bc6fd62009-03-09 17:47:15 -0700748 Get() interface {}; // Get the underlying interface{} value.
Russ Coxac6ebfd2009-04-06 21:28:04 -0700749 Value() Value;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700750}
751
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800752type interfaceValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800753 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700754}
755
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800756func (v *interfaceValueStruct) Get() interface{} {
Russ Coxbe2edb52009-03-03 08:39:12 -0800757 return *(*interface{})(v.addr)
Russ Cox387df5e2008-11-24 14:51:33 -0800758}
759
Russ Coxac6ebfd2009-04-06 21:28:04 -0700760func (v *interfaceValueStruct) Value() Value {
761 i := v.Get();
762 if i == nil {
763 return nil;
764 }
765 return NewValue(i);
766}
767
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800768func interfaceCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800769 return &interfaceValueStruct{ commonValue{InterfaceKind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700770}
771
Rob Pikefac3dfe2008-10-22 11:02:56 -0700772// -- Func
773
Rob Pike3bc6fd62009-03-09 17:47:15 -0700774
775// FuncValue represents a func value.
776// Its implementation is incomplete.
Russ Cox839a6842009-01-20 14:40:40 -0800777type FuncValue interface {
Russ Coxdfad8ea2009-02-16 16:37:49 -0800778 Value;
Rob Pikefac3dfe2008-10-22 11:02:56 -0700779}
780
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800781type funcValueStruct struct {
Russ Coxb54133d2009-01-15 16:16:42 -0800782 commonValue
Rob Pikefac3dfe2008-10-22 11:02:56 -0700783}
784
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800785func funcCreator(typ Type, addr Addr) Value {
Russ Coxbe2edb52009-03-03 08:39:12 -0800786 return &funcValueStruct{ commonValue{FuncKind, typ, addr} }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700787}
788
Russ Coxbe2edb52009-03-03 08:39:12 -0800789var creator = map[int] creatorFn {
Russ Cox4cf77112009-01-30 14:39:31 -0800790 MissingKind : missingCreator,
791 IntKind : intCreator,
792 Int8Kind : int8Creator,
793 Int16Kind : int16Creator,
794 Int32Kind : int32Creator,
795 Int64Kind : int64Creator,
796 UintKind : uintCreator,
797 Uint8Kind : uint8Creator,
798 Uint16Kind : uint16Creator,
799 Uint32Kind : uint32Creator,
800 Uint64Kind : uint64Creator,
801 UintptrKind : uintptrCreator,
802 FloatKind : floatCreator,
803 Float32Kind : float32Creator,
804 Float64Kind : float64Creator,
Russ Cox4cf77112009-01-30 14:39:31 -0800805 StringKind : stringCreator,
806 BoolKind : boolCreator,
807 PtrKind : ptrCreator,
808 ArrayKind : arrayCreator,
809 MapKind : mapCreator,
810 ChanKind : chanCreator,
811 StructKind : structCreator,
812 InterfaceKind : interfaceCreator,
813 FuncKind : funcCreator,
Russ Coxbe2edb52009-03-03 08:39:12 -0800814}
Rob Pikefac3dfe2008-10-22 11:02:56 -0700815
Russ Cox484ba932009-01-09 00:17:46 -0800816var typecache = make(map[string] Type);
Rob Pike9ba97ca2008-12-11 14:41:12 -0800817
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800818func newValueAddr(typ Type, addr Addr) Value {
Rob Pikefac3dfe2008-10-22 11:02:56 -0700819 c, ok := creator[typ.Kind()];
820 if !ok {
821 panicln("no creator for type" , typ.Kind());
822 }
823 return c(typ, addr);
824}
825
Rob Pike3bc6fd62009-03-09 17:47:15 -0700826// NewInitValue creates a new, zero-initialized Value for the specified Type.
Russ Cox839a6842009-01-20 14:40:40 -0800827func NewInitValue(typ Type) Value {
Rob Pike34b88732008-10-22 16:48:17 -0700828 // Some values cannot be made this way.
829 switch typ.Kind() {
Russ Coxba882f92008-12-19 03:06:19 -0800830 case FuncKind: // must be pointers, at least for now (TODO?)
Rob Pike34b88732008-10-22 16:48:17 -0700831 return nil;
832 case ArrayKind:
Rob Pike9a7332f2009-01-23 15:56:04 -0800833 if typ.(ArrayType).IsSlice() {
Rob Pike34b88732008-10-22 16:48:17 -0700834 return nil
835 }
836 }
Rob Pikefac3dfe2008-10-22 11:02:56 -0700837 size := typ.Size();
838 if size == 0 {
839 size = 1;
840 }
Russ Cox55645042009-01-06 15:19:02 -0800841 data := make([]uint8, size);
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800842 return newValueAddr(typ, Addr(&data[0]));
Rob Pikefac3dfe2008-10-22 11:02:56 -0700843}
844
Rob Pike3bc6fd62009-03-09 17:47:15 -0700845// NewSliceValue creates a new, zero-initialized slice value (ArrayValue) for the specified
846// slice type (ArrayType), length, and capacity.
Rob Pike9a7332f2009-01-23 15:56:04 -0800847func NewSliceValue(typ ArrayType, len, cap int) ArrayValue {
848 if !typ.IsSlice() {
Russ Coxe4f4ab02008-11-13 13:42:59 -0800849 return nil
850 }
851
Rob Pike9a7332f2009-01-23 15:56:04 -0800852 array := new(runtimeSlice);
Russ Coxe4f4ab02008-11-13 13:42:59 -0800853 size := typ.Elem().Size() * cap;
854 if size == 0 {
855 size = 1;
856 }
Russ Cox55645042009-01-06 15:19:02 -0800857 data := make([]uint8, size);
Rob Pike50d06952008-12-09 15:41:21 -0800858 array.data = Addr(&data[0]);
Russ Coxe4f4ab02008-11-13 13:42:59 -0800859 array.len = uint32(len);
860 array.cap = uint32(cap);
861
Russ Cox49e20872009-02-11 17:55:16 -0800862 return newValueAddr(typ, Addr(array)).(ArrayValue);
Russ Coxe4f4ab02008-11-13 13:42:59 -0800863}
864
Rob Pike9a7332f2009-01-23 15:56:04 -0800865// Works on both slices and arrays
Rob Pikec5f99cc2009-01-21 15:45:54 -0800866func copyArray(dst ArrayValue, src ArrayValue, n int) {
Russ Coxd0e30cd2008-12-10 15:55:59 -0800867 if n == 0 {
868 return
869 }
870 dt := dst.Type().(ArrayType).Elem();
871 st := src.Type().(ArrayType).Elem();
Rob Pikeed2ac9b2009-01-16 12:48:07 -0800872 if !equalType(dt, st) {
Russ Coxd0e30cd2008-12-10 15:55:59 -0800873 panicln("reflect: incompatible types in CopyArray:",
874 dt.String(), st.String());
875 }
876 if n < 0 || n > dst.Len() || n > src.Len() {
877 panicln("reflect: CopyArray: invalid count", n);
878 }
879 dstp := uintptr(dst.Elem(0).Addr());
880 srcp := uintptr(src.Elem(0).Addr());
881 end := uintptr(n)*uintptr(dt.Size());
Russ Coxd47d8882008-12-18 22:37:22 -0800882 if end % 8 == 0 {
Russ Coxd0e30cd2008-12-10 15:55:59 -0800883 for i := uintptr(0); i < end; i += 8{
884 di := Addr(dstp + i);
885 si := Addr(srcp + i);
Russ Coxbe2edb52009-03-03 08:39:12 -0800886 *(*uint64)(di) = *(*uint64)(si);
Russ Coxd0e30cd2008-12-10 15:55:59 -0800887 }
888 } else {
889 for i := uintptr(0); i < end; i++ {
890 di := Addr(dstp + i);
891 si := Addr(srcp + i);
Russ Coxbe2edb52009-03-03 08:39:12 -0800892 *(*byte)(di) = *(*byte)(si);
Russ Coxd0e30cd2008-12-10 15:55:59 -0800893 }
894 }
895}
896
Rob Pike3bc6fd62009-03-09 17:47:15 -0700897// NewValue creates a new Value from the interface{} object provided.
Russ Cox839a6842009-01-20 14:40:40 -0800898func NewValue(e interface {}) Value {
Russ Cox36096242009-01-16 14:58:14 -0800899 value, typestring, indir := sys.Reflect(e);
Russ Cox484ba932009-01-09 00:17:46 -0800900 typ, ok := typecache[typestring];
Rob Pike842e1a92008-11-10 14:53:40 -0800901 if !ok {
Russ Cox484ba932009-01-09 00:17:46 -0800902 typ = ParseTypeString("", typestring);
903 typecache[typestring] = typ;
Rob Pike842e1a92008-11-10 14:53:40 -0800904 }
Russ Cox484ba932009-01-09 00:17:46 -0800905
906 if indir {
907 // Content of interface is a pointer.
Russ Coxbe2edb52009-03-03 08:39:12 -0800908 return newValueAddr(typ, Addr(uintptr(value)));
Russ Cox484ba932009-01-09 00:17:46 -0800909 }
910
911 // Content of interface is a value;
912 // need a permanent copy to take its address.
Russ Cox55645042009-01-06 15:19:02 -0800913 ap := new(uint64);
Rob Pike34b88732008-10-22 16:48:17 -0700914 *ap = value;
Russ Coxbe2edb52009-03-03 08:39:12 -0800915 return newValueAddr(typ, Addr(ap));
Rob Pikefac3dfe2008-10-22 11:02:56 -0700916}
Rob Pike3a7df4d2009-04-08 23:33:31 -0700917
918// Indirect indirects one level through a value, if it is a pointer.
919// If not a pointer, the value is returned unchanged.
920// Useful when walking arbitrary data structures.
921func Indirect(v Value) Value {
922 if v.Kind() == PtrKind {
923 p := v.(PtrValue);
924 if p.Get() == nil {
925 return nil
926 }
927 v = p.Sub()
928 }
929 return v
930}