Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
autoradio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ale
autoradio
Commits
38dac952
Commit
38dac952
authored
10 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
add a benchmark tool
parent
e846b922
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/radiobench/radiobench.go
+146
-0
146 additions, 0 deletions
cmd/radiobench/radiobench.go
with
146 additions
and
0 deletions
cmd/radiobench/radiobench.go
0 → 100644
+
146
−
0
View file @
38dac952
package
main
import
(
"flag"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"strings"
"sync"
"time"
)
var
(
numConns
int
stats
=
&
Stats
{}
retryTime
=
2
*
time
.
Second
)
type
Stats
struct
{
HttpStatus
map
[
int
]
int
HttpErrors
int
Errors
int
lock
sync
.
Mutex
}
func
(
s
*
Stats
)
HttpError
(
resp
*
http
.
Response
)
{
s
.
lock
.
Lock
()
defer
s
.
lock
.
Unlock
()
cur
,
ok
:=
s
.
HttpStatus
[
resp
.
StatusCode
]
if
!
ok
{
cur
=
0
}
s
.
HttpStatus
[
resp
.
StatusCode
]
=
cur
+
1
s
.
HttpErrors
++
}
func
(
s
*
Stats
)
Error
()
{
s
.
lock
.
Lock
()
defer
s
.
lock
.
Unlock
()
s
.
Errors
++
}
func
(
s
*
Stats
)
Dump
()
{
s
.
lock
.
Lock
()
defer
s
.
lock
.
Unlock
()
log
.
Printf
(
"errs=%d http_errs=%d http_status=%v"
,
s
.
Errors
,
s
.
HttpErrors
,
s
.
HttpStatus
)
}
func
init
()
{
flag
.
IntVar
(
&
numConns
,
"n"
,
3
,
"number of parallel connections"
)
flag
.
IntVar
(
&
numConns
,
"num-clients"
,
3
,
"number of parallel connections"
)
}
func
readstream
(
id
int
,
streamUrl
string
)
error
{
resp
,
err
:=
http
.
Get
(
streamUrl
)
if
err
!=
nil
{
stats
.
Error
()
return
err
}
if
resp
.
StatusCode
!=
200
{
stats
.
HttpError
(
resp
)
resp
.
Body
.
Close
()
return
fmt
.
Errorf
(
"http status %s"
,
resp
.
Status
)
}
if
resp
.
Header
.
Get
(
"Content-Type"
)
==
"audio/x-mpegurl"
{
data
,
err
:=
ioutil
.
ReadAll
(
resp
.
Body
)
resp
.
Body
.
Close
()
if
err
!=
nil
{
stats
.
Error
()
return
err
}
streamUrl
=
strings
.
TrimSpace
(
string
(
data
))
resp
,
err
=
http
.
Get
(
streamUrl
)
if
err
!=
nil
{
stats
.
Error
()
return
err
}
if
resp
.
StatusCode
!=
200
{
stats
.
HttpError
(
resp
)
resp
.
Body
.
Close
()
return
fmt
.
Errorf
(
"http status %s"
,
resp
.
Status
)
}
}
log
.
Printf
(
"worker(%d): connected to %s"
,
id
,
streamUrl
)
defer
resp
.
Body
.
Close
()
// Just read data and discard it.
buf
:=
make
([]
byte
,
16384
)
for
{
n
,
err
:=
resp
.
Body
.
Read
(
buf
)
if
err
!=
nil
{
stats
.
Error
()
break
}
if
n
==
0
{
break
}
}
return
fmt
.
Errorf
(
"connection lost"
)
}
func
worker
(
id
int
,
streamUrl
string
)
{
for
{
err
:=
readstream
(
id
,
streamUrl
)
log
.
Printf
(
"worker(%d): %v"
,
id
,
err
)
time
.
Sleep
(
retryTime
)
}
}
func
dumpStats
()
{
t
:=
time
.
NewTicker
(
10
*
time
.
Second
)
for
{
<-
t
.
C
stats
.
Dump
()
}
}
func
main
()
{
flag
.
Parse
()
if
flag
.
NArg
()
!=
1
{
fmt
.
Printf
(
"Usage: radiobench [<OPTIONS>] <STREAM_URL>
\n
"
)
os
.
Exit
(
1
)
}
streamUrl
:=
flag
.
Arg
(
0
)
go
dumpStats
()
var
wg
sync
.
WaitGroup
for
i
:=
0
;
i
<
numConns
;
i
++
{
wg
.
Add
(
1
)
go
func
(
id
int
)
{
worker
(
id
,
streamUrl
)
wg
.
Done
()
}(
i
)
}
wg
.
Wait
()
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment