Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
cm-projects
RIOT
Commits
47950e8b
Commit
47950e8b
authored
10 years ago
by
René Kijewski
Browse files
Options
Downloads
Patches
Plain Diff
ringbuffer: remove pointer to the end
There is no need for an explicit pointer to the end of the buffer.
parent
726af8d4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/include/ringbuffer.h
+3
-4
3 additions, 4 deletions
sys/include/ringbuffer.h
sys/lib/ringbuffer.c
+33
-28
33 additions, 28 deletions
sys/lib/ringbuffer.c
with
36 additions
and
32 deletions
sys/include/ringbuffer.h
+
3
−
4
View file @
47950e8b
...
...
@@ -21,10 +21,9 @@
typedef
struct
ringbuffer
{
char
*
buf
;
unsigned
int
start
;
unsigned
int
end
;
unsigned
int
size
;
unsigned
int
avail
;
unsigned
int
size
;
unsigned
int
start
;
unsigned
int
avail
;
}
ringbuffer_t
;
void
ringbuffer_init
(
ringbuffer_t
*
restrict
rb
,
char
*
buffer
,
unsigned
bufsize
);
...
...
This diff is collapsed.
Click to expand it.
sys/lib/ringbuffer.c
+
33
−
28
View file @
47950e8b
...
...
@@ -12,6 +12,7 @@
* @{
* @file ringbuffer.c
* @author Kaspar Schleiser <kaspar@schleiser.de>
* @author René Kijewski <rene.kijewski@fu-berlin.de>
* @}
*/
...
...
@@ -20,12 +21,29 @@
void
ringbuffer_init
(
ringbuffer_t
*
restrict
rb
,
char
*
buffer
,
unsigned
bufsize
)
{
rb
->
buf
=
buffer
;
rb
->
start
=
0
;
rb
->
end
=
0
;
rb
->
size
=
bufsize
;
rb
->
start
=
0
;
rb
->
avail
=
0
;
}
static
void
add_tail
(
ringbuffer_t
*
restrict
rb
,
char
c
)
{
unsigned
pos
=
rb
->
start
+
rb
->
avail
++
;
if
(
pos
>=
rb
->
size
)
{
pos
-=
rb
->
size
;
}
rb
->
buf
[
pos
]
=
c
;
}
static
char
get_head
(
ringbuffer_t
*
restrict
rb
)
{
char
result
=
rb
->
buf
[
rb
->
start
];
if
((
--
rb
->
avail
==
0
)
||
(
++
rb
->
start
==
rb
->
size
))
{
rb
->
start
=
0
;
}
return
result
;
}
void
ringbuffer_add
(
ringbuffer_t
*
restrict
rb
,
const
char
*
buf
,
unsigned
n
)
{
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
{
...
...
@@ -35,45 +53,32 @@ void ringbuffer_add(ringbuffer_t *restrict rb, const char *buf, unsigned n)
void
ringbuffer_add_one
(
ringbuffer_t
*
restrict
rb
,
char
c
)
{
if
(
rb
->
avail
==
rb
->
size
)
{
ringbuffer_get_one
(
rb
);
}
rb
->
buf
[
rb
->
end
++
]
=
c
;
if
(
rb
->
end
>=
rb
->
size
)
{
rb
->
end
=
0
;
if
(
ringbuffer_full
(
rb
))
{
get_head
(
rb
);
}
rb
->
avail
++
;
add_tail
(
rb
,
c
);
}
int
ringbuffer_get_one
(
ringbuffer_t
*
restrict
rb
)
{
if
(
rb
->
avail
==
0
)
{
return
-
1
;
if
(
!
ringbuffer_empty
(
rb
)
)
{
return
(
unsigned
char
)
get_head
(
rb
)
;
}
rb
->
avail
--
;
int
c
=
(
char
)
rb
->
buf
[
rb
->
start
++
];
if
(
rb
->
start
>=
rb
->
size
)
{
rb
->
start
=
0
;
else
{
return
-
1
;
}
return
c
;
}
unsigned
ringbuffer_get
(
ringbuffer_t
*
restrict
rb
,
char
*
buf
,
unsigned
n
)
{
unsigned
count
=
0
;
while
(
rb
->
avail
&&
(
count
<
n
))
{
buf
[
count
++
]
=
ringbuffer_get_one
(
rb
);
if
(
n
>
rb
->
avail
)
{
n
=
rb
->
avail
;
}
return
count
;
for
(
unsigned
i
=
0
;
i
<
n
;
++
i
)
{
buf
[
i
]
=
get_head
(
rb
);
}
return
n
;
}
int
ringbuffer_peek_one
(
const
ringbuffer_t
*
restrict
rb_
)
...
...
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