/* Copyright (C) 2006-2007 Werner Dittmann This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * Authors: Werner Dittmann */ // #define UNIT_TEST #include #include #include static ZIDFile* instance; ZIDFile::~ZIDFile() { } ZIDFile* ZIDFile::getInstance() { if (instance == NULL) { instance = new ZIDFile(); } return instance; } int ZIDFile::open(char *name) { zidrecord_t rec; unsigned int* ip; // check for an already active ZID file if (zidFile != NULL) { return 0; } if ((zidFile = fopen(name, "rb+")) == NULL) { zidFile = fopen(name, "wb+"); // New file, generate an associated random ZID and save // it as first record if (zidFile != NULL) { ip = (unsigned int*)associatedZid; memset(&rec, 0, sizeof(zidrecord_t)); srandom(time(NULL)); *ip++ = random(); *ip++ = random(); *ip = random(); memcpy(rec.identifier, associatedZid, IDENTIFIER_LEN); fseek(zidFile, 0L, SEEK_SET); rec.ownZid = 1; fwrite(&rec, sizeof(zidrecord_t), 1, zidFile); fflush(zidFile); } } else { fseek(zidFile, 0L, SEEK_SET); if (fread(&rec, sizeof(zidrecord_t), 1, zidFile) != 1) { fclose(zidFile); zidFile = NULL; return -1; } if (rec.ownZid != 1) { fclose(zidFile); zidFile = NULL; return -1; } memcpy(associatedZid, rec.identifier, IDENTIFIER_LEN); } return ((zidFile == NULL) ? -1 : 1); } void ZIDFile::close() { if (zidFile != NULL) { fclose(zidFile); zidFile = NULL; } } unsigned int ZIDFile::getRecord(ZIDRecord *zidRecord) { unsigned long pos; zidrecord_t rec; int numRead; fseek(zidFile, (long)(sizeof(zidrecord_t)), SEEK_SET); do { pos = ftell(zidFile); numRead = fread(&rec, sizeof(zidrecord_t), 1, zidFile); // skip invalid records while(rec.ownZid == 1 && rec.recValid == 0 && numRead == 1) { numRead = fread(&rec, sizeof(zidrecord_t), 1, zidFile); } // if we are at end of file, then no record found. Create new // record and write its data at end of file. if (numRead == 0) { memset(&rec, 0, sizeof(zidrecord_t)); memcpy(rec.identifier, zidRecord->record.identifier, IDENTIFIER_LEN); rec.recValid = 1; fwrite(&rec, sizeof(zidrecord_t), 1, zidFile); break; } } while (memcmp(zidRecord->record.identifier, rec.identifier, IDENTIFIER_LEN) != 0); // Copy the read data into the record structure memcpy(&zidRecord->record, &rec, sizeof(zidrecord_t)); // remember position of record in file for save operation zidRecord->position = pos; return 1; } unsigned int ZIDFile::saveRecord(ZIDRecord *zidRecord) { fseek(zidFile, zidRecord->position, SEEK_SET); fwrite(&zidRecord->record, sizeof(zidrecord_t), 1, zidFile); return 1; } #ifdef UNIT_TEST int main(int argc, char *argv[]) { ZIDFile *zid = ZIDFile::getInstance(); zid->open("testzid"); ZIDRecord zr3("123456789012"); zid->getRecord(&zr3); zid->saveRecord(&zr3); ZIDRecord zr4("210987654321"); zid->getRecord(&zr4); zid->saveRecord(&zr4); zr3.setNewRs1("11122233344455566677788899900012"); zid->saveRecord(&zr3); zr3.setNewRs1("00099988877766655544433322211121"); zid->saveRecord(&zr3); zid->close(); // Reopen, manipulate 2nd record zid->open("testzid"); ZIDRecord zr5("210987654321"); zid->getRecord(&zr5); zr5.setNewRs1("aaa22233344455566677788899900012"); zid->saveRecord(&zr5); zr5.setNewRs1("bbb99988877766655544433322211121"); zid->saveRecord(&zr5); zid->close(); // reopen, manipulate 2nd record again zid->open("testzid"); ZIDRecord zr6("210987654321"); zid->getRecord(&zr6); zr6.setNewRs1("ccc22233344455566677788899900012"); zr6.setNewRs1("ddd99988877766655544433322211121"); zid->saveRecord(&zr6); zid->close(); } #endif /** EMACS ** * Local variables: * mode: c++ * c-default-style: ellemtel * c-basic-offset: 4 * End: */