1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
|
package otto
import (
"fmt"
"math"
"reflect"
"strconv"
"unicode/utf16"
)
type _valueKind int
const (
valueUndefined _valueKind = iota
valueNull
valueNumber
valueString
valueBoolean
valueObject
// These are invalid outside of the runtime
valueEmpty
valueResult
valueReference
)
// Value is the representation of a JavaScript value.
type Value struct {
kind _valueKind
value interface{}
}
func (value Value) safe() bool {
return value.kind < valueEmpty
}
var (
emptyValue = Value{kind: valueEmpty}
nullValue = Value{kind: valueNull}
falseValue = Value{kind: valueBoolean, value: false}
trueValue = Value{kind: valueBoolean, value: true}
)
// ToValue will convert an interface{} value to a value digestible by otto/JavaScript
//
// This function will not work for advanced types (struct, map, slice/array, etc.) and
// you should use Otto.ToValue instead.
func ToValue(value interface{}) (Value, error) {
result := Value{}
err := catchPanic(func() {
result = toValue(value)
})
return result, err
}
func (value Value) isEmpty() bool {
return value.kind == valueEmpty
}
// Undefined
// UndefinedValue will return a Value representing undefined.
func UndefinedValue() Value {
return Value{}
}
// IsDefined will return false if the value is undefined, and true otherwise.
func (value Value) IsDefined() bool {
return value.kind != valueUndefined
}
// IsUndefined will return true if the value is undefined, and false otherwise.
func (value Value) IsUndefined() bool {
return value.kind == valueUndefined
}
// NullValue will return a Value representing null.
func NullValue() Value {
return Value{kind: valueNull}
}
// IsNull will return true if the value is null, and false otherwise.
func (value Value) IsNull() bool {
return value.kind == valueNull
}
// ---
func (value Value) isCallable() bool {
switch value := value.value.(type) {
case *_object:
return value.isCall()
}
return false
}
// Call the value as a function with the given this value and argument list and
// return the result of invocation. It is essentially equivalent to:
//
// value.apply(thisValue, argumentList)
//
// An undefined value and an error will result if:
//
// 1. There is an error during conversion of the argument list
// 2. The value is not actually a function
// 3. An (uncaught) exception is thrown
//
func (value Value) Call(this Value, argumentList ...interface{}) (Value, error) {
result := Value{}
err := catchPanic(func() {
// FIXME
result = value.call(nil, this, argumentList...)
})
if !value.safe() {
value = Value{}
}
return result, err
}
func (value Value) call(rt *_runtime, this Value, argumentList ...interface{}) Value {
switch function := value.value.(type) {
case *_object:
return function.call(this, function.runtime.toValueArray(argumentList...), false, nativeFrame)
}
if rt == nil {
panic("FIXME TypeError")
}
panic(rt.panicTypeError())
}
func (value Value) constructSafe(rt *_runtime, this Value, argumentList ...interface{}) (Value, error) {
result := Value{}
err := catchPanic(func() {
result = value.construct(rt, this, argumentList...)
})
return result, err
}
func (value Value) construct(rt *_runtime, this Value, argumentList ...interface{}) Value {
switch fn := value.value.(type) {
case *_object:
return fn.construct(fn.runtime.toValueArray(argumentList...))
}
if rt == nil {
panic("FIXME TypeError")
}
panic(rt.panicTypeError())
}
// IsPrimitive will return true if value is a primitive (any kind of primitive).
func (value Value) IsPrimitive() bool {
return !value.IsObject()
}
// IsBoolean will return true if value is a boolean (primitive).
func (value Value) IsBoolean() bool {
return value.kind == valueBoolean
}
// IsNumber will return true if value is a number (primitive).
func (value Value) IsNumber() bool {
return value.kind == valueNumber
}
// IsNaN will return true if value is NaN (or would convert to NaN).
func (value Value) IsNaN() bool {
switch value := value.value.(type) {
case float64:
return math.IsNaN(value)
case float32:
return math.IsNaN(float64(value))
case int, int8, int32, int64:
return false
case uint, uint8, uint32, uint64:
return false
}
return math.IsNaN(value.float64())
}
// IsString will return true if value is a string (primitive).
func (value Value) IsString() bool {
return value.kind == valueString
}
// IsObject will return true if value is an object.
func (value Value) IsObject() bool {
return value.kind == valueObject
}
// IsFunction will return true if value is a function.
func (value Value) IsFunction() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "Function"
}
// Class will return the class string of the value or the empty string if value is not an object.
//
// The return value will (generally) be one of:
//
// Object
// Function
// Array
// String
// Number
// Boolean
// Date
// RegExp
//
func (value Value) Class() string {
if value.kind != valueObject {
return ""
}
return value.value.(*_object).class
}
func (value Value) isArray() bool {
if value.kind != valueObject {
return false
}
return isArray(value.value.(*_object))
}
func (value Value) isStringObject() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "String"
}
func (value Value) isBooleanObject() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "Boolean"
}
func (value Value) isNumberObject() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "Number"
}
func (value Value) isDate() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "Date"
}
func (value Value) isRegExp() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "RegExp"
}
func (value Value) isError() bool {
if value.kind != valueObject {
return false
}
return value.value.(*_object).class == "Error"
}
// ---
func toValue_reflectValuePanic(value interface{}, kind reflect.Kind) {
// FIXME?
switch kind {
case reflect.Struct:
panic(newError(nil, "TypeError", 0, "invalid value (struct): missing runtime: %v (%T)", value, value))
case reflect.Map:
panic(newError(nil, "TypeError", 0, "invalid value (map): missing runtime: %v (%T)", value, value))
case reflect.Slice:
panic(newError(nil, "TypeError", 0, "invalid value (slice): missing runtime: %v (%T)", value, value))
}
}
func toValue(value interface{}) Value {
switch value := value.(type) {
case Value:
return value
case bool:
return Value{valueBoolean, value}
case int:
return Value{valueNumber, value}
case int8:
return Value{valueNumber, value}
case int16:
return Value{valueNumber, value}
case int32:
return Value{valueNumber, value}
case int64:
return Value{valueNumber, value}
case uint:
return Value{valueNumber, value}
case uint8:
return Value{valueNumber, value}
case uint16:
return Value{valueNumber, value}
case uint32:
return Value{valueNumber, value}
case uint64:
return Value{valueNumber, value}
case float32:
return Value{valueNumber, float64(value)}
case float64:
return Value{valueNumber, value}
case []uint16:
return Value{valueString, value}
case string:
return Value{valueString, value}
// A rune is actually an int32, which is handled above
case *_object:
return Value{valueObject, value}
case *Object:
return Value{valueObject, value.object}
case Object:
return Value{valueObject, value.object}
case _reference: // reference is an interface (already a pointer)
return Value{valueReference, value}
case _result:
return Value{valueResult, value}
case nil:
// TODO Ugh.
return Value{}
case reflect.Value:
for value.Kind() == reflect.Ptr {
// We were given a pointer, so we'll drill down until we get a non-pointer
//
// These semantics might change if we want to start supporting pointers to values transparently
// (It would be best not to depend on this behavior)
// FIXME: UNDEFINED
if value.IsNil() {
return Value{}
}
value = value.Elem()
}
switch value.Kind() {
case reflect.Bool:
return Value{valueBoolean, bool(value.Bool())}
case reflect.Int:
return Value{valueNumber, int(value.Int())}
case reflect.Int8:
return Value{valueNumber, int8(value.Int())}
case reflect.Int16:
return Value{valueNumber, int16(value.Int())}
case reflect.Int32:
return Value{valueNumber, int32(value.Int())}
case reflect.Int64:
return Value{valueNumber, int64(value.Int())}
case reflect.Uint:
return Value{valueNumber, uint(value.Uint())}
case reflect.Uint8:
return Value{valueNumber, uint8(value.Uint())}
case reflect.Uint16:
return Value{valueNumber, uint16(value.Uint())}
case reflect.Uint32:
return Value{valueNumber, uint32(value.Uint())}
case reflect.Uint64:
return Value{valueNumber, uint64(value.Uint())}
case reflect.Float32:
return Value{valueNumber, float32(value.Float())}
case reflect.Float64:
return Value{valueNumber, float64(value.Float())}
case reflect.String:
return Value{valueString, string(value.String())}
default:
toValue_reflectValuePanic(value.Interface(), value.Kind())
}
default:
return toValue(reflect.ValueOf(value))
}
// FIXME?
panic(newError(nil, "TypeError", 0, "invalid value: %v (%T)", value, value))
}
// String will return the value as a string.
//
// This method will make return the empty string if there is an error.
func (value Value) String() string {
result := ""
catchPanic(func() {
result = value.string()
})
return result
}
// ToBoolean will convert the value to a boolean (bool).
//
// ToValue(0).ToBoolean() => false
// ToValue("").ToBoolean() => false
// ToValue(true).ToBoolean() => true
// ToValue(1).ToBoolean() => true
// ToValue("Nothing happens").ToBoolean() => true
//
// If there is an error during the conversion process (like an uncaught exception), then the result will be false and an error.
func (value Value) ToBoolean() (bool, error) {
result := false
err := catchPanic(func() {
result = value.bool()
})
return result, err
}
func (value Value) numberValue() Value {
if value.kind == valueNumber {
return value
}
return Value{valueNumber, value.float64()}
}
// ToFloat will convert the value to a number (float64).
//
// ToValue(0).ToFloat() => 0.
// ToValue(1.1).ToFloat() => 1.1
// ToValue("11").ToFloat() => 11.
//
// If there is an error during the conversion process (like an uncaught exception), then the result will be 0 and an error.
func (value Value) ToFloat() (float64, error) {
result := float64(0)
err := catchPanic(func() {
result = value.float64()
})
return result, err
}
// ToInteger will convert the value to a number (int64).
//
// ToValue(0).ToInteger() => 0
// ToValue(1.1).ToInteger() => 1
// ToValue("11").ToInteger() => 11
//
// If there is an error during the conversion process (like an uncaught exception), then the result will be 0 and an error.
func (value Value) ToInteger() (int64, error) {
result := int64(0)
err := catchPanic(func() {
result = value.number().int64
})
return result, err
}
// ToString will convert the value to a string (string).
//
// ToValue(0).ToString() => "0"
// ToValue(false).ToString() => "false"
// ToValue(1.1).ToString() => "1.1"
// ToValue("11").ToString() => "11"
// ToValue('Nothing happens.').ToString() => "Nothing happens."
//
// If there is an error during the conversion process (like an uncaught exception), then the result will be the empty string ("") and an error.
func (value Value) ToString() (string, error) {
result := ""
err := catchPanic(func() {
result = value.string()
})
return result, err
}
func (value Value) _object() *_object {
switch value := value.value.(type) {
case *_object:
return value
}
return nil
}
// Object will return the object of the value, or nil if value is not an object.
//
// This method will not do any implicit conversion. For example, calling this method on a string primitive value will not return a String object.
func (value Value) Object() *Object {
switch object := value.value.(type) {
case *_object:
return _newObject(object, value)
}
return nil
}
func (value Value) reference() _reference {
switch value := value.value.(type) {
case _reference:
return value
}
return nil
}
func (value Value) resolve() Value {
switch value := value.value.(type) {
case _reference:
return value.getValue()
}
return value
}
var (
__NaN__ float64 = math.NaN()
__PositiveInfinity__ float64 = math.Inf(+1)
__NegativeInfinity__ float64 = math.Inf(-1)
__PositiveZero__ float64 = 0
__NegativeZero__ float64 = math.Float64frombits(0 | (1 << 63))
)
func positiveInfinity() float64 {
return __PositiveInfinity__
}
func negativeInfinity() float64 {
return __NegativeInfinity__
}
func positiveZero() float64 {
return __PositiveZero__
}
func negativeZero() float64 {
return __NegativeZero__
}
// NaNValue will return a value representing NaN.
//
// It is equivalent to:
//
// ToValue(math.NaN())
//
func NaNValue() Value {
return Value{valueNumber, __NaN__}
}
func positiveInfinityValue() Value {
return Value{valueNumber, __PositiveInfinity__}
}
func negativeInfinityValue() Value {
return Value{valueNumber, __NegativeInfinity__}
}
func positiveZeroValue() Value {
return Value{valueNumber, __PositiveZero__}
}
func negativeZeroValue() Value {
return Value{valueNumber, __NegativeZero__}
}
// TrueValue will return a value representing true.
//
// It is equivalent to:
//
// ToValue(true)
//
func TrueValue() Value {
return Value{valueBoolean, true}
}
// FalseValue will return a value representing false.
//
// It is equivalent to:
//
// ToValue(false)
//
func FalseValue() Value {
return Value{valueBoolean, false}
}
func sameValue(x Value, y Value) bool {
if x.kind != y.kind {
return false
}
result := false
switch x.kind {
case valueUndefined, valueNull:
result = true
case valueNumber:
x := x.float64()
y := y.float64()
if math.IsNaN(x) && math.IsNaN(y) {
result = true
} else {
result = x == y
if result && x == 0 {
// Since +0 != -0
result = math.Signbit(x) == math.Signbit(y)
}
}
case valueString:
result = x.string() == y.string()
case valueBoolean:
result = x.bool() == y.bool()
case valueObject:
result = x._object() == y._object()
default:
panic(hereBeDragons())
}
return result
}
func strictEqualityComparison(x Value, y Value) bool {
if x.kind != y.kind {
return false
}
result := false
switch x.kind {
case valueUndefined, valueNull:
result = true
case valueNumber:
x := x.float64()
y := y.float64()
if math.IsNaN(x) && math.IsNaN(y) {
result = false
} else {
result = x == y
}
case valueString:
result = x.string() == y.string()
case valueBoolean:
result = x.bool() == y.bool()
case valueObject:
result = x._object() == y._object()
default:
panic(hereBeDragons())
}
return result
}
// Export will attempt to convert the value to a Go representation
// and return it via an interface{} kind.
//
// Export returns an error, but it will always be nil. It is present
// for backwards compatibility.
//
// If a reasonable conversion is not possible, then the original
// value is returned.
//
// undefined -> nil (FIXME?: Should be Value{})
// null -> nil
// boolean -> bool
// number -> A number type (int, float32, uint64, ...)
// string -> string
// Array -> []interface{}
// Object -> map[string]interface{}
//
func (self Value) Export() (interface{}, error) {
return self.export(), nil
}
func (self Value) export() interface{} {
switch self.kind {
case valueUndefined:
return nil
case valueNull:
return nil
case valueNumber, valueBoolean:
return self.value
case valueString:
switch value := self.value.(type) {
case string:
return value
case []uint16:
return string(utf16.Decode(value))
}
case valueObject:
object := self._object()
switch value := object.value.(type) {
case *_goStructObject:
return value.value.Interface()
case *_goMapObject:
return value.value.Interface()
case *_goArrayObject:
return value.value.Interface()
case *_goSliceObject:
return value.value.Interface()
}
if object.class == "Array" {
result := make([]interface{}, 0)
lengthValue := object.get("length")
length := lengthValue.value.(uint32)
kind := reflect.Invalid
state := 0
var t reflect.Type
for index := uint32(0); index < length; index += 1 {
name := strconv.FormatInt(int64(index), 10)
if !object.hasProperty(name) {
continue
}
value := object.get(name).export()
t = reflect.TypeOf(value)
var k reflect.Kind
if t != nil {
k = t.Kind()
}
if state == 0 {
kind = k
state = 1
} else if state == 1 && kind != k {
state = 2
}
result = append(result, value)
}
if state != 1 || kind == reflect.Interface || t == nil {
// No common type
return result
}
// Convert to the common type
val := reflect.MakeSlice(reflect.SliceOf(t), len(result), len(result))
for i, v := range result {
val.Index(i).Set(reflect.ValueOf(v))
}
return val.Interface()
} else {
result := make(map[string]interface{})
// TODO Should we export everything? Or just what is enumerable?
object.enumerate(false, func(name string) bool {
value := object.get(name)
if value.IsDefined() {
result[name] = value.export()
}
return true
})
return result
}
}
if self.safe() {
return self
}
return Value{}
}
func (self Value) evaluateBreakContinue(labels []string) _resultKind {
result := self.value.(_result)
if result.kind == resultBreak || result.kind == resultContinue {
for _, label := range labels {
if label == result.target {
return result.kind
}
}
}
return resultReturn
}
func (self Value) evaluateBreak(labels []string) _resultKind {
result := self.value.(_result)
if result.kind == resultBreak {
for _, label := range labels {
if label == result.target {
return result.kind
}
}
}
return resultReturn
}
func (self Value) exportNative() interface{} {
switch self.kind {
case valueUndefined:
return self
case valueNull:
return nil
case valueNumber, valueBoolean:
return self.value
case valueString:
switch value := self.value.(type) {
case string:
return value
case []uint16:
return string(utf16.Decode(value))
}
case valueObject:
object := self._object()
switch value := object.value.(type) {
case *_goStructObject:
return value.value.Interface()
case *_goMapObject:
return value.value.Interface()
case *_goArrayObject:
return value.value.Interface()
case *_goSliceObject:
return value.value.Interface()
}
}
return self
}
// Make a best effort to return a reflect.Value corresponding to reflect.Kind, but
// fallback to just returning the Go value we have handy.
func (value Value) toReflectValue(kind reflect.Kind) (reflect.Value, error) {
if kind != reflect.Float32 && kind != reflect.Float64 && kind != reflect.Interface {
switch value := value.value.(type) {
case float32:
_, frac := math.Modf(float64(value))
if frac > 0 {
return reflect.Value{}, fmt.Errorf("RangeError: %v to reflect.Kind: %v", value, kind)
}
case float64:
_, frac := math.Modf(value)
if frac > 0 {
return reflect.Value{}, fmt.Errorf("RangeError: %v to reflect.Kind: %v", value, kind)
}
}
}
switch kind {
case reflect.Bool: // Bool
return reflect.ValueOf(value.bool()), nil
case reflect.Int: // Int
// We convert to float64 here because converting to int64 will not tell us
// if a value is outside the range of int64
tmp := toIntegerFloat(value)
if tmp < float_minInt || tmp > float_maxInt {
return reflect.Value{}, fmt.Errorf("RangeError: %f (%v) to int", tmp, value)
} else {
return reflect.ValueOf(int(tmp)), nil
}
case reflect.Int8: // Int8
tmp := value.number().int64
if tmp < int64_minInt8 || tmp > int64_maxInt8 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to int8", tmp, value)
} else {
return reflect.ValueOf(int8(tmp)), nil
}
case reflect.Int16: // Int16
tmp := value.number().int64
if tmp < int64_minInt16 || tmp > int64_maxInt16 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to int16", tmp, value)
} else {
return reflect.ValueOf(int16(tmp)), nil
}
case reflect.Int32: // Int32
tmp := value.number().int64
if tmp < int64_minInt32 || tmp > int64_maxInt32 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to int32", tmp, value)
} else {
return reflect.ValueOf(int32(tmp)), nil
}
case reflect.Int64: // Int64
// We convert to float64 here because converting to int64 will not tell us
// if a value is outside the range of int64
tmp := toIntegerFloat(value)
if tmp < float_minInt64 || tmp > float_maxInt64 {
return reflect.Value{}, fmt.Errorf("RangeError: %f (%v) to int", tmp, value)
} else {
return reflect.ValueOf(int64(tmp)), nil
}
case reflect.Uint: // Uint
// We convert to float64 here because converting to int64 will not tell us
// if a value is outside the range of uint
tmp := toIntegerFloat(value)
if tmp < 0 || tmp > float_maxUint {
return reflect.Value{}, fmt.Errorf("RangeError: %f (%v) to uint", tmp, value)
} else {
return reflect.ValueOf(uint(tmp)), nil
}
case reflect.Uint8: // Uint8
tmp := value.number().int64
if tmp < 0 || tmp > int64_maxUint8 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to uint8", tmp, value)
} else {
return reflect.ValueOf(uint8(tmp)), nil
}
case reflect.Uint16: // Uint16
tmp := value.number().int64
if tmp < 0 || tmp > int64_maxUint16 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to uint16", tmp, value)
} else {
return reflect.ValueOf(uint16(tmp)), nil
}
case reflect.Uint32: // Uint32
tmp := value.number().int64
if tmp < 0 || tmp > int64_maxUint32 {
return reflect.Value{}, fmt.Errorf("RangeError: %d (%v) to uint32", tmp, value)
} else {
return reflect.ValueOf(uint32(tmp)), nil
}
case reflect.Uint64: // Uint64
// We convert to float64 here because converting to int64 will not tell us
// if a value is outside the range of uint64
tmp := toIntegerFloat(value)
if tmp < 0 || tmp > float_maxUint64 {
return reflect.Value{}, fmt.Errorf("RangeError: %f (%v) to uint64", tmp, value)
} else {
return reflect.ValueOf(uint64(tmp)), nil
}
case reflect.Float32: // Float32
tmp := value.float64()
tmp1 := tmp
if 0 > tmp1 {
tmp1 = -tmp1
}
if tmp1 > 0 && (tmp1 < math.SmallestNonzeroFloat32 || tmp1 > math.MaxFloat32) {
return reflect.Value{}, fmt.Errorf("RangeError: %f (%v) to float32", tmp, value)
} else {
return reflect.ValueOf(float32(tmp)), nil
}
case reflect.Float64: // Float64
value := value.float64()
return reflect.ValueOf(float64(value)), nil
case reflect.String: // String
return reflect.ValueOf(value.string()), nil
case reflect.Invalid: // Invalid
case reflect.Complex64: // FIXME? Complex64
case reflect.Complex128: // FIXME? Complex128
case reflect.Chan: // FIXME? Chan
case reflect.Func: // FIXME? Func
case reflect.Ptr: // FIXME? Ptr
case reflect.UnsafePointer: // FIXME? UnsafePointer
default:
switch value.kind {
case valueObject:
object := value._object()
switch vl := object.value.(type) {
case *_goStructObject: // Struct
return reflect.ValueOf(vl.value.Interface()), nil
case *_goMapObject: // Map
return reflect.ValueOf(vl.value.Interface()), nil
case *_goArrayObject: // Array
return reflect.ValueOf(vl.value.Interface()), nil
case *_goSliceObject: // Slice
return reflect.ValueOf(vl.value.Interface()), nil
}
return reflect.ValueOf(value.exportNative()), nil
case valueEmpty, valueResult, valueReference:
// These are invalid, and should panic
default:
return reflect.ValueOf(value.value), nil
}
}
// FIXME Should this end up as a TypeError?
panic(fmt.Errorf("invalid conversion of %v (%v) to reflect.Kind: %v", value.kind, value, kind))
}
func stringToReflectValue(value string, kind reflect.Kind) (reflect.Value, error) {
switch kind {
case reflect.Bool:
value, err := strconv.ParseBool(value)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(value), nil
case reflect.Int:
value, err := strconv.ParseInt(value, 0, 0)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(int(value)), nil
case reflect.Int8:
value, err := strconv.ParseInt(value, 0, 8)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(int8(value)), nil
case reflect.Int16:
value, err := strconv.ParseInt(value, 0, 16)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(int16(value)), nil
case reflect.Int32:
value, err := strconv.ParseInt(value, 0, 32)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(int32(value)), nil
case reflect.Int64:
value, err := strconv.ParseInt(value, 0, 64)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(int64(value)), nil
case reflect.Uint:
value, err := strconv.ParseUint(value, 0, 0)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(uint(value)), nil
case reflect.Uint8:
value, err := strconv.ParseUint(value, 0, 8)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(uint8(value)), nil
case reflect.Uint16:
value, err := strconv.ParseUint(value, 0, 16)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(uint16(value)), nil
case reflect.Uint32:
value, err := strconv.ParseUint(value, 0, 32)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(uint32(value)), nil
case reflect.Uint64:
value, err := strconv.ParseUint(value, 0, 64)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(uint64(value)), nil
case reflect.Float32:
value, err := strconv.ParseFloat(value, 32)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(float32(value)), nil
case reflect.Float64:
value, err := strconv.ParseFloat(value, 64)
if err != nil {
return reflect.Value{}, err
}
return reflect.ValueOf(float64(value)), nil
case reflect.String:
return reflect.ValueOf(value), nil
}
// FIXME This should end up as a TypeError?
panic(fmt.Errorf("invalid conversion of %q to reflect.Kind: %v", value, kind))
}
|