Feat: Convert strings and slices using the officially recommended way.

Go official is expected to provide unsafe.{SliceData, Slice, StringData,
String} series methods in version 1.20 for conversion of strings and
slices.
This commit is contained in:
hopehook 2022-10-01 21:37:46 +08:00
parent 78dad9d77d
commit aa844e102e
3 changed files with 26 additions and 1 deletions

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/gin-gonic/gin module github.com/gin-gonic/gin
go 1.18 go 1.20
require ( require (
github.com/bytedance/sonic v1.4.0 github.com/bytedance/sonic v1.4.0

View File

@ -2,6 +2,9 @@
// Use of this source code is governed by a MIT style // Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
//go:build !go1.20
// +build !go1.20
package bytesconv package bytesconv
import ( import (

View File

@ -0,0 +1,22 @@
// Copyright 2022 Gin Core Team. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
//go:build go1.20
// +build go1.20
package bytesconv
import (
"unsafe"
)
// StringToBytes converts string to byte slice without a memory allocation.
func StringToBytes(s string) []byte {
return unsafe.Slice(unsafe.StringData(s), len(s))
}
// BytesToString converts byte slice to string without a memory allocation.
func BytesToString(b []byte) string {
return unsafe.String(unsafe.SliceData(b), len(b))
}