diff options
author | 2022-04-26 20:30:25 -0700 | |
---|---|---|
committer | 2023-01-31 15:16:42 +0100 | |
commit | 83b4c9ebc87d0fddf4e638f13e3af1483912e3a5 (patch) | |
tree | 47840b84c0fd3cb226eab2ecb3dbce0617163406 /vendor/codeberg.org/gruf/go-atomics/string.go | |
parent | [chore] update URLs to forked source (diff) | |
download | gotosocial-83b4c9ebc87d0fddf4e638f13e3af1483912e3a5.tar.xz |
[chore] remove vendor
Diffstat (limited to 'vendor/codeberg.org/gruf/go-atomics/string.go')
-rw-r--r-- | vendor/codeberg.org/gruf/go-atomics/string.go | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/vendor/codeberg.org/gruf/go-atomics/string.go b/vendor/codeberg.org/gruf/go-atomics/string.go deleted file mode 100644 index a0a6e115f..000000000 --- a/vendor/codeberg.org/gruf/go-atomics/string.go +++ /dev/null @@ -1,57 +0,0 @@ -package atomics - -import ( - "sync/atomic" - "unsafe" -) - -// String provides user-friendly means of performing atomic operations on string types. -type String struct{ ptr unsafe.Pointer } - -// NewString will return a new String instance initialized with zero value. -func NewString() *String { - var v string - return &String{ - ptr: unsafe.Pointer(&v), - } -} - -// Store will atomically store string value in address contained within v. -func (v *String) Store(val string) { - atomic.StorePointer(&v.ptr, unsafe.Pointer(&val)) -} - -// Load will atomically load string value at address contained within v. -func (v *String) Load() string { - return *(*string)(atomic.LoadPointer(&v.ptr)) -} - -// CAS performs a compare-and-swap for a(n) string value at address contained within v. -func (v *String) CAS(cmp, swp string) bool { - for { - // Load current value at address - ptr := atomic.LoadPointer(&v.ptr) - cur := *(*string)(ptr) - - // Perform comparison against current - if !(cur == cmp) { - return false - } - - // Attempt to replace pointer - if atomic.CompareAndSwapPointer( - &v.ptr, - ptr, - unsafe.Pointer(&swp), - ) { - return true - } - } -} - -// Swap atomically stores new string value into address contained within v, and returns previous value. -func (v *String) Swap(swp string) string { - ptr := unsafe.Pointer(&swp) - ptr = atomic.SwapPointer(&v.ptr, ptr) - return *(*string)(ptr) -} |