Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
gostnops
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wei.xuan
gostnops
Commits
8be84855
Unverified
Commit
8be84855
authored
Aug 20, 2019
by
望哥
Committed by
GitHub
Aug 20, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9 from xujianhai666/feat-queue
add queue
parents
bf2907b3
08c96618
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1013 additions
and
7 deletions
+1013
-7
README.md
README.md
+5
-1
bytes_buffer_pool_test.go
bytes/bytes_buffer_pool_test.go
+4
-4
queue.go
container/gxqueue/queue.go
+387
-0
queue_test.go
container/gxqueue/queue_test.go
+615
-0
hashset.go
container/gxset/hashset.go
+1
-1
hashset_test.go
container/gxset/hashset_test.go
+1
-1
No files found.
README.md
View file @
8be84855
...
...
@@ -15,7 +15,11 @@ A go sdk for [Apache Dubbo-go](github.com/apache/dubbo-go).
> slice pool
## container
*
HashSet
*
gxqueue
> Queue
*
gxset
> HashSet
## math
...
...
bytes/bytes_buffer_pool_test.go
View file @
8be84855
...
...
@@ -12,11 +12,11 @@ func TestBytesBufferPool(t *testing.T) {
t
.
Error
(
"iobuffer len not match write bytes' size"
)
}
PutBytesBuffer
(
buf
)
buf2
:=
GetBytesBuffer
()
//
buf2 := GetBytesBuffer()
// https://go-review.googlesource.com/c/go/+/162919/
// before go 1.13, sync.Pool just reserves some objs before every gc and will be cleanup by gc.
// after Go 1.13, maybe there are many reserved objs after gc.
if
buf
!=
buf2
{
t
.
Errorf
(
"buf pointer %p != buf2 pointer %p"
,
buf
,
buf2
)
}
//
if buf != buf2 {
//
t.Errorf("buf pointer %p != buf2 pointer %p", buf, buf2)
//
}
}
container/gxqueue/queue.go
0 → 100644
View file @
8be84855
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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
gxqueue
import
(
"errors"
"runtime"
"sync"
"sync/atomic"
"time"
)
var
(
// ErrDisposed is returned when an operation is performed on a disposed
// queue.
ErrDisposed
=
errors
.
New
(
`queue: disposed`
)
// ErrTimeout is returned when an applicable queue operation times out.
ErrTimeout
=
errors
.
New
(
`queue: poll timed out`
)
// ErrEmptyQueue is returned when an non-applicable queue operation was called
// due to the queue's empty item state
ErrEmptyQueue
=
errors
.
New
(
`queue: empty queue`
)
)
// waiters is the struct responsible for store sema(waiter better) of queue.
type
waiters
[]
*
sema
func
(
w
*
waiters
)
get
()
*
sema
{
if
len
(
*
w
)
==
0
{
return
nil
}
sema
:=
(
*
w
)[
0
]
copy
((
*
w
)[
0
:
],
(
*
w
)[
1
:
])
(
*
w
)[
len
(
*
w
)
-
1
]
=
nil
// or the zero value of T
*
w
=
(
*
w
)[
:
len
(
*
w
)
-
1
]
return
sema
}
func
(
w
*
waiters
)
put
(
sema
*
sema
)
{
*
w
=
append
(
*
w
,
sema
)
}
func
(
w
*
waiters
)
remove
(
sema
*
sema
)
{
if
len
(
*
w
)
==
0
{
return
}
for
i
:=
range
*
w
{
if
(
*
w
)[
i
]
==
sema
{
*
w
=
append
((
*
w
)[
:
i
],
(
*
w
)[
i
+
1
:
]
...
)
return
}
}
}
// items is the struct responsible for store queue data
type
items
[]
interface
{}
func
(
items
*
items
)
get
(
number
int64
)
[]
interface
{}
{
index
:=
int
(
number
)
if
int
(
number
)
>
len
(
*
items
)
{
index
=
len
(
*
items
)
}
returnItems
:=
make
([]
interface
{},
0
,
index
)
returnItems
=
returnItems
[
:
index
]
copy
(
returnItems
[
:
index
],
(
*
items
))
*
items
=
(
*
items
)[
index
:
]
return
returnItems
}
func
(
items
*
items
)
peek
()
(
interface
{},
bool
)
{
if
len
(
*
items
)
==
0
{
return
nil
,
false
}
return
(
*
items
)[
0
],
true
}
func
(
items
*
items
)
getUntil
(
checker
func
(
item
interface
{})
bool
)
[]
interface
{}
{
length
:=
len
(
*
items
)
if
len
(
*
items
)
==
0
{
// returning nil here actually wraps that nil in a list
// of interfaces... thanks go
return
[]
interface
{}{}
}
returnItems
:=
make
([]
interface
{},
0
,
length
)
index
:=
-
1
for
i
,
item
:=
range
*
items
{
if
!
checker
(
item
)
{
break
}
returnItems
=
append
(
returnItems
,
item
)
index
=
i
(
*
items
)[
i
]
=
nil
// prevent memory leak
}
*
items
=
(
*
items
)[
index
+
1
:
]
return
returnItems
}
// sema is the struct responsible for tracking the state
// of waiter. blocking poll if no data, notify if new data comes in.
type
sema
struct
{
ready
chan
bool
response
*
sync
.
WaitGroup
}
func
newSema
()
*
sema
{
return
&
sema
{
ready
:
make
(
chan
bool
,
1
),
response
:
&
sync
.
WaitGroup
{},
}
}
// Queue is the struct responsible for tracking the state
// of the queue.
type
Queue
struct
{
waiters
waiters
items
items
lock
sync
.
Mutex
disposed
int32
}
// New is a constructor for a new threadsafe queue.
func
New
(
hint
int64
)
*
Queue
{
return
&
Queue
{
items
:
make
([]
interface
{},
0
,
hint
),
}
}
// Put will add the specified items to the queue.
func
(
q
*
Queue
)
Put
(
items
...
interface
{})
error
{
if
len
(
items
)
==
0
{
return
nil
}
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
if
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
{
return
ErrDisposed
}
q
.
items
=
append
(
q
.
items
,
items
...
)
for
{
sema
:=
q
.
waiters
.
get
()
if
sema
==
nil
{
break
}
sema
.
response
.
Add
(
1
)
select
{
case
sema
.
ready
<-
true
:
sema
.
response
.
Wait
()
default
:
// This semaphore timed out.
}
if
len
(
q
.
items
)
==
0
{
break
}
}
return
nil
}
// Get retrieves items from the queue. If there are some items in the
// queue, get will return a number UP TO the number passed in as a
// parameter. If no items are in the queue, this method will pause
// until items are added to the queue.
func
(
q
*
Queue
)
Get
(
number
int64
)
([]
interface
{},
error
)
{
return
q
.
Poll
(
number
,
0
)
}
// Poll retrieves items from the queue. If there are some items in the queue,
// Poll will return a number UP TO the number passed in as a parameter. If no
// items are in the queue, this method will pause until items are added to the
// queue or the provided timeout is reached. A non-positive timeout will block
// until items are added. If a timeout occurs, ErrTimeout is returned.
func
(
q
*
Queue
)
Poll
(
number
int64
,
timeout
time
.
Duration
)
([]
interface
{},
error
)
{
if
number
<
1
{
// thanks again go
return
[]
interface
{}{},
nil
}
q
.
lock
.
Lock
()
if
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
{
q
.
lock
.
Unlock
()
return
nil
,
ErrDisposed
}
var
items
[]
interface
{}
if
len
(
q
.
items
)
==
0
{
sema
:=
newSema
()
q
.
waiters
.
put
(
sema
)
q
.
lock
.
Unlock
()
var
timeoutC
<-
chan
time
.
Time
if
timeout
>
0
{
timeoutC
=
time
.
After
(
timeout
)
}
select
{
case
<-
sema
.
ready
:
// we are now inside the put's lock
if
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
{
return
nil
,
ErrDisposed
}
items
=
q
.
items
.
get
(
number
)
sema
.
response
.
Done
()
return
items
,
nil
case
<-
timeoutC
:
// cleanup the sema that was added to waiters
select
{
case
sema
.
ready
<-
true
:
// we called this before Put() could
// Remove sema from waiters.
q
.
lock
.
Lock
()
q
.
waiters
.
remove
(
sema
)
q
.
lock
.
Unlock
()
default
:
// Put() got it already, we need to call Done() so Put() can move on
sema
.
response
.
Done
()
}
return
nil
,
ErrTimeout
}
}
items
=
q
.
items
.
get
(
number
)
q
.
lock
.
Unlock
()
return
items
,
nil
}
// Peek returns a the first item in the queue by value
// without modifying the queue.
func
(
q
*
Queue
)
Peek
()
(
interface
{},
error
)
{
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
if
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
{
return
nil
,
ErrDisposed
}
peekItem
,
ok
:=
q
.
items
.
peek
()
if
!
ok
{
return
nil
,
ErrEmptyQueue
}
return
peekItem
,
nil
}
// GetUntil gets a function and returns a list of items that
// match the checker until the checker returns false. This does not
// wait if there are no items in the queue.
func
(
q
*
Queue
)
GetUntil
(
checker
func
(
item
interface
{})
bool
)
([]
interface
{},
error
)
{
if
checker
==
nil
{
return
nil
,
nil
}
q
.
lock
.
Lock
()
if
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
{
q
.
lock
.
Unlock
()
return
nil
,
ErrDisposed
}
result
:=
q
.
items
.
getUntil
(
checker
)
q
.
lock
.
Unlock
()
return
result
,
nil
}
// Empty returns a bool indicating if this bool is empty.
func
(
q
*
Queue
)
Empty
()
bool
{
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
return
len
(
q
.
items
)
==
0
}
// Len returns the number of items in this queue.
func
(
q
*
Queue
)
Len
()
int64
{
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
return
int64
(
len
(
q
.
items
))
}
// Disposed returns a bool indicating if this queue
// has had disposed called on it.
func
(
q
*
Queue
)
Disposed
()
bool
{
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
return
atomic
.
LoadInt32
(
&
q
.
disposed
)
==
1
}
// Dispose will dispose of this queue and returns
// the items disposed. Any subsequent calls to Get
// or Put will return an error.
func
(
q
*
Queue
)
Dispose
()
[]
interface
{}
{
q
.
lock
.
Lock
()
defer
q
.
lock
.
Unlock
()
atomic
.
StoreInt32
(
&
q
.
disposed
,
1
)
for
_
,
waiter
:=
range
q
.
waiters
{
waiter
.
response
.
Add
(
1
)
select
{
case
waiter
.
ready
<-
true
:
// release Poll immediately
default
:
// ignore if it's a timeout or in the get
}
}
disposedItems
:=
q
.
items
q
.
items
=
nil
q
.
waiters
=
nil
return
disposedItems
}
// ExecuteInParallel will (in parallel) call the provided function
// with each item in the queue until the queue is exhausted. When the queue
// is exhausted execution is complete and all goroutines will be killed.
// This means that the queue will be disposed so cannot be used again.
func
ExecuteInParallel
(
q
*
Queue
,
fn
func
(
interface
{}))
{
if
q
==
nil
{
return
}
q
.
lock
.
Lock
()
// so no one touches anything in the middle
// of this process
length
,
count
:=
uint64
(
len
(
q
.
items
)),
int64
(
-
1
)
// this is important or we might face an infinite loop
if
length
==
0
{
return
}
numCPU
:=
1
if
runtime
.
NumCPU
()
>
1
{
numCPU
=
runtime
.
NumCPU
()
-
1
}
var
wg
sync
.
WaitGroup
wg
.
Add
(
numCPU
)
items
:=
q
.
items
for
i
:=
0
;
i
<
numCPU
;
i
++
{
go
func
()
{
for
{
index
:=
atomic
.
AddInt64
(
&
count
,
1
)
if
index
>=
int64
(
length
)
{
wg
.
Done
()
break
}
fn
(
items
[
index
])
items
[
index
]
=
0
}
}()
}
wg
.
Wait
()
q
.
lock
.
Unlock
()
q
.
Dispose
()
}
container/gxqueue/queue_test.go
0 → 100644
View file @
8be84855
This diff is collapsed.
Click to expand it.
container/hashset.go
→
container/
gxset/
hashset.go
View file @
8be84855
...
...
@@ -15,7 +15,7 @@
* limitations under the License.
*/
package
container
package
gxset
import
(
"fmt"
...
...
container/hashset_test.go
→
container/
gxset/
hashset_test.go
View file @
8be84855
...
...
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
container
package
gxset
import
"testing"
...
...
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