gf/container/gtype/uint.go

52 lines
1.3 KiB
Go
Raw Normal View History

// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
//
// 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,
// You can obtain one at https://github.com/gogf/gf.
package gtype
import (
2019-06-19 09:06:52 +08:00
"sync/atomic"
)
type Uint struct {
value uint64
}
// NewUint returns a concurrent-safe object for uint type,
// with given initial value <value>.
2019-06-19 09:06:52 +08:00
func NewUint(value ...uint) *Uint {
if len(value) > 0 {
return &Uint{
value: uint64(value[0]),
}
2019-06-19 09:06:52 +08:00
}
return &Uint{}
}
// Clone clones and returns a new concurrent-safe object for uint type.
func (v *Uint) Clone() *Uint {
2019-06-19 09:06:52 +08:00
return NewUint(v.Val())
2018-08-28 17:06:49 +08:00
}
// Set atomically stores <value> into t.value and returns the previous value of t.value.
func (v *Uint) Set(value uint) (old uint) {
2019-06-19 09:06:52 +08:00
return uint(atomic.SwapUint64(&v.value, uint64(value)))
}
// Val atomically loads t.value.
func (v *Uint) Val() uint {
2019-06-19 09:06:52 +08:00
return uint(atomic.LoadUint64(&v.value))
}
// Add atomically adds <delta> to t.value and returns the new value.
func (v *Uint) Add(delta uint) (new uint) {
2019-06-19 09:06:52 +08:00
return uint(atomic.AddUint64(&v.value, uint64(delta)))
}
// Cas executes the compare-and-swap operation for value.
func (v *Uint) Cas(old, new uint) bool {
return atomic.CompareAndSwapUint64(&v.value, uint64(old), uint64(new))
2019-06-19 09:06:52 +08:00
}