Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
galene
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
galene
Commits
b4edb7c0
Commit
b4edb7c0
authored
Jul 22, 2022
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid overflow in FromDuration and ToDuration.
Thanks to lamhai1401.
parent
7d01f033
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
10 deletions
+34
-10
rtptime/rtptime.go
rtptime/rtptime.go
+15
-10
rtptime/rtptime_test.go
rtptime/rtptime_test.go
+19
-0
No files found.
rtptime/rtptime.go
View file @
b4edb7c0
...
...
@@ -2,6 +2,7 @@
package
rtptime
import
(
"math/bits"
"time"
)
...
...
@@ -9,25 +10,29 @@ import (
var
epoch
=
time
.
Now
()
// FromDuration converts a time.Duration into units of 1/hz.
// Negative values are clamped to zero.
func
FromDuration
(
d
time
.
Duration
,
hz
uint32
)
int64
{
return
int64
(
d
)
*
int64
(
hz
)
/
int64
(
time
.
Second
)
if
d
<
0
{
return
-
FromDuration
(
-
d
,
hz
)
}
hi
,
lo
:=
bits
.
Mul64
(
uint64
(
d
),
uint64
(
hz
))
q
,
_
:=
bits
.
Div64
(
hi
,
lo
,
uint64
(
time
.
Second
))
return
int64
(
q
)
}
// ToDuration converts units of 1/hz into a time.Duration.
func
ToDuration
(
tm
int64
,
hz
uint32
)
time
.
Duration
{
return
time
.
Duration
(
tm
*
int64
(
time
.
Second
)
/
int64
(
hz
))
}
func
sat
(
a
int64
)
uint64
{
if
a
<
0
{
return
0
if
tm
<
0
{
return
-
ToDuration
(
-
tm
,
hz
)
}
return
uint64
(
a
)
hi
,
lo
:=
bits
.
Mul64
(
uint64
(
tm
),
uint64
(
time
.
Second
))
q
,
_
:=
bits
.
Div64
(
hi
,
lo
,
uint64
(
hz
))
return
time
.
Duration
(
q
)
}
// Now returns the current time in units of 1/hz from an arbitrary origin.
func
Now
(
hz
uint32
)
uint64
{
return
sat
(
FromDuration
(
time
.
Since
(
epoch
),
hz
))
return
uint64
(
FromDuration
(
time
.
Since
(
epoch
),
hz
))
}
// Microseconds is like Now, but uses microseconds.
...
...
@@ -46,7 +51,7 @@ func Jiffies() uint64 {
// TimeToJiffies converts a time.Time into jiffies.
func
TimeToJiffies
(
tm
time
.
Time
)
uint64
{
return
sat
(
FromDuration
(
tm
.
Sub
(
epoch
),
JiffiesPerSec
))
return
uint64
(
FromDuration
(
tm
.
Sub
(
epoch
),
JiffiesPerSec
))
}
// The origin of NTP time.
...
...
rtptime/rtptime_test.go
View file @
b4edb7c0
...
...
@@ -27,6 +27,25 @@ func TestDuration(t *testing.T) {
}
}
func
TestDurationOverflow
(
t
*
testing
.
T
)
{
delta
:=
10
*
time
.
Minute
dj
:=
FromDuration
(
delta
,
JiffiesPerSec
)
var
prev
int64
for
d
:=
time
.
Duration
(
0
);
d
<
time
.
Duration
(
1000
*
time
.
Hour
);
d
+=
delta
{
jiffies
:=
FromDuration
(
d
,
JiffiesPerSec
)
if
d
!=
0
{
if
jiffies
!=
prev
+
dj
{
t
.
Errorf
(
"%v: %v, %v"
,
d
,
jiffies
,
prev
)
}
}
d2
:=
ToDuration
(
jiffies
,
JiffiesPerSec
)
if
d2
!=
d
{
t
.
Errorf
(
"%v != %v (%v)"
,
d2
,
d
,
jiffies
)
}
prev
=
jiffies
}
}
func
differs
(
a
,
b
,
delta
uint64
)
bool
{
if
a
<
b
{
a
,
b
=
b
,
a
...
...
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