1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
// Copyright (c) 1999 Peter Karlsson
//
// $Id: squishread.cpp,v 1.8 1999/07/16 00:14:37 peter Exp $
//
// 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, version 2
//
// 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, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <iostream.h>
#include <time.h>
#include <string.h>
#include <stdio.h>
#include "squishread.h"
SquishRead::SquishRead(const char *path)
{
areapath = strdup(path);
}
SquishRead::~SquishRead()
{
if (areapath) delete areapath;
}
bool SquishRead::Transfer(time_t starttime, StatEngine &destination)
{
// Check that we got the path correctly in initialization
if (!areapath)
{
cerr << "Internal error: Area path was not allocated properly" << endl;
return false;
}
// Open the message area files
// <name>.sqd - contains everything we need
string filepath = string(areapath) + ".sqd";
FILE *sqd = fopen(filepath.c_str(), "rb");
if (!sqd)
{
cerr << "Error: Cannot open " << filepath << endl;
return false;
}
sqbase_s baseheader;
if (1 != fread(&baseheader, sizeof (sqbase_s), 1, sqd))
{
cerr << "Error: Couldn't read from " << filepath << endl;
return false;
}
SINT32 offset = baseheader.len - sizeof (sqbase_s);
if (offset > 0)
{
fseek(sqd, offset, SEEK_CUR);
}
else if (offset < 0)
{
cerr << "Strange Squish header length" << endl;
fclose(sqd);
return false;
}
SINT32 sqhdroffset = baseheader.sz_sqhdr - sizeof(sqhdr_s);
// Read messages
UINT32 current = baseheader.begin_frame;
if (current < sizeof (sqbase_s))
{
cerr << "Strange Squish header offset" << endl;
fclose(sqd);
return false;
}
UINT32 msgn, msglen;
char *ctrlbuf = NULL, *msgbuf = NULL;
sqhdr_s sqhdr;
xmsg_s xmsg;
for (msgn = 1L; msgn <= baseheader.high_msg; msgn ++)
{
fseek(sqd, current, SEEK_SET);
// Read the SQHDR
if (1 != fread(&sqhdr, sizeof (sqhdr_s), 1, sqd))
{
cerr << "Premature end of Squish data" << endl;
fclose(sqd);
return false;
}
if (sqhdr.id != Squish_id)
{
cerr << "Illegal Squish header ID" << endl;
fclose(sqd);
return false;
}
current = sqhdr.next_frame;
if (Squish_type_normal != sqhdr.frame_type)
{
cerr << "Not normal Squish frame: " << msgn << endl;
continue;
}
if (sqhdroffset) fseek(sqd, sqhdroffset, SEEK_CUR);
// Read the XMSG
if (1 != fread(&xmsg, sizeof (xmsg_s), 1, sqd))
{
cerr << "Premature end of Squish data" << endl;
fclose(sqd);
return false;
}
ctrlbuf = new char[sqhdr.clen + 1];
if (!ctrlbuf)
{
cerr << "Unable to allocate memory for control data (msg #"
<< msgn << ')' << endl;
goto out;
}
fread(ctrlbuf, sqhdr.clen, 1, sqd);
ctrlbuf[sqhdr.clen] = 0;
msglen = sqhdr.msg_length - sizeof(xmsg_s) - sqhdr.clen;
msgbuf = new char[msglen + 1];
if (!msgbuf)
{
cerr << "Unable to allocate memory for message body (msg #"
<< msgn << ')' << endl;
goto out2;
}
fread(msgbuf, msglen, 1, sqd);
msgbuf[msglen] = 0;
// Remove SEEN-BY and PATH that are in Squish part of the body
fixupctrlbuffer(msgbuf, NULL);
// Add to statistics
if (stampToTimeT(&xmsg.date_arrived) >= starttime)
{
destination.AddData(string((char *) xmsg.from),
string((char *) xmsg.to),
string((char *) xmsg.subject),
string(ctrlbuf), string(msgbuf),
stampToTimeT(&xmsg.date_written),
stampToTimeT(&xmsg.date_arrived));
}
// Clean up our mess
out:;
delete ctrlbuf;
out2:;
delete msgbuf;
cout << 100 * msgn / baseheader.high_msg << "% done\r";
}
fclose(sqd);
return true;
}
|