Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Portable way to determine the platform's line separator

Tags:

c++

newline

Different platforms use different line separator schemes (LF, CR-LF, CR, NEL, Unicode LINE SEPARATOR, etc.). C++ (and C) runtime libraries make a lot of this transparent to most programs, by converting '\n' to and from the target platform's native new line encoding. But if your program needs to determine the actual byte sequence used, how could you do it portably?

The best method I've come up with is:

  1. Write a temporary file in text mode with just '\n' in it, letting the run-time do the translation.
  2. Read back the temporary file in binary mode to see the actual bytes.

That feels kludgy. Is there a way to do it without temporary files? I tried stringstreams instead, but the run-time doesn't actually translate '\n' in that context (which makes sense). Does the run-time expose this information in some other way?

like image 921
Adrian McCarthy Avatar asked May 01 '10 16:05

Adrian McCarthy


1 Answers

I'm no C/C++ expert, but there doesn't appear to be anything in the standard library that will directly give you the line separator. The translation is handled transparently by the text-mode file functions.

Even though you feel your approach is "kludgy", it is probably the simplest and most reliable, since you are really testing what line separator is used and written out. And is portable, since you are using standard library functions to write and read the file.

like image 154
mdma Avatar answered Oct 23 '22 05:10

mdma