Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have the following code in a Windows application, and it appears to be causing file corruption occasionally. The code is used to do asynchronous file writes - pairs of filenames and strings are queued up, and periodically a task is run to empty the queue.

const std::string tempFilename( item.first + c_TempFileSuffix );
std::ofstream out( tempFilename.c_str(), std::ios_base::out );
out << item.second;
out.close();
if( FileExists( item.first ) )
{
    DeleteFile( item.first );
}
RenameFile( tempFilename, item.first );

The functions FileExists, DeleteFile, and RenameFile are thin wrappers around boost::filesystem functions.

Occasionally we're seeing garbled files. Any ideas? Thanks.

share|improve this question
Describe "garbled". Truncated? Uninitialized bytes written to file? – Nicholas Wilson Dec 20 '12 at 1:05
1  
You said this is async, are you certain that the function isn't attempting to write to the same file twice at the same time? – Mooing Duck Dec 20 '12 at 1:13
@Mooing Duck - there is only one thread reading the queue, and reads/writes to the queue are mutex protected – sje397 Dec 20 '12 at 3:05
Yeah garbled - full of junk - I guess that looks the same as uninitialised data. – sje397 Dec 20 '12 at 3:14

1 Answer

How is the file corrupt?

Assuming that you are using std containers like std::queue<> and that by asynchronous you mean "in a separate thread", I think it might be a problem caused by no synchronization. std Containers are not thread-safe, so you must use some form of synchronization, such as a mutex.

So

item = queue.front();
queue.pop();

Becomes

//Should be included in the file with your definition of your queue
//to use boost mutexs
#include <boost/signals2/mutex.hpp>

//mutex guarding queue
mutex m;
std::queue</*ITEM TYPE*/> queue;

m.lock();
item = queue.front();
queue.pop();
m.unlock();

Also if item.second is a pointer then make sure what it points to doesn't change from when you queue a write to when the write is executed. Memory management for this kind of set-up is another story.

share|improve this answer
1  
item.second is a std::string, the queue is implemented as a std::list of std::pair of std::string and it is mutex protected. Thanks though. – sje397 Dec 20 '12 at 3:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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