blob: 18ae56493ee985c94adec4eb47760e10632333c6 [file] [log] [blame]
David K. Bainbridgee05cf0c2021-08-19 03:16:50 +00001// @generated Code generated by gen-atomicint.
2
3// Copyright (c) 2020 Uber Technologies, Inc.
4//
5// Permission is hereby granted, free of charge, to any person obtaining a copy
6// of this software and associated documentation files (the "Software"), to deal
7// in the Software without restriction, including without limitation the rights
8// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9// copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21// THE SOFTWARE.
22
23package atomic
24
25import (
26 "encoding/json"
27 "strconv"
28 "sync/atomic"
29)
30
31// Int32 is an atomic wrapper around int32.
32type Int32 struct {
33 _ nocmp // disallow non-atomic comparison
34
35 v int32
36}
37
38// NewInt32 creates a new Int32.
39func NewInt32(i int32) *Int32 {
40 return &Int32{v: i}
41}
42
43// Load atomically loads the wrapped value.
44func (i *Int32) Load() int32 {
45 return atomic.LoadInt32(&i.v)
46}
47
48// Add atomically adds to the wrapped int32 and returns the new value.
49func (i *Int32) Add(n int32) int32 {
50 return atomic.AddInt32(&i.v, n)
51}
52
53// Sub atomically subtracts from the wrapped int32 and returns the new value.
54func (i *Int32) Sub(n int32) int32 {
55 return atomic.AddInt32(&i.v, -n)
56}
57
58// Inc atomically increments the wrapped int32 and returns the new value.
59func (i *Int32) Inc() int32 {
60 return i.Add(1)
61}
62
63// Dec atomically decrements the wrapped int32 and returns the new value.
64func (i *Int32) Dec() int32 {
65 return i.Sub(1)
66}
67
68// CAS is an atomic compare-and-swap.
69func (i *Int32) CAS(old, new int32) bool {
70 return atomic.CompareAndSwapInt32(&i.v, old, new)
71}
72
73// Store atomically stores the passed value.
74func (i *Int32) Store(n int32) {
75 atomic.StoreInt32(&i.v, n)
76}
77
78// Swap atomically swaps the wrapped int32 and returns the old value.
79func (i *Int32) Swap(n int32) int32 {
80 return atomic.SwapInt32(&i.v, n)
81}
82
83// MarshalJSON encodes the wrapped int32 into JSON.
84func (i *Int32) MarshalJSON() ([]byte, error) {
85 return json.Marshal(i.Load())
86}
87
88// UnmarshalJSON decodes JSON into the wrapped int32.
89func (i *Int32) UnmarshalJSON(b []byte) error {
90 var v int32
91 if err := json.Unmarshal(b, &v); err != nil {
92 return err
93 }
94 i.Store(v)
95 return nil
96}
97
98// String encodes the wrapped value as a string.
99func (i *Int32) String() string {
100 v := i.Load()
101 return strconv.FormatInt(int64(v), 10)
102}