Shown here is the application that generates CObject and CObList derived classes for Object-Oriented database management.
Some of the projects I have been working on lately have made extensive use
of CObject derived classes for encapulated data management (Object-Oriented Databases). After
creating only a few data objects, you begin to realize that the production of much of the code
could be automated. This project is a code generator to produce CObject-dervied data classes
with serialization and protected data members.
In addition to the CObject derived data classes, the application can also generate a sorted CObList
derived class to hold your data objects. For each data object you create, you can specify index
members. The list of objects is then sorted by these index members. When you add a new object to
the list, the CObList derived class ensures that it is added in the correct position in the list.
Features of this code generator:
- Produces CObject derived classes, and CObList derived classes to hold the objects in a sorted list
- Class name follows the selected file name
- Variables are assigned data types based on Hungarian notation prefixes
- Includes Serialization code
- All data members are protected and accessed with Get/Set inline functions
- Includes initialization code in constructor
- Includes member function to duplicate the properties of an object
- Includes last modified date/time
- Includes Dump and AssertValid functions
- Object list can be sorted on multiple fields
Limitations of the current version:
- Currently, you can only create one "key" value, although with a little trickery, your could run the application multiple times to generate multiple CObList derived class and allow multiple lists.
- If you change the value of one of the key fields, the list does not resort. Although it would be a simple matter to add a sort function to the CObList derived class, the difficult is that there could be multiple instances of the CObList derived class throughout your application, all containing pointers to the same objects. So if one object changed a key field, you have to resort all those lists. The question is how best to keep track of where all those lists are. I don't have an answer for that yet!
- The function to add a new object to the list is not well optimized for the sorted list
- There is no copy constructor
To use the code generator:
1. Select a file name for the source file output. Your header file will have the same name but with an ".h" extension. Also, the class name is derived from the file name such that Example.cpp will produce a class called "CExample", and the COblist derived class will be
CExampleList. Note that the code generator will overwrite any existing files.
2. Enter the names of the data members for the class. Data types are determined
from the Hungarian notation prefixes. The program uses the following prefixes (these are easy to change):
- dt -- COleDateTime
- str -- CStirng
- n -- int
- f -- double (not FLAG!)
- b -- BOOL
- rgb -- COLORREF
If you want to generate a CObList derived class to hold your objects, enter Index members for the class. These will be added to your CObject derived class. The list will be sorted by these members in the order in which they appear. The indeces will also be used for comparing objects, and will available as parameters in a constructor.
If you leave the Indeces list blank, the application will not generate a CObList derived class. Only the CObject derived class will be generated.
3. Click the "Generate" button to generate the source file and header file.
The code generator produces code using my own programming
style so you may want to adapt it to more closely follow your own style.
#ifndef __EXAMPLE_H__
#define __EXAMPLE_H__
class CExample;
class CExampleList : public CObList
{
public:
CExample* FindEntry(COleDateTime dtDate, int nOrder, CString strLocationID);
POSITION FindEntryPos(COleDateTime dtDate, int nOrder, CString strLocationID);
POSITION FindEntryPosBruteForce(COleDateTime dtDate, int nOrder,
CString strLocationID);
void AddExample(CExample* pNew);
void RemoveExample(COleDateTime dtDate, int nOrder, CString strLocationID);
virtual void Serialize(CArchive& ar);
void ClearAndDelete();
};
class CExample : public CObject
{
public:
DECLARE_SERIAL(CExample);
CExample();
CExample(COleDateTime dtDate, int nOrder, CString strLocationID);
~CExample();
public:
protected:
COleDateTime m_dtDate;
int m_nOrder;
CString m_strLocationID;
CString m_strCustomerName;
COleDateTime m_dtBirthDate;
COLORREF m_rgbColor;
COleDateTime m_dtCreated;
COleDateTime m_dtLastModified;
public:
virtual void Serialize(CArchive& ar);
void Duplicate(CExample* pSource);
void Clear();
int Compare(COleDateTime dtDate, int nOrder, CString strLocationID);
int Compare(CExample* pTest);
#ifdef _DEBUG
void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
public:
inline void SetDate(COleDateTime dtNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_dtDate = dtNew; }
inline COleDateTime GetDate() {;
return m_dtDate; }
inline void SetOrder(int nNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_nOrder = nNew; }
inline int GetOrder() {;
return m_nOrder; }
inline void SetLocationID(CString strNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_strLocationID = strNew;
m_strLocationID.FreeExtra(); }
inline CString GetLocationID() {;
return m_strLocationID; }
inline void SetCustomerName(CString strNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_strCustomerName = strNew;
m_strCustomerName.FreeExtra(); }
inline CString GetCustomerName() {;
return m_strCustomerName; }
inline void SetBirthDate(COleDateTime dtNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_dtBirthDate = dtNew; }
inline COleDateTime GetBirthDate() {;
return m_dtBirthDate; }
inline void SetColor(COLORREF rgbNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_rgbColor = rgbNew; }
inline COLORREF GetColor() {;
return m_rgbColor; }
inline void SetCreated(COleDateTime dtNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_dtCreated = dtNew; }
inline COleDateTime GetCreated() {;
return m_dtCreated; }
inline void SetLastModified(COleDateTime dtNew) {
m_dtLastModified = COleDateTime::GetCurrentTime();
m_dtLastModified = dtNew; }
inline COleDateTime GetLastModified() {;
return m_dtLastModified; }
};
#endif
Here is the source file code generated using the program as configured in the above picture. The green comments are ones I added for this article and are not generated by the program.
#include "stdafx.h"
#include "Example.h"
IMPLEMENT_SERIAL(CExample, CObject, 0);
CExample* CExampleList::FindEntry(COleDateTime dtDate, int nOrder,
CString strLocationID)
{
POSITION Pos = FindEntryPos(dtDate, nOrder, strLocationID);
if (Pos == NULL) return NULL;
return (CExample*)GetAt(Pos);
}
POSITION CExampleList::FindEntryPos(COleDateTime dtDate, int nOrder,
CString strLocationID)
{
POSITION Pos;
CExample* pExample;
div_t divresult;
int nCurrent, nHigh, nLow, nCompareResult, nLastCurrent = -1;
nLow = 0;
nHigh = GetCount();
divresult = div(nHigh - nLow, 2);
nCurrent = nLow + divresult.quot;
if (nHigh <= 0) goto l_NotFound;
while (TRUE)
{
Pos = FindIndex(nCurrent);
pExample = (CExample*)GetAt(Pos);
nCompareResult = pExample->Compare(dtDate, nOrder,
strLocationID);
if (nCompareResult == 0)
{
return Pos;
}
if (nCompareResult > 0)
{
nHigh = nCurrent;
divresult = div(nHigh - nLow, 2);
nCurrent = nLow + divresult.quot;
}
else
{
nLow = nCurrent;
divresult = div(nHigh - nLow, 2);
nCurrent = nLow + divresult.quot;
}
if (nCurrent == nLastCurrent) goto l_NotFound;
nLastCurrent = nCurrent;
}
l_NotFound:;
#ifdef _DEBUG
Pos = FindEntryPosBruteForce(dtDate, nOrder, strLocationID);
if (Pos != NULL) TRACE("Searching algorithm failed\n");
#endif
return NULL;
}
POSITION CExampleList::FindEntryPosBruteForce(COleDateTime dtDate,
int nOrder,
CString strLocationID)
{
CExample* pExample;
POSITION Pos = GetHeadPosition();
while (Pos)
{
pExample = (CExample*)GetNext(Pos);
if (pExample->Compare(dtDate, nOrder, strLocationID) == 0)
{
return Pos;
}
}
return NULL;
}
void CExampleList::AddExample(CExample* pNew)
{
CExample* pExample;
int nCompareResult;
POSITION Pos;
ASSERT_VALID(pNew);
ASSERT(Find(pNew) == NULL);
Pos = GetTailPosition();
while (Pos)
{
pExample = (CExample*)GetAt(Pos);
nCompareResult = pExample->Compare(pNew);
ASSERT(nCompareResult != 0);
if (nCompareResult == 0) return;
if (nCompareResult == -1)
{
InsertAfter(Pos, pNew);
return;
}
GetPrev(Pos);
}
AddHead(pNew);
return;
}
void CExampleList::RemoveExample(COleDateTime dtDate, int nOrder,
CString strLocationID)
{
POSITION Pos = FindEntryPos(dtDate, nOrder, strLocationID);
if (Pos) RemoveAt(Pos);
}
void CExampleList::Serialize(CArchive& ar)
{
DWORD dwVersion = 0x00000000;
int n, nCount;
POSITION Pos;
CExample* pExample;
if (ar.IsStoring())
{
ar<<dwVersion;
nCount = GetCount();
ar<<nCount;
Pos = GetHeadPosition();
while (Pos)
{
pExample = (CExample*)GetNext(Pos);
pExample->Serialize(ar);
}
}
else
{
ar>>dwVersion;
ASSERT(GetCount() == 0);
ar>>nCount;
for (n = 0; n < nCount; ++n)
{
pExample = new CExample();
if (pExample == NULL)
THROW(new CMemoryException());
pExample->Serialize(ar);
AddTail(pExample);
}
}
}
void CExampleList::ClearAndDelete()
{
CExample* pExample;
POSITION Pos = GetHeadPosition();
while (Pos)
{
pExample = (CExample*)GetNext(Pos);
ASSERT_VALID(pExample);
delete pExample;
}
RemoveAll();
}
CExample::CExample()
{
Clear();
m_dtCreated = COleDateTime::GetCurrentTime();
}
CExample::CExample(COleDateTime dtDate, int nOrder, CString strLocationID)
{
Clear();
m_dtCreated = COleDateTime::GetCurrentTime();
m_dtDate = dtDate;
m_nOrder = nOrder;
m_strLocationID = strLocationID;
}
void CExample::Clear()
{
m_dtDate = 0.0;
m_nOrder = 0;
m_strLocationID = _T("");
m_strCustomerName = _T("");
m_dtBirthDate = 0.0;
m_rgbColor = 0;
m_dtCreated = 0.0;
m_dtLastModified = 0.0;
}
CExample::~CExample()
{
}
#ifdef _DEBUG
void CExample::Dump(CDumpContext& dc) const
{
dc.SetDepth(1);
dc <<"Date = " << m_dtDate;
dc <<"Order = " << m_nOrder;
dc <<"LocationID = " << m_strLocationID;
dc <<"CustomerName = " << m_strCustomerName;
dc <<"BirthDate = " << m_dtBirthDate;
dc <<"Color = " << m_rgbColor;
dc <<"Created = " << m_dtCreated;
dc <<"LastModified = " << m_dtLastModified;
}
void CExample::AssertValid() const
{
CObject::AssertValid();
}
#endif
void CExample::Serialize(CArchive& ar)
{
DWORD dwVersion = 0x00000000;
if (ar.IsStoring())
{
ar<<dwVersion;
ar<<m_dtDate<<m_nOrder<<m_strLocationID
<<m_strCustomerName<<m_dtBirthDate<<m_rgbColor
<<m_dtCreated<<m_dtLastModified;
}
else
{
ar>>dwVersion;
ar>>m_dtDate>>m_nOrder>>m_strLocationID>>m_strCustomerName
>>m_dtBirthDate>>m_rgbColor>>m_dtCreated>>m_dtLastModified;
}
CObject::Serialize(ar);
}
void CExample::Duplicate(CExample* pSource)
{
m_dtDate = pSource->m_dtDate;
m_nOrder = pSource->m_nOrder;
m_strLocationID = pSource->m_strLocationID;
m_strCustomerName = pSource->m_strCustomerName;
m_dtBirthDate = pSource->m_dtBirthDate;
m_rgbColor = pSource->m_rgbColor;
m_dtCreated = pSource->m_dtCreated;
m_dtLastModified = pSource->m_dtLastModified;
}
int CExample::Compare(COleDateTime dtDate, int nOrder, CString strLocationID)
{
int nCompare;
if (dtDate.m_status != COleDateTime::valid) return -1;
if (m_dtDate < dtDate) return -1;
if (m_dtDate > dtDate) return 1;
if (m_nOrder < nOrder) return -1;
if (m_nOrder > nOrder) return 1;
nCompare = m_strLocationID.Compare(strLocationID);
if (nCompare < 0) return -1;
if (nCompare > 0) return 1;
return 0;
}
int CExample::Compare(CExample* pTest)
{
return Compare(pTest->GetDate(), pTest->GetOrder(), pTest->GetLocationID());
}
So that's it. I am somewhat new to OODB, so I am interested in feedback and improvements.