I've tried the following code with both normal ifstreams and the current boost:iostream I'm using, both have the same result.

It is intended to load a file from physfs into memory then pass it to a handler to process (eg Image, audio or data). Currently when c_str is called it only returns a small part of the file.

    	PhysFS::FileStream file("Resources/test.png" , PhysFS::OM_READ);

	if(file.is_open()) {

		String* theFile;

		theFile = new String((std::istreambuf_iterator<char>(file)), 
		std::istreambuf_iterator<char>());

		String::iterator it;
		for ( it=theFile->begin() ; it < theFile->end(); it++ ) {
			std::cout << *it; 
		} // Outputs the entire file

		std::cout << theFile->c_str(); // Outputs only the first few lines

	}

The iterator loop outputs the entire png file as expected, but the c_str call only returns the first few characters (\211PNG).

I've been trying variations of this code for quite some time with no success. Any ideas?

link|improve this question

feedback

3 Answers

up vote 15 down vote accepted

I imagine that the next character is a null (ASCII 0) byte. c_str() simply gives you a *char, therefore your write to stdout is interpreted as a class C string which ends at the first null byte.

If you really need a C-like interface to this string, the main thing is that theFile->c_str() points to your data and theFile.length gives you the number of characters in the string. So you might want to do something like this:

char *c_value = theFile->c_str()
for (int i = 0; i < theFile.length; i++)
{
   cout << c_value[i];
}

The real solution depends on why you are converting to a char * in the first place. If you are calling a legacy function that only accepts char *, there is likely also a length argument to that legacy function.

link|improve this answer
How would I go about fixing that? I don't have much experience with C style strings – Simie Oct 12 '09 at 16:59
Don't use c_str() - manipulate using std::string – Mark Oct 12 '09 at 17:07
I'm using a library which needs a c string input. – Simie Oct 12 '09 at 17:09
1  
I updated my answer. Simie, you want to check that library function to see if it accepts a string-length argument. If it doesn't, that library function might simply be unable to process a string with an embedded null character. – catfood Oct 12 '09 at 17:14
1  
If you're using a (const char*, length) pair, don't use .c_str() but .data(). .c_str() adds an extra \0, possibly copying the string in the process. – MSalters Oct 13 '09 at 14:05
show 3 more comments
feedback

One of the bytes is probably 0. That means end of string to cout when passing a char* (which c_str is)

link|improve this answer
feedback

I would consider using std::vector<unsigned char> instead of std::string for this. It is a lot easier to deal with binary data in a vector. You can reference the underlying pointer using &vec[0] if you need access to a C-style array. I would also make sure that your file abstraction use std::ios_base::binary for the file mode under the hood as well.

link|improve this answer
VERY good point about setting binary mode on the input. – catfood Oct 12 '09 at 17:40
As far as I can tell there is no option in PhysFS to open a file in binary mode. The lack of proper examples on how to use PhysFS is why I thought that it was a problem with me reading the file into memory instead of the display problems. :-( – Simie Oct 12 '09 at 18:48
Yeah, I was going to say that too: don't read the whole file into memory. Unless, I guess, you're quite certain it will be very small. – catfood Oct 12 '09 at 19:35
@Simie: I'm guessing that you are not allowed to use std::ifstream instead? or does PhysFS do something more than read a file. – D.Shawley Oct 12 '09 at 20:35
I'm using PhysFS for the archive support, multi-directory search paths @catfood: I wasn't aware there was a way to stream textures? How else would you do it? – Simie Oct 12 '09 at 21:21
feedback

Your Answer

 
or
required, but never shown

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