Files
gf/container/gtype/byte.go

52 lines
1.3 KiB
Go
Raw Normal View History

// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
2018-04-12 14:09:33 +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,
// You can obtain one at https://github.com/gogf/gf.
2018-04-12 14:09:33 +08:00
package gtype
import (
2019-06-19 09:06:52 +08:00
"sync/atomic"
2018-04-12 14:09:33 +08:00
)
type Byte struct {
value int32
2018-04-12 14:09:33 +08:00
}
// NewByte returns a concurrent-safe object for byte type,
// with given initial value <value>.
2019-06-19 09:06:52 +08:00
func NewByte(value ...byte) *Byte {
if len(value) > 0 {
return &Byte{
value: int32(value[0]),
}
2019-06-19 09:06:52 +08:00
}
return &Byte{}
2018-04-12 14:09:33 +08:00
}
// Clone clones and returns a new concurrent-safe object for byte type.
func (v *Byte) Clone() *Byte {
2019-06-19 09:06:52 +08:00
return NewByte(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 *Byte) Set(value byte) (old byte) {
2019-06-19 09:06:52 +08:00
return byte(atomic.SwapInt32(&v.value, int32(value)))
2018-04-12 14:09:33 +08:00
}
// Val atomically loads t.value.
func (v *Byte) Val() byte {
2019-06-19 09:06:52 +08:00
return byte(atomic.LoadInt32(&v.value))
2018-04-12 14:09:33 +08:00
}
// Add atomically adds <delta> to t.value and returns the new value.
func (v *Byte) Add(delta byte) (new byte) {
2019-06-19 09:06:52 +08:00
return byte(atomic.AddInt32(&v.value, int32(delta)))
}
// Cas executes the compare-and-swap operation for value.
func (v *Byte) Cas(old, new byte) bool {
return atomic.CompareAndSwapInt32(&v.value, int32(old), int32(new))
2018-04-12 14:09:33 +08:00
}