github.com/gogf/gf/v2@v2.7.4/container/gtype/gtype_byte.go (about) 1 // Copyright GoFrame Author(https://goframe.org). All Rights Reserved. 2 // 3 // This Source Code Form is subject to the terms of the MIT License. 4 // If a copy of the MIT was not distributed with this file, 5 // You can obtain one at https://github.com/gogf/gf. 6 7 package gtype 8 9 import ( 10 "strconv" 11 "sync/atomic" 12 13 "github.com/gogf/gf/v2/util/gconv" 14 ) 15 16 // Byte is a struct for concurrent-safe operation for type byte. 17 type Byte struct { 18 value int32 19 } 20 21 // NewByte creates and returns a concurrent-safe object for byte type, 22 // with given initial value `value`. 23 func NewByte(value ...byte) *Byte { 24 if len(value) > 0 { 25 return &Byte{ 26 value: int32(value[0]), 27 } 28 } 29 return &Byte{} 30 } 31 32 // Clone clones and returns a new concurrent-safe object for byte type. 33 func (v *Byte) Clone() *Byte { 34 return NewByte(v.Val()) 35 } 36 37 // Set atomically stores `value` into t.value and returns the previous value of t.value. 38 func (v *Byte) Set(value byte) (old byte) { 39 return byte(atomic.SwapInt32(&v.value, int32(value))) 40 } 41 42 // Val atomically loads and returns t.value. 43 func (v *Byte) Val() byte { 44 return byte(atomic.LoadInt32(&v.value)) 45 } 46 47 // Add atomically adds `delta` to t.value and returns the new value. 48 func (v *Byte) Add(delta byte) (new byte) { 49 return byte(atomic.AddInt32(&v.value, int32(delta))) 50 } 51 52 // Cas executes the compare-and-swap operation for value. 53 func (v *Byte) Cas(old, new byte) (swapped bool) { 54 return atomic.CompareAndSwapInt32(&v.value, int32(old), int32(new)) 55 } 56 57 // String implements String interface for string printing. 58 func (v *Byte) String() string { 59 return strconv.FormatUint(uint64(v.Val()), 10) 60 } 61 62 // MarshalJSON implements the interface MarshalJSON for json.Marshal. 63 func (v Byte) MarshalJSON() ([]byte, error) { 64 return []byte(strconv.FormatUint(uint64(v.Val()), 10)), nil 65 } 66 67 // UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal. 68 func (v *Byte) UnmarshalJSON(b []byte) error { 69 v.Set(gconv.Uint8(string(b))) 70 return nil 71 } 72 73 // UnmarshalValue is an interface implement which sets any type of value for `v`. 74 func (v *Byte) UnmarshalValue(value interface{}) error { 75 v.Set(gconv.Byte(value)) 76 return nil 77 } 78 79 // DeepCopy implements interface for deep copy of current type. 80 func (v *Byte) DeepCopy() interface{} { 81 if v == nil { 82 return nil 83 } 84 return NewByte(v.Val()) 85 }