2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-03-27 15:09:17 +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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-03-27 15:09:17 +08:00
|
|
|
|
|
|
|
|
package gtype
|
|
|
|
|
|
|
|
|
|
import (
|
2019-09-29 20:12:59 +08:00
|
|
|
"bytes"
|
|
|
|
|
"github.com/gogf/gf/util/gconv"
|
2019-06-19 09:06:52 +08:00
|
|
|
"sync/atomic"
|
2018-03-27 15:09:17 +08:00
|
|
|
)
|
|
|
|
|
|
2019-12-20 23:23:50 +08:00
|
|
|
// Bool is a struct for concurrent-safe operation for type bool.
|
2018-03-27 15:09:17 +08:00
|
|
|
type Bool struct {
|
2019-06-19 09:06:52 +08:00
|
|
|
value int32
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-09-29 20:12:59 +08:00
|
|
|
var (
|
|
|
|
|
bytesTrue = []byte("true")
|
|
|
|
|
bytesFalse = []byte("false")
|
|
|
|
|
)
|
|
|
|
|
|
2019-12-20 23:23:50 +08:00
|
|
|
// NewBool creates and returns a concurrent-safe object for bool type,
|
2019-04-15 22:55:12 +08:00
|
|
|
// with given initial value <value>.
|
2019-06-19 09:06:52 +08:00
|
|
|
func NewBool(value ...bool) *Bool {
|
|
|
|
|
t := &Bool{}
|
|
|
|
|
if len(value) > 0 {
|
|
|
|
|
if value[0] {
|
|
|
|
|
t.value = 1
|
|
|
|
|
} else {
|
|
|
|
|
t.value = 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return t
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-04-15 22:55:12 +08:00
|
|
|
// Clone clones and returns a new concurrent-safe object for bool type.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *Bool) Clone() *Bool {
|
2019-06-19 09:06:52 +08:00
|
|
|
return NewBool(v.Val())
|
2018-08-28 17:06:49 +08:00
|
|
|
}
|
|
|
|
|
|
2019-05-08 17:21:18 +08:00
|
|
|
// Set atomically stores <value> into t.value and returns the previous value of t.value.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *Bool) Set(value bool) (old bool) {
|
2019-06-19 09:06:52 +08:00
|
|
|
if value {
|
|
|
|
|
old = atomic.SwapInt32(&v.value, 1) == 1
|
|
|
|
|
} else {
|
|
|
|
|
old = atomic.SwapInt32(&v.value, 0) == 1
|
|
|
|
|
}
|
|
|
|
|
return
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
2019-12-20 23:23:50 +08:00
|
|
|
// Val atomically loads and returns t.valueue.
|
2019-06-18 08:37:21 +08:00
|
|
|
func (v *Bool) Val() bool {
|
2019-06-19 09:06:52 +08:00
|
|
|
return atomic.LoadInt32(&v.value) > 0
|
2018-03-27 15:09:17 +08:00
|
|
|
}
|
2019-06-18 08:37:21 +08:00
|
|
|
|
|
|
|
|
// Cas executes the compare-and-swap operation for value.
|
2020-01-16 21:04:28 +08:00
|
|
|
func (v *Bool) Cas(old, new bool) (swapped bool) {
|
2019-06-18 08:37:21 +08:00
|
|
|
var oldInt32, newInt32 int32
|
|
|
|
|
if old {
|
|
|
|
|
oldInt32 = 1
|
|
|
|
|
}
|
|
|
|
|
if new {
|
|
|
|
|
newInt32 = 1
|
|
|
|
|
}
|
|
|
|
|
return atomic.CompareAndSwapInt32(&v.value, oldInt32, newInt32)
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2019-09-29 15:59:09 +08:00
|
|
|
|
2019-10-01 16:03:18 +08:00
|
|
|
// String implements String interface for string printing.
|
|
|
|
|
func (v *Bool) String() string {
|
|
|
|
|
if v.Val() {
|
|
|
|
|
return "true"
|
|
|
|
|
}
|
|
|
|
|
return "false"
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-29 15:59:09 +08:00
|
|
|
// MarshalJSON implements the interface MarshalJSON for json.Marshal.
|
|
|
|
|
func (v *Bool) MarshalJSON() ([]byte, error) {
|
|
|
|
|
if v.Val() {
|
2019-09-29 20:12:59 +08:00
|
|
|
return bytesTrue, nil
|
2019-09-29 15:59:09 +08:00
|
|
|
} else {
|
2019-09-29 20:12:59 +08:00
|
|
|
return bytesFalse, nil
|
2019-09-29 15:59:09 +08:00
|
|
|
}
|
|
|
|
|
}
|
2019-09-29 20:12:59 +08:00
|
|
|
|
|
|
|
|
// UnmarshalJSON implements the interface UnmarshalJSON for json.Unmarshal.
|
|
|
|
|
func (v *Bool) UnmarshalJSON(b []byte) error {
|
|
|
|
|
v.Set(gconv.Bool(bytes.Trim(b, `"`)))
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2020-01-20 19:56:42 +08:00
|
|
|
|
|
|
|
|
// UnmarshalValue is an interface implement which sets any type of value for <v>.
|
|
|
|
|
func (v *Bool) UnmarshalValue(value interface{}) error {
|
|
|
|
|
v.Set(gconv.Bool(value))
|
|
|
|
|
return nil
|
|
|
|
|
}
|