-
-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Additions I made you may want to know about #18
Comments
Thanks for this use cases, nice to see people find the lib helpful! Are you in a position to add them to library and update the docs to be in-line with the rest? Especially I like Today I do it like: if (lwrb_get_free(...) < sizeof(float)) {
lwrb_skip(..., sizeof(float));
}
lwrb_write(..., &f, sizeof(float)); |
It's pretty bad code I have. That's 95% of what I'm doing. The only difference is I am tracking for an offset if the size of data stored is larger than the size of the buffer. Normally that isn't an issue because the buffer isn't supposed to overwrite, and the user will have to deal with 200 bytes going up but only 100 length being returned. This is hacky and I wrote it quickly. Honestly, I'm not sure if it's worth combining get_free(), skip() and write() into one more efficient function, or leaving them as separate (and tested) components.
Between figuring out your documentation method and doing non-hacky versions, I could make more progress on the latter. Other than ARM, I don't have enough experience with optimization of platforms to make a decision on where to combine the functions or not. I could help, but I can't just go at it myself. |
Let me create a new feature-overwrite branch and we can work there - pull requests are welcome and I will also contribute with tests. Let me know if that's OK for you.. |
Sounds good! Top of my head change for efficency is that if you're going to write larger than the size of the buffer using an offset (different of what you would write and the size you can write), that a _reset() is faster and better than skipping at all data first. You would only use skip if you knew you were going to retain some data that already exists. (also, truth be told, the one I found the hardest is find_sequence() which probably applies to very few people besides me. I think when I go back to that one, I'll use the linear read to check for a wrapping sequence. At that point you only need a heap array the size of your sequence. Although it is obviously more steps) |
Might be better idea then to put these functions in separate file, keeping them as "optional" for the build. Branch done: https://github.com/MaJerle/lwrb/tree/develop-feature-overwrite |
I've seen you do it other places, is this somewhere you would use _ex ? |
I suggest you add new features:
|
Makes sense. Can do. I'm still waiting for you to add If you want to move this conversation somewhere else let me know. Otherwise...
I'll do that soon, hvala. |
Post this to shell, if you need a feature. These features for lwrb are extended and user has to take care of that. No mutex is planned and no thread safety since we modify both pointers. |
#19 submitted Oh, also, if there are going to be two |
I wrote a better copy() than I had roughed some tests in, do you want that as well? |
Sure |
Updated. |
MaJerle/lwshell@b52c415 It is a start at least |
T, fixed a bug. Not sure if you want to leave this open or how you want to proceed. |
I am far behind my backlog - too many things - sorry. will work on that! |
Just a small heads up in case you think any of these are a good idea and worth adding in to the repo.
Nothing I wrote here was good. In fact, it was all quite bad. For the most part I just used your existing functions with small logic around them. This wasn't as efficient as writing them "whole" but got the job done.
size_t lwrb_overwrite(lwrb_t* buff, const void* data, size_t btw)
- Functions like _write() but does not stop if it runs out of room will always return the total data stored. I needed a function that would take a rb that didn't have enough space for the incoming data, remove old data, and fit the new packet in. My use case for this was storing a log in a rolling buffer, it would be nice to not lose data, but it's more important to me in this case to lose some old data than new. One issue with this (and appeared somewhere else) is because this is an overwrite function, if I sent more than the size of the buffer, I wanted to store the latest data not the earliest. So if the size was 100, and I wrote 200, I wanted the second half of my data to be stored, not the first.size_t lwrb_copy(lwrb_t* dest, lwrb_t* src)
- Copies one ring buffer to another. I needed to dump a rb for uart to a tokenizing assembly buffer. The issue here was that you can run into size limitations if one buffer is larger than the other. It also didn't make sense for my application to do this byte by byte, but I also couldn't be sure I had enough stack to allocate the buffer size on entry so I looked at packets of 128 bytes or smaller if there was less data.size_t lwrb_skip_up_to_offset(lwrb_t* buff, size_t len)
- Your _peek has an offset. I needed the same thing for skip. I knew in one application I wanted to get rid of everything but the last n bytes. In my case, again I was tokenizing / parsing, and looking for a deliminator of a few bytes. If I couldn't find three byte delim, I didn't want to clear the last two bytes in the buffer, because those might turn into a complete deliminator soon. (ie: 01 02 03 wasn't found but 01 02 was and an 03 would be coming soon).uint8_t lwrb_find_seq(lwrb_t* buff, const void* const TOKEN, const size_t LEN_TOKEN, size_t* len)
- I wanted to search through the ring buffer for a sequence. This was more difficult than it seemed it should have been the complexity is that just like ring buffers you don't know if your sequence is wrapped or not. In the end, I was in a hurry and made a linear copy of the whole buffer and quickly searched it. This returned true/false for found, and stored the position in at a de-referenced len. That might not be how you like to do it, but I prefer returning statuses and did not want to deal with a -1 for "not found". I also noticed you didn't use bool, although I normally would (no issue for C23!).Nothing to do unless you want to. I would certainly find your take on these probably better than mine with the time I put in. Thought you might want to see how someone was using your code.
The text was updated successfully, but these errors were encountered: