I'm new to this whole embedded thinking about memory etc. I wonder wheter ther is the most efficient way of parsing the strings of known structure, but unknown length on embedded system. (some approaches every embedded developer should know are welcome).
I have structures like the one bold below coming to my avr. Those are basicly commands determining certain actions to be performed by my avr. I don´t want to use a String-class, because of reasons.
number delimiter string delimiter string
I don´t have any power over the protocol. I have a solution using a function with strtok()
, strcpy()
in it. I fill the array with the tokens an then i have some if/else if conditions to perform actions.
But I wonder if there is a solution like state machine (reading character by character) or similiar which works more efficient on embedded systems. I searched for quite a time now and i would be thankful to receive any hints on this fairly common promblem of string parsing.
Thx for the input. I´m not asking for a solution, but for an approach.
Assuming you are trying to parse something non-trivial, take a look at flex and bison.
There is quite a steep learning curve but it has two big advantages over other approaches.