您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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