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
|
/*
* Copyright (C) 2000-2022 The Exult Team
*
* Original file by Dancer A.L Vesperman
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "Table.h"
#include "exceptions.h"
using std::FILE;
using std::size_t;
using std::string;
void Table::index_file() {
if (!data) {
throw file_read_exception(identifier.name);
}
if (!is_table(data.get())) { // Not a table file we recognise
throw wrong_file_type_exception(identifier.name, "TABLE");
}
while (true) {
Reference f;
f.size = data->read2();
if (f.size == 65535) {
break;
}
f.offset = data->read4();
object_list.push_back(f);
}
}
/**
* Verify if a file is a table. Note that this is a STATIC method.
* @param in DataSource to verify.
* @return Whether or not the DataSource is a table file.
*/
bool Table::is_table(IDataSource* in) {
const size_t pos = in->getPos();
const size_t file_size = in->getSize();
in->seek(0);
while (true) {
const uint16 size = in->read2();
// End of table marker.
if (size == 65535) {
break;
}
const uint32 offset = in->read4();
if (size > file_size || offset > file_size) {
in->seek(pos);
return false;
}
}
in->seek(pos);
return true;
}
/**
* Verify if a file is a table. Note that this is a STATIC method.
* @param fname Name of file to verify.
* @return Whether or not the file is a table file. Returns false if
* the file does not exist.
*/
bool Table::is_table(const std::string& fname) {
IFileDataSource ds(fname.c_str());
return ds.good() && is_table(&ds);
}
|