Skip to content

Commit 81e112d

Browse files
authored
refactor: replace custom atomic types with stdlib atomic (elastic#4963)
Go 1.19 added new atomic types. Replace custom atomic implementation with native types.
1 parent 6a45256 commit 81e112d

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

internal/pkg/agent/application/actions/handlers/handler_action_unenroll_test.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ package handlers
66

77
import (
88
"context"
9+
"sync/atomic"
910
"testing"
1011

11-
"github.com/elastic/elastic-agent-libs/atomic"
12-
1312
"github.com/elastic/elastic-agent-client/v7/pkg/client"
1413
"github.com/elastic/elastic-agent-client/v7/pkg/proto"
1514
"github.com/elastic/elastic-agent/internal/pkg/agent/application/coordinator"
@@ -43,15 +42,15 @@ func makeComponentState(name string, proxiedActions []string) runtime.ComponentC
4342

4443
type MockActionCoordinator struct {
4544
st coordinator.State
46-
performedActions atomic.Int
45+
performedActions atomic.Int64
4746
}
4847

4948
func (c *MockActionCoordinator) State() coordinator.State {
5049
return c.st
5150
}
5251

5352
func (c *MockActionCoordinator) PerformAction(ctx context.Context, comp component.Component, unit component.Unit, name string, params map[string]interface{}) (map[string]interface{}, error) {
54-
c.performedActions.Inc()
53+
c.performedActions.Add(1)
5554
return nil, nil
5655
}
5756

@@ -118,7 +117,7 @@ func TestActionUnenrollHandler(t *testing.T) {
118117
name string
119118
st coordinator.State
120119
wantErr error // Handler error
121-
wantPerformedActions int
120+
wantPerformedActions int64
122121
tamperProtectionFn func() bool
123122
}{
124123
{

internal/pkg/agent/application/upgrade/artifact/download/http/progress_reporter.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ package http
66

77
import (
88
"context"
9+
"sync/atomic"
910
"time"
10-
11-
"github.com/elastic/elastic-agent-libs/atomic"
1211
)
1312

1413
type downloadProgressReporter struct {
@@ -17,7 +16,7 @@ type downloadProgressReporter struct {
1716
warnTimeout time.Duration
1817
length float64
1918

20-
downloaded atomic.Int
19+
downloaded atomic.Int64
2120
started time.Time
2221

2322
progressObservers []progressObserver
@@ -42,7 +41,7 @@ func newDownloadProgressReporter(sourceURI string, timeout time.Duration, length
4241

4342
func (dp *downloadProgressReporter) Write(b []byte) (int, error) {
4443
n := len(b)
45-
dp.downloaded.Add(n)
44+
dp.downloaded.Add(int64(n))
4645
return n, nil
4746
}
4847

pkg/component/runtime/manager.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
"path"
1717
"strings"
1818
"sync"
19+
"sync/atomic"
1920
"time"
2021

2122
"github.com/gofrs/uuid"
@@ -28,7 +29,6 @@ import (
2829

2930
"github.com/elastic/elastic-agent-client/v7/pkg/client"
3031
"github.com/elastic/elastic-agent-client/v7/pkg/proto"
31-
"github.com/elastic/elastic-agent-libs/atomic"
3232

3333
"github.com/elastic/elastic-agent/internal/pkg/agent/application/info"
3434
"github.com/elastic/elastic-agent/internal/pkg/agent/configuration"
@@ -193,7 +193,7 @@ func NewManager(
193193
errCh: make(chan error),
194194
monitor: monitor,
195195
grpcConfig: grpcConfig,
196-
serverReady: atomic.NewBool(false),
196+
serverReady: &atomic.Bool{},
197197
doneChan: make(chan struct{}),
198198
}
199199
return m, nil

pkg/component/runtime/runtime.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"context"
99
"errors"
1010
"sync"
11+
"sync/atomic"
1112

1213
"github.com/elastic/elastic-agent-client/v7/pkg/client"
1314
"github.com/elastic/elastic-agent-client/v7/pkg/proto"
14-
"github.com/elastic/elastic-agent-libs/atomic"
1515
"github.com/elastic/elastic-agent/internal/pkg/runner"
1616
"github.com/elastic/elastic-agent/pkg/component"
1717
"github.com/elastic/elastic-agent/pkg/core/logger"
@@ -188,11 +188,10 @@ func (s *componentRuntimeState) start() error {
188188
}
189189

190190
func (s *componentRuntimeState) stop(teardown bool, signed *component.Signed) error {
191-
if s.shuttingDown.Load() {
191+
if !s.shuttingDown.CompareAndSwap(false, true) {
192192
// already stopping
193193
return nil
194194
}
195-
s.shuttingDown.Store(true)
196195
if teardown {
197196
return s.runtime.Teardown(signed)
198197
}

0 commit comments

Comments
 (0)