Masaaki Goshima
16309e2635
Refactor int encoding
2020-12-20 22:59:23 +09:00
Masaaki Goshima
7083274627
Fix initialize seenPtr
2020-12-20 19:08:20 +09:00
Masaaki Goshima
01b439e41e
Refactor buffering of encoder for improvement performance
2020-12-20 04:02:03 +09:00
Masaaki Goshima
35395bba60
Keep unsafe.Pointer reference for handling of opInterface
2020-11-18 17:05:27 +09:00
Masaaki Goshima
9802f67a9b
Refactor unsupported value error for float64
2020-11-17 15:14:07 +09:00
Masaaki Goshima
ea96cc7811
Refactor cast manipulation from uintptr
2020-11-17 15:09:06 +09:00
Masaaki Goshima
c79cf6a3f5
Refactor error of marshaler
2020-11-17 15:08:12 +09:00
Masaaki Goshima
69ea157270
Refactor unsupported value for float64
2020-11-17 15:06:05 +09:00
Koichi Shiraishi
96528cbae4
Fix resolve conflict to #55
2020-11-16 23:39:33 +09:00
Cuong Manh Le
6b1d701387
Fix all invalid usages of unsafe.Pointer
...
Most of the invalid usages due to the conversion from uintptr to
unsafe.Pointer. In general, unsafe.Pointer(p) where p of type uintptr is
considered unsafe.
To fix that, use &p instead of p, then introduce another dereference.
Example, the invalid usage:
*(*int)(unsafe.Pointer(p)) = int(v)
wil become:
**(**int)(unsafe.Pointer(&p)) = int(v)
Closes #53
2020-11-16 20:37:12 +07:00
Cuong Manh Le
e58b1eabaf
Remove all usages of reflect.SliceHeader
...
There're some problem with current usage of reflect.SliceHeader.
First, it violates the unsafe pointer conversion (rule 6th), that said,
reflect.SliceHeader must not used as plain struct.
Second, the lowest version that go-json supports, go1.12, reflect
package did not use SliceHeader in typedslicecopy, but use the safety
version. There's no reason that go-json continue using them.
See:
- https://golang.org/pkg/unsafe/#Pointer
- https://github.com/golang/go/blob/release-branch.go1.12/src/reflect/value.go#L2702
2020-11-16 20:33:49 +07:00
Masaaki Goshima
3e1a1ac1ad
Fix recursive anonymous field
2020-11-16 21:28:33 +09:00
Masaaki Goshima
4994bc5d04
Fix handling of comma as delimiter
...
Conflicts:
encode_vm.go
2020-11-16 19:16:45 +09:00
Masaaki Goshima
9351afdb88
Fix pointer fields
2020-09-17 21:50:27 +09:00
Masaaki Goshima
d76012422a
Fix stream encoding
2020-09-17 01:26:39 +09:00
Masaaki Goshima
2b5effab31
Remove unused operation ( RootMap )
2020-09-16 18:49:47 +09:00
Masaaki Goshima
aaea586778
Enable switch map processing at runtime
2020-09-16 18:15:47 +09:00
Masaaki Goshima
898d58b8b8
Supported sorted map
2020-09-16 14:51:37 +09:00
Masaaki Goshima
92fb386db5
Optimize encoding for byteSlice type
2020-09-15 23:22:35 +09:00
Masaaki Goshima
6cac23acc3
Remove unused condition
2020-09-15 20:48:32 +09:00
Masaaki Goshima
e9e9aa8874
Use next code index for recursive call
2020-09-15 20:48:16 +09:00
Masaaki Goshima
acee1ef8ba
Refactor errUnsupportedValue
2020-09-15 20:48:02 +09:00
Masaaki Goshima
02e04238a2
Add keepRefs field
2020-09-04 20:28:27 +09:00
Masaaki Goshima
3e4e83bf34
Save iter value
2020-09-04 19:33:46 +09:00
Masaaki Goshima
f297c99af1
Remove unused arguments
2020-09-04 13:53:25 +09:00
Masaaki Goshima
3a3122c286
Add opStructFieldRecursiveEnd
2020-09-04 13:48:21 +09:00
Masaaki Goshima
efcf2dec06
Refactor
2020-09-03 22:05:46 +09:00
Masaaki Goshima
34b662b98e
Add InterfaceEnd operation
2020-09-03 15:36:11 +09:00
Masaaki Goshima
3aa921e884
Fix encoding engine
2020-09-01 22:26:26 +09:00
Masaaki Goshima
72bc598dd4
Remove state variables from opcode
2020-08-31 21:59:22 +09:00
Masaaki Goshima
a6276c4d8e
Optimize opcode.idx and seenPtr
2020-08-31 03:14:37 +09:00
Masaaki Goshima
70f8f01ef3
Use encodeRuntimeContext.ptrs instead of opcode.ptr
2020-08-30 23:58:58 +09:00
Masaaki Goshima
cb194687a0
Add encodeRuntimeContext
2020-08-30 17:52:59 +09:00
Masaaki Goshima
e508ad41ba
Refactor indent parameter
2020-08-29 15:35:03 +09:00
Masaaki Goshima
7dcadbd6ce
Refactor with encodeCompileContext
2020-08-29 15:11:31 +09:00
Masaaki Goshima
a75d05a74f
Fix unnecessary pointer assignment
2020-08-27 21:05:37 +09:00
Masaaki Goshima
8463646eb0
Fix encoding for Indent/MarshalIndent
2020-08-27 21:01:53 +09:00
Masaaki Goshima
e28091e4c7
Improve performance for []byte type
2020-08-25 17:19:41 +09:00
Masaaki Goshima
6681db131f
Fix StructFieldHead operation
2020-08-25 17:19:19 +09:00
Masaaki Goshima
9ba13f68ff
Add special operation for opStructFieldHead and opStructField
2020-08-24 01:50:18 +09:00
Masaaki Goshima
1e765df4f7
Fix indent for empty struct
2020-08-23 00:54:43 +09:00
Masaaki Goshima
ff33d8e78d
Fix condition for indent
2020-08-23 00:54:19 +09:00
Masaaki Goshima
f7a6d65195
Fix new line char
2020-08-23 00:53:38 +09:00
Masaaki Goshima
6a0fd170c6
Fix head operation
2020-08-22 18:28:03 +09:00
Masaaki Goshima
47d7d26a50
Fix head operation
2020-08-22 18:16:06 +09:00
Masaaki Goshima
a718a9a1ef
Fix anonymous fields
2020-08-22 12:58:34 +09:00
Masaaki Goshima
3e03bdc53f
Fix null validation
2020-08-21 11:51:33 +09:00
Masaaki Goshima
95bfc8c549
Add validation for null value
2020-08-21 11:07:55 +09:00
Masaaki Goshima
d7518e3151
Fix seenPtr
2020-08-21 01:01:24 +09:00
Masaaki Goshima
7ac966b81e
Fix cycle pointer value
2020-08-20 23:56:12 +09:00