vote up 1 vote down star

I'd like to read a binary file and use something like std::string that automatically resizes the buffer and such.

I'm using Visual C++. What are my options?

flag

67% accept rate
Do you want to read the whole file into an std::string? – Jacob Oct 7 at 21:34
He is basically asking for a binary safe string. Is std::string is binary safe? – Cem Kalyoncu Oct 7 at 21:36
2  
why use a std::string for a binary file? – daniel Oct 7 at 21:40
Try std::vector<char> instead – orip Nov 19 at 15:47

4 Answers

vote up 4 vote down check

std::string should be safe to do so... you only have to be careful using .c_str() method. Use .data().

link|flag
-1, you don't even know if the internal representation is in contiguous memory (depends on the implementation), so data() is very dangerous – orip Nov 19 at 15:46
Yes, I do (as long as the library is standards-compliant). C++ Standard, point 21.3.6.3: "If size() is nonzero, the member [data() const] returns a pointer to the initial element of an array whose first size() elements equal the corresponding elements of the string controlled by *this." – liori Nov 19 at 17:22
vote up 8 vote down

The std::string class already does handle data with embedded NUL characters. What problem are you encountering?

Note that when using the .c_str() method, any embedded NUL character will terminate the returned C-style string.

link|flag
Ah, problem I was having was using the += operator to append a char* to the string. Best to use .assign() and .append(). – known Oct 8 at 1:23
What eaxactly do you mean with "any embedded NUL character will terminate the returned C-style string" ? .c_str() will return all characters of the std::string, and then an extra \0. It's not like .c_str() stops copying characters after the first \0. Of course, if you ONLY have that const char*, you won't know which \0 is the last one. – MSalters Oct 8 at 8:18
@MSalters: all the implementations of std::string that I'm familiar with don't actually copy anything on .c_str() (who would free it?). The problem is not .c_str() itself, but whatever function you pass it to next; for example strlen() would of course stop at the first NUL. – Greg Hewgill Oct 8 at 9:38
vote up 0 vote down

std::string allows NUL characters so you can just go ahead and use that.

There is no problem with using c_str() or data(). Yes, the embedded NULs will be in your data, but if you don't use them to terminate your strings (you'll need to call length() to find out how many bytes are in your string) then all will be good.

link|flag
vote up 2 vote down

You can always use std::vector<unsigned char> v (or whatever type of input you expect) and then to get at the buffer you simply &v[0] and v.size() for the size.

link|flag
+1 Seems more sensible for binary data. – UncleBens Oct 7 at 23:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.