2016-06-01 13:38:57 +03:00
|
|
|
# ABool :bulb:
|
2020-07-16 08:10:44 +03:00
|
|
|
|
2016-06-28 13:11:33 +03:00
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/tevino/abool)](https://goreportcard.com/report/github.com/tevino/abool)
|
2016-05-25 07:00:32 +03:00
|
|
|
[![GoDoc](https://godoc.org/github.com/tevino/abool?status.svg)](https://godoc.org/github.com/tevino/abool)
|
|
|
|
|
2020-07-16 09:02:27 +03:00
|
|
|
Atomic Boolean package for Go, optimized for performance yet simple to use.
|
2016-05-25 06:42:19 +03:00
|
|
|
|
2020-07-16 09:02:27 +03:00
|
|
|
Designed for cleaner code.
|
2016-05-25 07:06:29 +03:00
|
|
|
|
2016-05-25 06:49:42 +03:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
```go
|
|
|
|
import "github.com/tevino/abool"
|
|
|
|
|
2020-07-16 08:35:52 +03:00
|
|
|
cond := abool.New() // default to false
|
|
|
|
|
2020-07-16 08:57:01 +03:00
|
|
|
cond.Set() // Sets to true
|
2020-07-16 08:35:52 +03:00
|
|
|
cond.IsSet() // Returns true
|
2020-07-16 08:57:01 +03:00
|
|
|
cond.UnSet() // Sets to false
|
2020-07-16 09:46:58 +03:00
|
|
|
cond.IsNotSet() // Returns true
|
2020-07-16 08:57:01 +03:00
|
|
|
cond.SetTo(any) // Sets to whatever you want
|
2020-07-16 08:35:52 +03:00
|
|
|
cond.SetToIf(new, old) // Sets to `new` only if the Boolean matches the `old`, returns whether succeeded
|
2016-05-25 06:49:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
// embedding
|
|
|
|
type Foo struct {
|
|
|
|
cond *abool.AtomicBool // always use pointer to avoid copy
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-09-05 07:25:08 +03:00
|
|
|
## Benchmark:
|
2016-05-25 06:42:19 +03:00
|
|
|
|
2021-09-05 07:25:08 +03:00
|
|
|
- Go 1.6.2
|
|
|
|
- OS X 10.11.4
|
|
|
|
- Intel CPU (to be specified)
|
2020-07-16 08:50:42 +03:00
|
|
|
|
2016-05-25 06:42:19 +03:00
|
|
|
|
2021-09-05 07:25:08 +03:00
|
|
|
```
|
2016-05-25 06:42:19 +03:00
|
|
|
# Read
|
2021-09-05 07:25:08 +03:00
|
|
|
BenchmarkMutexRead-4 100000000 21.0 ns/op
|
|
|
|
BenchmarkAtomicValueRead-4 200000000 6.30 ns/op
|
|
|
|
BenchmarkAtomicBoolRead-4 300000000 4.21 ns/op # <--- This package
|
2016-05-25 06:42:19 +03:00
|
|
|
|
|
|
|
# Write
|
2021-09-05 07:25:08 +03:00
|
|
|
BenchmarkMutexWrite-4 100000000 21.6 ns/op
|
|
|
|
BenchmarkAtomicValueWrite-4 30000000 43.4 ns/op
|
|
|
|
BenchmarkAtomicBoolWrite-4 200000000 9.87 ns/op # <--- This package
|
2016-06-02 06:47:41 +03:00
|
|
|
|
|
|
|
# CAS
|
2021-09-05 07:25:08 +03:00
|
|
|
BenchmarkMutexCAS-4 30000000 44.9 ns/op
|
|
|
|
BenchmarkAtomicBoolCAS-4 100000000 11.7 ns/op # <--- This package
|
2016-05-25 06:42:19 +03:00
|
|
|
```
|
2020-07-07 10:47:35 +03:00
|
|
|
|
2020-07-16 08:10:44 +03:00
|
|
|
## Special thanks to contributors
|
2020-07-07 10:47:35 +03:00
|
|
|
|
2021-09-05 07:46:55 +03:00
|
|
|
- [barryz](https://github.com/barryz)
|
2020-07-16 08:10:44 +03:00
|
|
|
- Added the `Toggle` method
|
2021-09-05 07:46:55 +03:00
|
|
|
- [Lucas Rouckhout](https://github.com/LucasRouckhout)
|
2021-05-08 18:54:15 +03:00
|
|
|
- Implemented JSON Unmarshal and Marshal interface
|
2021-09-05 07:47:57 +03:00
|
|
|
- [Sebastian Schicho](https://github.com/schicho)
|
|
|
|
- Reported a regression with test case
|
|
|
|
|