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