2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-03-27 15:09:17 +08:00
|
|
|
//
|
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-03-27 15:09:17 +08:00
|
|
|
|
|
|
|
|
package gtype
|
|
|
|
|
|
|
|
|
|
import (
|
2019-09-29 20:12:59 +08:00
|
|
|
"bytes"
|
2019-09-29 15:59:09 +08:00
|
|
|
"github.com/gogf/gf/util/gconv"
|
2019-06-19 09:06:52 +08:00
|
|
|
"sync/atomic"
|
2018-03-27 15:09:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type String struct {
|
2019-04-15 22:55:12 +08:00
|
|
|
value atomic.Value
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-04-15 22:55:12 +08:00
|
|
|
// NewString returns a concurrent-safe object for string type,
|
|
|
|
|
// with given initial value <value>.
|
2019-06-19 09:06:52 +08:00
|
|
|
func NewString(value ...string) *String {
|
|
|
|
|
t := &String{}
|
|
|
|
|
if len(value) > 0 {
|
|
|
|
|
t.value.Store(value[0])
|
|
|
|
|
}
|
|
|
|
|
return t
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-04-15 22:55:12 +08:00
|
|
|
// Clone clones and returns a new concurrent-safe object for string type.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *String) Clone() *String {
|
2019-06-19 09:06:52 +08:00
|
|
|
return NewString(v.Val())
|
2018-08-28 17:06:49 +08:00
|
|
|
}
|
|
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
// Set atomically stores <value> into t.value and returns the previous value of t.value.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *String) Set(value string) (old string) {
|
2019-06-19 09:06:52 +08:00
|
|
|
old = v.Val()
|
|
|
|
|
v.value.Store(value)
|
|
|
|
|
return
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-04-15 22:55:12 +08:00
|
|
|
// Val atomically loads t.value.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *String) Val() string {
|
2019-06-19 09:06:52 +08:00
|
|
|
s := v.value.Load()
|
|
|
|
|
if s != nil {
|
|
|
|
|
return s.(string)
|
|
|
|
|
}
|
|
|
|
|
return ""
|
2018-04-15 22:02:06 +08:00
|
|
|
}
|
2019-09-29 15:59:09 +08:00
|
|
|
|
|
|
|
|
// MarshalJSON implements the interface MarshalJSON for json.Marshal.
|
|
|
|
|
func (v *String) MarshalJSON() ([]byte, error) {
|
|
|
|
|
return gconv.UnsafeStrToBytes(`"` + v.Val() + `"`), nil
|
|
|
|
|
}
|
2019-09-29 20:12:59 +08:00
|
|
|
|
|
|
|
|
// UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal.
|
|
|
|
|
func (v *String) UnmarshalJSON(b []byte) error {
|
|
|
|
|
v.Set(gconv.UnsafeBytesToStr(bytes.Trim(b, `"`)))
|
|
|
|
|
return nil
|
|
|
|
|
}
|