-
Notifications
You must be signed in to change notification settings - Fork 882
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check SDK versions via version check call #2365
Changes from all commits
daf5114
947dd37
c57858e
0a9038e
c1eb1fb
b01a99f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,99 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
// The MIT License | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// Copyright (c) 2022 Temporal Technologies Inc. All rights reserved. | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// Copyright (c) 2020 Uber Technologies, Inc. | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||||||||||||||||||||||||||||||||||||||||||||||
// of this software and associated documentation files (the "Software"), to deal | ||||||||||||||||||||||||||||||||||||||||||||||
// in the Software without restriction, including without limitation the rights | ||||||||||||||||||||||||||||||||||||||||||||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||||||||||||||||||||||||||||||||||||||||||||||
// copies of the Software, and to permit persons to whom the Software is | ||||||||||||||||||||||||||||||||||||||||||||||
// furnished to do so, subject to the following conditions: | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// The above copyright notice and this permission notice shall be included in | ||||||||||||||||||||||||||||||||||||||||||||||
// all copies or substantial portions of the Software. | ||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||||||||||||||||||||||||||||||||||||||||||||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||||||||||||||||||||||||||||||||||||||||||||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||||||||||||||||||||||||||||||||||||||||||||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||||||||||||||||||||||||||||||||||||||||||||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||||||||||||||||||||||||||||||||||||||||||||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||||||||||||||||||||||||||||||||||||||||||||||
// THE SOFTWARE. | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
package interceptor | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||
"context" | ||||||||||||||||||||||||||||||||||||||||||||||
"sync" | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"go.temporal.io/server/common/headers" | ||||||||||||||||||||||||||||||||||||||||||||||
"go.temporal.io/version/check" | ||||||||||||||||||||||||||||||||||||||||||||||
"google.golang.org/grpc" | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
type sdkNameVersion struct { | ||||||||||||||||||||||||||||||||||||||||||||||
name string | ||||||||||||||||||||||||||||||||||||||||||||||
version string | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
type SDKVersionInterceptor struct { | ||||||||||||||||||||||||||||||||||||||||||||||
sdkInfoSet map[sdkNameVersion]struct{} | ||||||||||||||||||||||||||||||||||||||||||||||
lock sync.RWMutex | ||||||||||||||||||||||||||||||||||||||||||||||
maxSetSize int | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+36
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If there is more than one
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, can we get a lint rule that enforces this style? |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
const defaultMaxSetSize = 100 | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// NewSDKVersionInterceptor creates a new SDKVersionInterceptor with default max set size | ||||||||||||||||||||||||||||||||||||||||||||||
func NewSDKVersionInterceptor() *SDKVersionInterceptor { | ||||||||||||||||||||||||||||||||||||||||||||||
return &SDKVersionInterceptor{ | ||||||||||||||||||||||||||||||||||||||||||||||
sdkInfoSet: make(map[sdkNameVersion]struct{}), | ||||||||||||||||||||||||||||||||||||||||||||||
maxSetSize: defaultMaxSetSize, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// Intercept a grpc request | ||||||||||||||||||||||||||||||||||||||||||||||
func (vi *SDKVersionInterceptor) Intercept( | ||||||||||||||||||||||||||||||||||||||||||||||
ctx context.Context, | ||||||||||||||||||||||||||||||||||||||||||||||
req interface{}, | ||||||||||||||||||||||||||||||||||||||||||||||
info *grpc.UnaryServerInfo, | ||||||||||||||||||||||||||||||||||||||||||||||
handler grpc.UnaryHandler, | ||||||||||||||||||||||||||||||||||||||||||||||
) (interface{}, error) { | ||||||||||||||||||||||||||||||||||||||||||||||
sdkName, sdkVersion := headers.GetClientNameAndVersion(ctx) | ||||||||||||||||||||||||||||||||||||||||||||||
if sdkName != "" && sdkVersion != "" { | ||||||||||||||||||||||||||||||||||||||||||||||
vi.RecordSDKInfo(sdkName, sdkVersion) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
return handler(ctx, req) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// RecordSDKInfo records name and version tuple in memory | ||||||||||||||||||||||||||||||||||||||||||||||
func (vi *SDKVersionInterceptor) RecordSDKInfo(name, version string) { | ||||||||||||||||||||||||||||||||||||||||||||||
info := sdkNameVersion{name, version} | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would avoid nameless struct initialization. It is not possible to find references with it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought it'd be okay in this simple case, I don't mind fixing |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.RLock() | ||||||||||||||||||||||||||||||||||||||||||||||
overCap := len(vi.sdkInfoSet) >= vi.maxSetSize | ||||||||||||||||||||||||||||||||||||||||||||||
_, found := vi.sdkInfoSet[info] | ||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.RUnlock() | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it's not worth it here |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if !overCap && !found { | ||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.Lock() | ||||||||||||||||||||||||||||||||||||||||||||||
vi.sdkInfoSet[info] = struct{}{} | ||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.Unlock() | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// GetAndResetSDKInfo gets all recorded name, version tuples and resets internal records | ||||||||||||||||||||||||||||||||||||||||||||||
func (vi *SDKVersionInterceptor) GetAndResetSDKInfo() []check.SDKInfo { | ||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.Lock() | ||||||||||||||||||||||||||||||||||||||||||||||
currSet := vi.sdkInfoSet | ||||||||||||||||||||||||||||||||||||||||||||||
vi.sdkInfoSet = make(map[sdkNameVersion]struct{}) | ||||||||||||||||||||||||||||||||||||||||||||||
vi.lock.Unlock() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
sdkInfo := make([]check.SDKInfo, 0, len(currSet)) | ||||||||||||||||||||||||||||||||||||||||||||||
for k := range currSet { | ||||||||||||||||||||||||||||||||||||||||||||||
sdkInfo = append(sdkInfo, check.SDKInfo{Name: k.name, Version: k.version}) | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I could have probably just used |
||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
return sdkInfo | ||||||||||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
// The MIT License | ||
// | ||
// Copyright (c) 2022 Temporal Technologies Inc. All rights reserved. | ||
// | ||
// Copyright (c) 2020 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package interceptor | ||
|
||
import ( | ||
"context" | ||
"sort" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"go.temporal.io/server/common/headers" | ||
) | ||
|
||
func TestSDKVersionRecorder(t *testing.T) { | ||
interceptor := &SDKVersionInterceptor{ | ||
sdkInfoSet: make(map[sdkNameVersion]struct{}), | ||
maxSetSize: 2, | ||
} | ||
|
||
sdkVersion := "1.10.1" | ||
|
||
// Record first tuple | ||
ctx := headers.SetVersionsForTests(context.Background(), sdkVersion, headers.ClientNameGoSDK, headers.SupportedServerVersions, headers.AllFeatures) | ||
interceptor.Intercept(ctx, nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return nil, nil | ||
}) | ||
|
||
// Record second tuple | ||
ctx = headers.SetVersionsForTests(context.Background(), sdkVersion, headers.ClientNameTypeScriptSDK, headers.SupportedServerVersions, headers.AllFeatures) | ||
interceptor.Intercept(ctx, nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return nil, nil | ||
}) | ||
|
||
// Do not record when over capacity | ||
ctx = headers.SetVersionsForTests(context.Background(), sdkVersion, headers.ClientNameJavaSDK, headers.SupportedServerVersions, headers.AllFeatures) | ||
interceptor.Intercept(ctx, nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return nil, nil | ||
}) | ||
|
||
// Empty SDK version should not be recorded | ||
ctx = headers.SetVersionsForTests(context.Background(), "", headers.ClientNameGoSDK, headers.SupportedServerVersions, headers.AllFeatures) | ||
interceptor.Intercept(ctx, nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return nil, nil | ||
}) | ||
|
||
// Empty SDK name should not be recorded | ||
ctx = headers.SetVersionsForTests(context.Background(), sdkVersion, "", headers.SupportedServerVersions, headers.AllFeatures) | ||
interceptor.Intercept(ctx, nil, nil, func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return nil, nil | ||
}) | ||
|
||
info := interceptor.GetAndResetSDKInfo() | ||
sort.SliceStable(info, func(i, j int) bool { | ||
return info[i].Name < info[j].Name | ||
}) | ||
assert.Equal(t, 2, len(info)) | ||
assert.Equal(t, headers.ClientNameGoSDK, info[0].Name) | ||
assert.Equal(t, sdkVersion, info[0].Version) | ||
assert.Equal(t, headers.ClientNameTypeScriptSDK, info[1].Name) | ||
assert.Equal(t, sdkVersion, info[1].Version) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lock
usually goes as embedded struct.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh nice, I can do that.