Click here to Skip to main content
15,881,173 members
Articles / Desktop Programming / MFC
Article

DataStore - A template class for creating sequential access record files

Rate me:
Please Sign up or sign in to vote.
3.00/5 (10 votes)
15 Nov 2006BSD2 min read 85K   1.4K   23   19
A template class for creating sequential access record files

Introduction

"DataStore" is a template class that wraps C file handling routines in a straightforward manner. This can be used in place of C++ iostream classes for easy serialization of C++ objects.

Background

To understand the code presented here, you should have a basic knowledge of OOPs and C++ templates.

Using the code

For using DataStore, first include datastore.h using the #include preprocessor directive. The template argument to DataStore must be the name of a structure or class, the objects of which "DataStore" will read and write on the file. The constructor of DataStore takes the disk file name as its argument. This file must be opened using the Open() function before any read/write operations can take place. The file will be created, if it does not already exist.

struct Point 
{
  int x;
  int y;
};

DataStore ds("points.dat");
ds.Open();

For writing an object to the file, call the AddRecord() member function. The new record will be appended to the end of the file.

Point p;
p.x = 10;
p.y = 30;
ds.AddRecord(p);

DataStore searches records based on its position in the file. For this, you have to pass the position of the record to the FindRecord() member function. The following code reads the first record from the file:

Point pf = ds.FindRecord(0);
To search for a particular record based on some criteria, you should first get the total number of records in the file and then loop through the entire file until you find the record.
unsigned long recs = ds.GetRecordCount();
bool found = false;
for (unsigned long i=0;i

In the same way, ModifyRecord() and DeleteRecord() functions take the record index as their arguments to perform operations on the file.

ds.ModifyRecord(new_point,1);
ds.DeleteRecord(0);

After file operations are over, you should call the DataStore object's Close() function to release the file handle.

ds.Close();

The demo project creates a new data file, and inserts 100000 records into it. It then permits you to add new records and perform other file operations. (The add operation is performed automatically.) As the number of records grow, you will find that searching for newer records will become slower. This problem can be solved by adding indexing support by using some libraries like BDB. But as long as your application need not store millions of records, you can just be happy with the DataStore class as it is.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralTwo questions Pin
BenTsai28-Apr-05 1:17
BenTsai28-Apr-05 1:17 
GeneralRe: Two questions Pin
AnOldGreenHorn28-Apr-05 17:41
AnOldGreenHorn28-Apr-05 17:41 
GeneralRe: Two questions Pin
BenTsai28-Apr-05 18:01
BenTsai28-Apr-05 18:01 
GeneralRe: Two questions Pin
AnOldGreenHorn28-Apr-05 21:57
AnOldGreenHorn28-Apr-05 21:57 
QuestionShouldnt it be? Pin
Cabaleiro8-Oct-03 20:11
Cabaleiro8-Oct-03 20:11 
GeneralArticle Question Pin
Midnight4898-Sep-03 6:48
Midnight4898-Sep-03 6:48 
GeneralSuggest further extention/encapsulation.. Pin
c++developer28-Aug-03 22:12
c++developer28-Aug-03 22:12 
GeneralSerialization Pin
srana27-Aug-03 2:50
srana27-Aug-03 2:50 
GeneralDatastore - storing a class instead of struct Pin
rwomack26-Aug-03 11:12
rwomack26-Aug-03 11:12 
GeneralRe: Datastore - storing a class instead of struct [modified] Pin
AnOldGreenHorn27-Aug-03 4:45
AnOldGreenHorn27-Aug-03 4:45 
Generaltwo suggestions Pin
Stober26-Aug-03 8:21
Stober26-Aug-03 8:21 
GeneralRe: two suggestions Pin
AnOldGreenHorn27-Aug-03 4:23
AnOldGreenHorn27-Aug-03 4:23 
Questioniostream.h? Pin
DrPizza26-Aug-03 4:01
DrPizza26-Aug-03 4:01 
GeneralRe: iostream.h? Pin
Jim Crafton27-Aug-03 6:29
Jim Crafton27-Aug-03 6:29 
GeneralRe: iostream.h? Pin
Anonymous28-Aug-03 3:52
Anonymous28-Aug-03 3:52 
Questionold c better than iostreams ? could you comment ? Pin
Jonathan de Halleux25-Aug-03 21:47
Jonathan de Halleux25-Aug-03 21:47 
But the old FILE structure and file handling functions in C is found to be more stable than standard C++ stream classes when handling data files with hundreds of records.

Could you comment on this ?

Jonathan de Halleux.
Answer[Message Deleted] Pin
AnOldGreenHorn27-Aug-03 4:34
AnOldGreenHorn27-Aug-03 4:34 
GeneralRe: old c better than iostreams ? could you comment ? Pin
Jonathan de Halleux27-Aug-03 4:40
Jonathan de Halleux27-Aug-03 4:40 
GeneralRe: old c better than iostreams ? could you comment ? Pin
akrc27-Aug-03 7:58
akrc27-Aug-03 7:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.