Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
df7e4f3d
Commit
df7e4f3d
authored
Jan 29, 2019
by
danielqsj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean pkg/util/keymutex
parent
1add6b0c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
234 deletions
+0
-234
BUILD
pkg/util/BUILD
+0
-1
BUILD
pkg/util/keymutex/BUILD
+0
-36
hashed.go
pkg/util/keymutex/hashed.go
+0
-64
keymutex.go
pkg/util/keymutex/keymutex.go
+0
-27
keymutex_test.go
pkg/util/keymutex/keymutex_test.go
+0
-105
test_owners.csv
test/test_owners.csv
+0
-1
No files found.
pkg/util/BUILD
View file @
df7e4f3d
...
@@ -32,7 +32,6 @@ filegroup(
...
@@ -32,7 +32,6 @@ filegroup(
"//pkg/util/ipset:all-srcs",
"//pkg/util/ipset:all-srcs",
"//pkg/util/iptables:all-srcs",
"//pkg/util/iptables:all-srcs",
"//pkg/util/ipvs:all-srcs",
"//pkg/util/ipvs:all-srcs",
"//pkg/util/keymutex:all-srcs",
"//pkg/util/labels:all-srcs",
"//pkg/util/labels:all-srcs",
"//pkg/util/maps:all-srcs",
"//pkg/util/maps:all-srcs",
"//pkg/util/metrics:all-srcs",
"//pkg/util/metrics:all-srcs",
...
...
pkg/util/keymutex/BUILD
deleted
100644 → 0
View file @
1add6b0c
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = [
"hashed.go",
"keymutex.go",
],
importpath = "k8s.io/kubernetes/pkg/util/keymutex",
deps = ["//vendor/k8s.io/klog:go_default_library"],
)
go_test(
name = "go_default_test",
srcs = ["keymutex_test.go"],
embed = [":go_default_library"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)
pkg/util/keymutex/hashed.go
deleted
100644 → 0
View file @
1add6b0c
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
keymutex
import
(
"hash/fnv"
"runtime"
"sync"
"k8s.io/klog"
)
// NewHashed returns a new instance of KeyMutex which hashes arbitrary keys to
// a fixed set of locks. `n` specifies number of locks, if n <= 0, we use
// number of cpus.
// Note that because it uses fixed set of locks, different keys may share same
// lock, so it's possible to wait on same lock.
func
NewHashed
(
n
int
)
KeyMutex
{
if
n
<=
0
{
n
=
runtime
.
NumCPU
()
}
return
&
hashedKeyMutex
{
mutexes
:
make
([]
sync
.
Mutex
,
n
),
}
}
type
hashedKeyMutex
struct
{
mutexes
[]
sync
.
Mutex
}
// Acquires a lock associated with the specified ID.
func
(
km
*
hashedKeyMutex
)
LockKey
(
id
string
)
{
klog
.
V
(
5
)
.
Infof
(
"hashedKeyMutex.LockKey(...) called for id %q
\r\n
"
,
id
)
km
.
mutexes
[
km
.
hash
(
id
)
%
len
(
km
.
mutexes
)]
.
Lock
()
klog
.
V
(
5
)
.
Infof
(
"hashedKeyMutex.LockKey(...) for id %q completed.
\r\n
"
,
id
)
}
// Releases the lock associated with the specified ID.
func
(
km
*
hashedKeyMutex
)
UnlockKey
(
id
string
)
error
{
klog
.
V
(
5
)
.
Infof
(
"hashedKeyMutex.UnlockKey(...) called for id %q
\r\n
"
,
id
)
km
.
mutexes
[
km
.
hash
(
id
)
%
len
(
km
.
mutexes
)]
.
Unlock
()
klog
.
V
(
5
)
.
Infof
(
"hashedKeyMutex.UnlockKey(...) for id %q completed.
\r\n
"
,
id
)
return
nil
}
func
(
km
*
hashedKeyMutex
)
hash
(
id
string
)
int
{
h
:=
fnv
.
New32a
()
h
.
Write
([]
byte
(
id
))
return
int
(
h
.
Sum32
())
}
pkg/util/keymutex/keymutex.go
deleted
100644 → 0
View file @
1add6b0c
/*
Copyright 2015 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
keymutex
// KeyMutex is a thread-safe interface for acquiring locks on arbitrary strings.
type
KeyMutex
interface
{
// Acquires a lock associated with the specified ID, creates the lock if one doesn't already exist.
LockKey
(
id
string
)
// Releases the lock associated with the specified ID.
// Returns an error if the specified ID doesn't exist.
UnlockKey
(
id
string
)
error
}
pkg/util/keymutex/keymutex_test.go
deleted
100644 → 0
View file @
1add6b0c
/*
Copyright 2015 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package
keymutex
import
(
"testing"
"time"
)
const
(
callbackTimeout
=
1
*
time
.
Second
)
func
newKeyMutexes
()
[]
KeyMutex
{
return
[]
KeyMutex
{
NewHashed
(
0
),
NewHashed
(
1
),
NewHashed
(
2
),
NewHashed
(
4
),
}
}
func
Test_SingleLock_NoUnlock
(
t
*
testing
.
T
)
{
for
_
,
km
:=
range
newKeyMutexes
()
{
// Arrange
key
:=
"fakeid"
callbackCh
:=
make
(
chan
interface
{})
// Act
go
lockAndCallback
(
km
,
key
,
callbackCh
)
// Assert
verifyCallbackHappens
(
t
,
callbackCh
)
}
}
func
Test_SingleLock_SingleUnlock
(
t
*
testing
.
T
)
{
for
_
,
km
:=
range
newKeyMutexes
()
{
// Arrange
key
:=
"fakeid"
callbackCh
:=
make
(
chan
interface
{})
// Act & Assert
go
lockAndCallback
(
km
,
key
,
callbackCh
)
verifyCallbackHappens
(
t
,
callbackCh
)
km
.
UnlockKey
(
key
)
}
}
func
Test_DoubleLock_DoubleUnlock
(
t
*
testing
.
T
)
{
for
_
,
km
:=
range
newKeyMutexes
()
{
// Arrange
key
:=
"fakeid"
callbackCh1stLock
:=
make
(
chan
interface
{})
callbackCh2ndLock
:=
make
(
chan
interface
{})
// Act & Assert
go
lockAndCallback
(
km
,
key
,
callbackCh1stLock
)
verifyCallbackHappens
(
t
,
callbackCh1stLock
)
go
lockAndCallback
(
km
,
key
,
callbackCh2ndLock
)
verifyCallbackDoesntHappens
(
t
,
callbackCh2ndLock
)
km
.
UnlockKey
(
key
)
verifyCallbackHappens
(
t
,
callbackCh2ndLock
)
km
.
UnlockKey
(
key
)
}
}
func
lockAndCallback
(
km
KeyMutex
,
id
string
,
callbackCh
chan
<-
interface
{})
{
km
.
LockKey
(
id
)
callbackCh
<-
true
}
func
verifyCallbackHappens
(
t
*
testing
.
T
,
callbackCh
<-
chan
interface
{})
bool
{
select
{
case
<-
callbackCh
:
return
true
case
<-
time
.
After
(
callbackTimeout
)
:
t
.
Fatalf
(
"Timed out waiting for callback."
)
return
false
}
}
func
verifyCallbackDoesntHappens
(
t
*
testing
.
T
,
callbackCh
<-
chan
interface
{})
bool
{
select
{
case
<-
callbackCh
:
t
.
Fatalf
(
"Unexpected callback."
)
return
false
case
<-
time
.
After
(
callbackTimeout
)
:
return
true
}
}
test/test_owners.csv
View file @
df7e4f3d
...
@@ -793,7 +793,6 @@ k8s.io/kubernetes/pkg/util/hash,timothysc,1,
...
@@ -793,7 +793,6 @@ k8s.io/kubernetes/pkg/util/hash,timothysc,1,
k8s.io/kubernetes/pkg/util/i18n,brendandburns,0,
k8s.io/kubernetes/pkg/util/i18n,brendandburns,0,
k8s.io/kubernetes/pkg/util/io,mtaufen,1,
k8s.io/kubernetes/pkg/util/io,mtaufen,1,
k8s.io/kubernetes/pkg/util/iptables,rrati,0,
k8s.io/kubernetes/pkg/util/iptables,rrati,0,
k8s.io/kubernetes/pkg/util/keymutex,saad-ali,0,
k8s.io/kubernetes/pkg/util/labels,rmmh,1,
k8s.io/kubernetes/pkg/util/labels,rmmh,1,
k8s.io/kubernetes/pkg/util/limitwriter,deads2k,1,
k8s.io/kubernetes/pkg/util/limitwriter,deads2k,1,
k8s.io/kubernetes/pkg/util/mount,xiang90,1,
k8s.io/kubernetes/pkg/util/mount,xiang90,1,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment