2016-03-30 07:48:31 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Paul Sokolovsky
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
all: Unify header guard usage.
The code conventions suggest using header guards, but do not define how
those should look like and instead point to existing files. However, not
all existing files follow the same scheme, sometimes omitting header guards
altogether, sometimes using non-standard names, making it easy to
accidentally pick a "wrong" example.
This commit ensures that all header files of the MicroPython project (that
were not simply copied from somewhere else) follow the same pattern, that
was already present in the majority of files, especially in the py folder.
The rules are as follows.
Naming convention:
* start with the words MICROPY_INCLUDED
* contain the full path to the file
* replace special characters with _
In addition, there are no empty lines before #ifndef, between #ifndef and
one empty line before #endif. #endif is followed by a comment containing
the name of the guard macro.
py/grammar.h cannot use header guards by design, since it has to be
included multiple times in a single C file. Several other files also do not
need header guards as they are only used internally and guaranteed to be
included only once:
* MICROPY_MPHALPORT_H
* mpconfigboard.h
* mpconfigport.h
* mpthreadport.h
* pin_defs_*.h
* qstrdefs*.h
2017-06-29 17:14:58 -04:00
|
|
|
#ifndef MICROPY_INCLUDED_PY_RINGBUF_H
|
|
|
|
#define MICROPY_INCLUDED_PY_RINGBUF_H
|
2016-03-30 07:48:31 -04:00
|
|
|
|
2019-01-19 19:45:35 -05:00
|
|
|
#include "py/gc.h"
|
|
|
|
|
2021-04-23 15:26:42 -04:00
|
|
|
#include <stddef.h>
|
2017-08-07 17:30:11 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-03-30 07:48:31 -04:00
|
|
|
typedef struct _ringbuf_t {
|
|
|
|
uint8_t *buf;
|
2020-04-21 17:37:22 -04:00
|
|
|
uint32_t size;
|
2022-09-16 18:46:02 -04:00
|
|
|
uint32_t used;
|
|
|
|
uint32_t next_read;
|
|
|
|
uint32_t next_write;
|
2016-03-30 07:48:31 -04:00
|
|
|
} ringbuf_t;
|
|
|
|
|
2022-09-16 18:46:02 -04:00
|
|
|
// For static initialization with an existing buffer, use ringbuf_init().
|
2022-01-05 14:48:44 -05:00
|
|
|
bool ringbuf_init(ringbuf_t *r, uint8_t *buf, size_t capacity);
|
2022-09-16 18:46:02 -04:00
|
|
|
|
|
|
|
// For allocation of a buffer on the heap, use ringbuf_alloc().
|
2020-04-21 17:37:22 -04:00
|
|
|
bool ringbuf_alloc(ringbuf_t *r, size_t capacity, bool long_lived);
|
2022-09-16 18:46:02 -04:00
|
|
|
|
|
|
|
// Mark ringbuf as no longer in use, and allow any heap storage to be freed by gc.
|
|
|
|
void ringbuf_deinit(ringbuf_t *r);
|
|
|
|
|
|
|
|
// Note: Ringbuf operations are not atomic.
|
|
|
|
size_t ringbuf_size(ringbuf_t *r);
|
2020-04-21 17:37:22 -04:00
|
|
|
int ringbuf_get(ringbuf_t *r);
|
|
|
|
int ringbuf_put(ringbuf_t *r, uint8_t v);
|
|
|
|
void ringbuf_clear(ringbuf_t *r);
|
2020-04-21 22:40:12 -04:00
|
|
|
size_t ringbuf_num_empty(ringbuf_t *r);
|
|
|
|
size_t ringbuf_num_filled(ringbuf_t *r);
|
2022-01-18 18:09:33 -05:00
|
|
|
size_t ringbuf_put_n(ringbuf_t *r, const uint8_t *buf, size_t bufsize);
|
2021-03-15 09:57:36 -04:00
|
|
|
size_t ringbuf_get_n(ringbuf_t *r, uint8_t *buf, size_t bufsize);
|
2019-09-14 15:40:24 -04:00
|
|
|
|
2022-09-16 18:46:02 -04:00
|
|
|
// Note: big-endian. Return -1 if can't read or write two bytes.
|
2021-04-23 15:26:42 -04:00
|
|
|
int ringbuf_get16(ringbuf_t *r);
|
|
|
|
int ringbuf_put16(ringbuf_t *r, uint16_t v);
|
|
|
|
|
all: Unify header guard usage.
The code conventions suggest using header guards, but do not define how
those should look like and instead point to existing files. However, not
all existing files follow the same scheme, sometimes omitting header guards
altogether, sometimes using non-standard names, making it easy to
accidentally pick a "wrong" example.
This commit ensures that all header files of the MicroPython project (that
were not simply copied from somewhere else) follow the same pattern, that
was already present in the majority of files, especially in the py folder.
The rules are as follows.
Naming convention:
* start with the words MICROPY_INCLUDED
* contain the full path to the file
* replace special characters with _
In addition, there are no empty lines before #ifndef, between #ifndef and
one empty line before #endif. #endif is followed by a comment containing
the name of the guard macro.
py/grammar.h cannot use header guards by design, since it has to be
included multiple times in a single C file. Several other files also do not
need header guards as they are only used internally and guaranteed to be
included only once:
* MICROPY_MPHALPORT_H
* mpconfigboard.h
* mpconfigport.h
* mpthreadport.h
* pin_defs_*.h
* qstrdefs*.h
2017-06-29 17:14:58 -04:00
|
|
|
#endif // MICROPY_INCLUDED_PY_RINGBUF_H
|