123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* ---------------------------------------------------------------------------
- Nullsoft Database Engine
- --------------------
- codename: Near Death Experience
- --------------------------------------------------------------------------- */
- /* ---------------------------------------------------------------------------
- Record Class
- --------------------------------------------------------------------------- */
- //#include "record.h"
- #include "../nde.h"
- #include <stdio.h>
- void RecordBase::Retain()
- {
- ref_count++;
- }
- void RecordBase::Release()
- {
- if (--ref_count == 0)
- delete this;
- }
- RecordBase::RecordBase()
- {
- ref_count = 1;
- InsertionPoint = 0;
- }
- //---------------------------------------------------------------------------
- Record::Record(int RecordPos, int insertionPoint, VFILE *TableHandle, Table *ParentTable)
- {
- InsertionPoint = insertionPoint;
- Record *columns = ParentTable->GetColumns();
- int max=columns ? (int)columns->Fields.size() : 128;
- if (RecordPos != 0)
- {
- int n=0;
- uint32_t ThisPos = RecordPos;
- while (ThisPos)
- {
- if (n >= max)
- break;
- Vfseek(TableHandle, ThisPos, SEEK_SET);
- Field Entry (ThisPos);
- Field *TypedEntry = Entry.ReadField(ParentTable, ThisPos, &ThisPos);
- if (!TypedEntry) break; // some db error?
- AddField(TypedEntry);
- n++;
- }
- }
- }
- //---------------------------------------------------------------------------
- RecordBase::~RecordBase()
- {
- //Fields.deleteAll();
- for (Field* field : Fields)
- {
- if (field)
- {
- delete field;
- }
- }
- Fields.clear();
- }
- ColumnField *Record::GetColumnByName(const wchar_t *name)
- {
- for (FieldList::iterator itr=Fields.begin();itr!=Fields.end();itr++)
- {
- ColumnField *p = (ColumnField *)*itr;
- if (!_wcsicmp(p->GetFieldName(), name))
- return p;
- }
- return NULL;
- }
- //---------------------------------------------------------------------------
- int Record::WriteFields(Table *ParentTable, int RecordIndex)
- {
- Field *previous = 0;
- for (FieldList::iterator itr=Fields.begin();itr!=Fields.end();itr++)
- {
- Field *p = *itr;
- Field* nextField = (itr + 1) != Fields.end() ? *(itr + 1) : nullptr;
- //p->WriteField(ParentTable, previous, (Field*)p->next);
- p->WriteField(ParentTable, previous, nextField);
-
- previous = p;
- }
- return WriteIndex(ParentTable, RecordIndex);
- }
- //---------------------------------------------------------------------------
- int Record::WriteIndex(Table *ParentTable, int RecordIndex)
- {
- int P=0;
- if (RecordIndex == NEW_RECORD)
- RecordIndex = ParentTable->index->Insert(InsertionPoint);
- if (!Fields.empty())
- {
- Field *f = *Fields.begin();
- P=f->GetFieldPos();
- }
- return ParentTable->index->Update(RecordIndex, P, this, FALSE);
- }
- //---------------------------------------------------------------------------
- void Record::Delete(Table *ParentTable, int RecordIndex)
- {
- ParentTable->index->Delete(RecordIndex, ParentTable->index->Get(RecordIndex), this);
- }
- void Record::WalkFields(FieldsWalker callback, void *context)
- {
- if (callback)
- {
- for (FieldList::iterator itr=Fields.begin();itr!=Fields.end();itr++)
- {
- if (!callback(this, *itr, context))
- break;
- }
- }
- }
|