I am working on a rudimentary hand-coded lexical scanner and wish to support UTF-8 input (it's not 1970 anymore!). Input characters are read from stdin or a file one at a time and pushed into a buffer until whitespace is seen, etc. I thought about writing my own wrapper for fgetc() that would instead return char[] of bytes that make up the UTF-8 character and work with the result as a string... it'd be easy enough, but would become a slippery-slope. I'd rather not waste time re-inventing the wheel and instead use an existing, tested library like ICU. And so now I have a non-UTF-8 supporting code that works with fgetc(), isspace(), strcmp(), etc. which I am trying to update to use ICU. This is my first foray with ICU and have been reading through the documentation and trying to find usage examples with Google code search, but there are still some points of confusion I'm hoping someone will be able to clarify.
The u_fgetc() function returns UChar, and u_fgetcx() returns UChar32... the documentation recommends using u_fgetcx() to read codepoints, so that's what I'm starting with. I'm keeping the same approach as above, but I'm pushing UChar32s into a buffer instead of chars.
What is the proper way to compare a character against a known value? Originally I was able to do
if (c == '+')to check if the plus-sign was fetched from the input. GCC doesn't complain whencis aUChar32(which is then a comparison betweenUChar32andchar) but is this really proper?I was able to use
strcmp()to compare the buffered characters with a known value, for exampleif ((strcmp(buf, "else") == 0). There isu_strcmp()provided by ICU and I think I may need to use theU_STRING_DECLandU_STRING_INITmacros to specify the known literal, but I am not certain. The documentation shows they result inUChar[], though I assume I needUChar32[]... and I'm uncertain how to use them correctly anyway. Any guidance here would be welcomed.After reading in a series of numeric characters I have been converting them with
strtol()so I can work with them. Is there a similar function made available by ICU since I am convertingUChar32[]now?