I have a binary file in CSV format that contains multiple records. Each record is entered in as user_name, last_name, first_name, num_wins, num_losses, num_ties. I am creating a method to update a certain players record of wins,losses and ties. The user inputs the username to change followed by the changes to the wins, losses and ties. For example smithj 4 5 1. This will find the smithj record and add 4 to the wins etc.

How do I use lseek or fseek to accomplish this? Or is there another way to do this?

link|improve this question

2  
CSV usually contains plain text. It's short for Comma Separated Value. Regardless, lseek and fseek aren't going to jump to the correct spot unless you know where that is. Additionally, if you increase the record size (for instance when you add 1 to 9 and get 10), you're going to have troubles. – xscott Oct 18 '10 at 2:20
If you need to stick with CSV, I'd plan on reading the file line by line, and writing it out line by line. When you find one that matches, you can change it as appropriate. – xscott Oct 18 '10 at 2:21
This kind of problem is really solved much easier with a real database format. I recommend Sqlite. However, that will be a bit of a learning curve if you're just getting started. – xscott Oct 18 '10 at 2:22
1  
I was going to answer, and then I read the question. Unless you have a really big CSV file (and you should really avoid that), there won't be an advantage to using seek over the easier method of reading the entire file into memory and writing it all back out when you're done. – Potatoswatter Oct 18 '10 at 6:45
feedback

3 Answers

up vote 1 down vote accepted

Response to request for write-up of example - assuming fixed size records:

enum { RECSIZE = 256 };

char buffer[RECSIZE];
FILE *fp = ...;   // File to read from and write to

int recnum = 37;  // Counting from record 0
long offset = recnum * RECSIZE;

if (fseek(fp, offset, SEEK_SET) != 0)
    ...error...
if (fread(buffer, sizeof(buffer), 1, fp) != 1)
    ...error...
...modify buffer...
if (fseek(fp, offset, SEEK_SET) != 0)
    ...error...
if (fwrite(buffer, sizeof(buffer), 1, fp) != 1)
    ...error...

Repeat the code from the declaration of recnum to the end once for each record that must be modified (think loop).

With variable size records that change size as you edit them, you have to work a lot harder - so much so that it is probably simpler to copy the old file into memory one record at a time, modifying the record appropriately, and then writing the modified record to a new file.

link|improve this answer
feedback

Assuming the file is a text file, then you will have to pad the lines to a constant width. Then use lseek(), read(), and write() to modify the lines. Having a constant length for each line is crucial: it allows you to compute the starting position of each line.

link|improve this answer
feedback

It's fairly easy to do if each record is the same number of bytes. You would check the first record to see if it's a match, and if not then do fseek(f, record_size, SEEK_CUR); and check the next record.

If each record is going to be a different number of bytes, all I can think of is that you put the number of bytes the record is before the actual record. And then read that in, and then fseek() that many bytes to get to the next record size. I've seen some binary file formats do this which makes things fairly easy.

link|improve this answer
1  
You have to read as well as seek - or, more usually, you read until you find, then rewind (with fseek()) to the start of the record so you can overwrite it. If you only read part of the record, you might need to do seeks between the reads. However, the disk drive will probably be read in chunks that are 4096 bytes long (some power of 2 between 512 bytes and about 16 KiB) and unless your record is extraordinarily long, you will merely be shuffling data around in your program by reading less than the full record; the actual disk traffic won't be affected by partial record reads. – Jonathan Leffler Oct 18 '10 at 3:02
Would it be possible for someone to write up an example of how to do this? – IZI_Shadow_IZI Oct 18 '10 at 3:25
feedback

Your Answer

 
or
required, but never shown

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