Generalize gen-valuewrapper into atomicwrapper

valuewrapper can be used only to generate atomic wrapper types for
types which are stored as atomic.Value. This isn't necessary because the
same logic can be applied to atomic wrappers built on other types like
Duration and Bool.

Generalize valuewrapper into atomicwrapper with support for optional
pack/unpack functions which handle conversion to/from `interface{}`.
This lets Error hook in and install the `storedError` struct (now called
`packedError`) to avoid panics from nil storage or value type change.
8 files changed
tree: 897489014e1ad398ad4a9d2003eff0935a7c6bae
  1. .github/
  2. internal/
  3. .codecov.yml
  4. .gitignore
  5. .travis.yml
  6. assert_test.go
  7. atomic.go
  8. atomic_test.go
  9. CHANGELOG.md
  10. error.go
  11. error_ext.go
  12. error_test.go
  13. example_test.go
  14. gen.go
  15. go.mod
  16. go.sum
  17. int32.go
  18. int32_test.go
  19. int64.go
  20. int64_test.go
  21. LICENSE.txt
  22. Makefile
  23. nocmp.go
  24. nocmp_test.go
  25. README.md
  26. stress_test.go
  27. string.go
  28. string_ext.go
  29. string_test.go
  30. tools_test.go
  31. uint32.go
  32. uint32_test.go
  33. uint64.go
  34. uint64_test.go
README.md

atomic GoDoc Build Status Coverage Status Go Report Card

Simple wrappers for primitive types to enforce atomic access.

Installation

$ go get -u go.uber.org/atomic@v1

Legacy Import Path

As of v1.5.0, the import path go.uber.org/atomic is the only supported way of using this package. If you are using Go modules, this package will fail to compile with the legacy import path path github.com/uber-go/atomic.

We recommend migrating your code to the new import path but if you're unable to do so, or if your dependencies are still using the old import path, you will have to add a replace directive to your go.mod file downgrading the legacy import path to an older version.

replace github.com/uber-go/atomic => github.com/uber-go/atomic v1.4.0

You can do so automatically by running the following command.

$ go mod edit -replace github.com/uber-go/atomic=github.com/uber-go/atomic@v1.4.0

Usage

The standard library‘s sync/atomic is powerful, but it’s easy to forget which variables must be accessed atomically. go.uber.org/atomic preserves all the functionality of the standard library, but wraps the primitive types to provide a safer, more convenient API.

var atom atomic.Uint32
atom.Store(42)
atom.Sub(2)
atom.CAS(40, 11)

See the documentation for a complete API specification.

Development Status

Stable.


Released under the MIT License.