github.com/gogf/gf/v2@v2.7.4/container/gtype/gtype_int.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 // Int is a struct for concurrent-safe operation for type int. 17 type Int struct { 18 value int64 19 } 20 21 // NewInt creates and returns a concurrent-safe object for int type, 22 // with given initial value `value`. 23 func NewInt(value ...int) *Int { 24 if len(value) > 0 { 25 return &Int{ 26 value: int64(value[0]), 27 } 28 } 29 return &Int{} 30 } 31 32 // Clone clones and returns a new concurrent-safe object for int type. 33 func (v *Int) Clone() *Int { 34 return NewInt(v.Val()) 35 } 36 37 // Set atomically stores `value` into t.value and returns the previous value of t.value. 38 func (v *Int) Set(value int) (old int) { 39 return int(atomic.SwapInt64(&v.value, int64(value))) 40 } 41 42 // Val atomically loads and returns t.value. 43 func (v *Int) Val() int { 44 return int(atomic.LoadInt64(&v.value)) 45 } 46 47 // Add atomically adds `delta` to t.value and returns the new value. 48 func (v *Int) Add(delta int) (new int) { 49 return int(atomic.AddInt64(&v.value, int64(delta))) 50 } 51 52 // Cas executes the compare-and-swap operation for value. 53 func (v *Int) Cas(old, new int) (swapped bool) { 54 return atomic.CompareAndSwapInt64(&v.value, int64(old), int64(new)) 55 } 56 57 // String implements String interface for string printing. 58 func (v *Int) String() string { 59 return strconv.Itoa(v.Val()) 60 } 61 62 // MarshalJSON implements the interface MarshalJSON for json.Marshal. 63 func (v Int) MarshalJSON() ([]byte, error) { 64 return []byte(strconv.Itoa(v.Val())), nil 65 } 66 67 // UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal. 68 func (v *Int) UnmarshalJSON(b []byte) error { 69 v.Set(gconv.Int(string(b))) 70 return nil 71 } 72 73 // UnmarshalValue is an interface implement which sets any type of value for `v`. 74 func (v *Int) UnmarshalValue(value interface{}) error { 75 v.Set(gconv.Int(value)) 76 return nil 77 } 78 79 // DeepCopy implements interface for deep copy of current type. 80 func (v *Int) DeepCopy() interface{} { 81 if v == nil { 82 return nil 83 } 84 return NewInt(v.Val()) 85 }