In my application i am creating log file of size 5kb .If i exceeds 5 kb of file size , I have to overwrite the old contents with the help of new contents.

If you have any ideas just share with me.

I also need implementation of this technique in c++

I provide some example

Initially the file look like this

sample.txt

sample application text sample

Assume the above sample text file exceeds 5kb then i added new in the source.txt then the file should be like this.

sample.txt

new sample application text sam

Regards, Karthik

link|improve this question

feedback

6 Answers

up vote 3 down vote accepted

Here is some code I have recently written to implement a simple log-file rotation:

std::ostream & libLogging::FileRotationLogSink::GetCurrentStream( 
    std::string::size_type required )
{
    if ( static_cast<std::string::size_type>(m_CurrentStream.tellp( )) + 
        required > m_Limit ) {
        m_CurrentStream.close();
        // remove old backup
        if ( boost::filesystem::exists( m_BackupPath ) ) {
            boost::filesystem::remove( m_BackupPath );
        }
        // backup current logfile
        boost::filesystem::rename( m_LogFilePath, m_BackupPath );
        // open new logfile
        m_CurrentStream.open( m_LogFilePath );
    }
    return m_CurrentStream;
}

required gives the size of the next message that is to be written to the log. If the file gets too big, it is copied (old backup is overwritten), and a new one is started.

link|improve this answer
I think this will remove the previous file and create the new file if the file size exceeds. What I want is that if the file size exceeds then the pointer will move to the top and replace the current contents on top and delete the last line in the file and move every contents down. – karthik Mar 22 '11 at 11:20
@karthik: This is just an example, and should be easy enough to modify to your needs. You can use seekp to reset the write-pointer to the beginning of the file. Or you modify my code to simply skip the backup, and just overwrite the log-file (simple close and open again does that trick). – Björn Pollex Mar 22 '11 at 11:23
@space_cowboy:I check seekp ...by this we can move the position in the file.What i need is if i add some characters in the middle ,it should not be replaced ...like array each characters should be shifted down and the exceeded characters only be deleted – karthik Mar 22 '11 at 11:34
@karthik: Perhaps you should explain that better in your question, ideally with an example. – Björn Pollex Mar 22 '11 at 11:36
@space_cowboy:now look by modified question – karthik Mar 22 '11 at 11:55
feedback

You can count the amount of content you inserted into the log, and check if it is more the 5kb every time. Use a function like:

void writeToLog(char c) {
  if(writeIndex == 5000)
    writeIndex =0;
  log[writeIndex] = c;
  writeIndex += 1;
}

With this sure you can implement the string writing function.

link|improve this answer
feedback

Using WinApi, you should

1) Check if file is bigger than a limit using GetFileSize 2) SetFilePointer to 0,0 + SetEndOfFile

link|improve this answer
Why use WinApi for something so simple for this? I feel like this is why so much code is hard to port... – alternative Mar 22 '11 at 11:00
1  
Since the question is tagged MFC, it seems reasonable to me to use Windows API calls. – zenzelezz Mar 22 '11 at 11:11
@mathepic: because is faster and cleaner and doesn't make the code MFC dependent. – vlg789 Mar 22 '11 at 11:30
feedback

Since you are using MFC, you can use the CFile class for file management. This class has a GetLength method that return the size of the file.

To overwrite the old content you can manage a buffer of 5000 char representing your file content. And at each file writing you just have to replace file content.

link|improve this answer
feedback

An approach like the following could work:

  1. Stream content to file using iostreams (start with a clean file each time you open)
  2. After streaming content, use tellp to get the last put position (and hence size of file so far).
  3. If the position is bigger than 5Kb, then seekp to begining of stream...
link|improve this answer
feedback

log4cxx is a good soution that has already solved this problem plus many more you probably haven't yet considered.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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