2009-01-17 16:53:32 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file network_content.cpp Content sending/receiving part of the network protocol. */
|
|
|
|
|
|
|
|
#if defined(ENABLE_NETWORK)
|
|
|
|
|
|
|
|
#include "../stdafx.h"
|
|
|
|
#include "../rev.h"
|
|
|
|
#include "../fileio_func.h"
|
|
|
|
#include "../string_func.h"
|
|
|
|
#include "../ai/ai.hpp"
|
|
|
|
#include "../window_func.h"
|
|
|
|
#include "../gui.h"
|
2009-01-20 16:51:55 +00:00
|
|
|
#include "../variables.h"
|
2009-01-17 16:53:32 +00:00
|
|
|
#include "network_content.h"
|
|
|
|
|
|
|
|
#include "table/strings.h"
|
|
|
|
|
|
|
|
#if defined(WITH_ZLIB)
|
|
|
|
#include <zlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern bool TarListAddFile(const char *filename);
|
|
|
|
extern bool HasGraphicsSet(const ContentInfo *ci, bool md5sum);
|
2009-03-06 19:33:45 +00:00
|
|
|
extern bool HasScenario(const ContentInfo *ci, bool md5sum);
|
2009-01-20 16:51:55 +00:00
|
|
|
ClientNetworkContentSocketHandler _network_content_client;
|
2009-01-17 16:53:32 +00:00
|
|
|
|
|
|
|
/** Wrapper function for the HasProc */
|
|
|
|
static bool HasGRFConfig(const ContentInfo *ci, bool md5sum)
|
|
|
|
{
|
|
|
|
return FindGRFConfig(BSWAP32(ci->unique_id), md5sum ? ci->md5sum : NULL) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether a function piece of content is locally known.
|
|
|
|
* Matches on the unique ID and possibly the MD5 checksum.
|
|
|
|
* @param ci the content info to search for
|
|
|
|
* @param md5sum also match the MD5 checksum?
|
|
|
|
* @return true iff it's known
|
|
|
|
*/
|
|
|
|
typedef bool (*HasProc)(const ContentInfo *ci, bool md5sum);
|
|
|
|
|
|
|
|
DEF_CONTENT_RECEIVE_COMMAND(Client, PACKET_CONTENT_SERVER_INFO)
|
|
|
|
{
|
|
|
|
ContentInfo *ci = new ContentInfo();
|
|
|
|
ci->type = (ContentType)p->Recv_uint8();
|
|
|
|
ci->id = (ContentID)p->Recv_uint32();
|
|
|
|
ci->filesize = p->Recv_uint32();
|
|
|
|
|
|
|
|
p->Recv_string(ci->name, lengthof(ci->name));
|
|
|
|
p->Recv_string(ci->version, lengthof(ci->name));
|
|
|
|
p->Recv_string(ci->url, lengthof(ci->url));
|
2009-01-18 13:12:57 +00:00
|
|
|
p->Recv_string(ci->description, lengthof(ci->description), true);
|
2009-01-17 16:53:32 +00:00
|
|
|
|
|
|
|
ci->unique_id = p->Recv_uint32();
|
|
|
|
for (uint j = 0; j < sizeof(ci->md5sum); j++) {
|
|
|
|
ci->md5sum[j] = p->Recv_uint8();
|
|
|
|
}
|
|
|
|
|
|
|
|
ci->dependency_count = p->Recv_uint8();
|
|
|
|
ci->dependencies = MallocT<ContentID>(ci->dependency_count);
|
|
|
|
for (uint i = 0; i < ci->dependency_count; i++) ci->dependencies[i] = (ContentID)p->Recv_uint32();
|
|
|
|
|
|
|
|
ci->tag_count = p->Recv_uint8();
|
|
|
|
ci->tags = MallocT<char[32]>(ci->tag_count);
|
|
|
|
for (uint i = 0; i < ci->tag_count; i++) p->Recv_string(ci->tags[i], lengthof(*ci->tags));
|
|
|
|
|
|
|
|
if (!ci->IsValid()) {
|
|
|
|
delete ci;
|
|
|
|
this->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find the appropriate check function */
|
|
|
|
HasProc proc = NULL;
|
|
|
|
switch (ci->type) {
|
|
|
|
case CONTENT_TYPE_NEWGRF:
|
|
|
|
proc = HasGRFConfig;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_TYPE_BASE_GRAPHICS:
|
|
|
|
proc = HasGraphicsSet;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CONTENT_TYPE_AI:
|
|
|
|
case CONTENT_TYPE_AI_LIBRARY:
|
|
|
|
proc = AI::HasAI; break;
|
|
|
|
break;
|
|
|
|
|
2009-03-06 19:33:45 +00:00
|
|
|
case CONTENT_TYPE_SCENARIO:
|
|
|
|
case CONTENT_TYPE_HEIGHTMAP:
|
|
|
|
proc = HasScenario;
|
|
|
|
break;
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (proc != NULL) {
|
|
|
|
if (proc(ci, true)) {
|
|
|
|
ci->state = ContentInfo::ALREADY_HERE;
|
|
|
|
} else {
|
|
|
|
ci->state = ContentInfo::UNSELECTED;
|
2009-01-20 21:05:13 +00:00
|
|
|
if (proc(ci, false)) ci->upgrade = true;
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ci->state = ContentInfo::UNSELECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Something we don't have and has filesize 0 does not exist in te system */
|
|
|
|
if (ci->state == ContentInfo::UNSELECTED && ci->filesize == 0) ci->state = ContentInfo::DOES_NOT_EXIST;
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
/* Do we already have a stub for this? */
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
ContentInfo *ici = *iter;
|
|
|
|
if (ici->type == ci->type && ici->unique_id == ci->unique_id &&
|
|
|
|
memcmp(ci->md5sum, ici->md5sum, sizeof(ci->md5sum)) == 0) {
|
|
|
|
/* Preserve the name if possible */
|
|
|
|
if (StrEmpty(ci->name)) strecpy(ci->name, ici->name, lastof(ci->name));
|
2009-01-20 21:05:13 +00:00
|
|
|
if (ici->IsSelected()) ci->state = ici->state;
|
2009-01-20 16:51:55 +00:00
|
|
|
|
|
|
|
delete ici;
|
|
|
|
*iter = ci;
|
|
|
|
|
|
|
|
this->OnReceiveContentInfo(ci);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Missing content info? Don't list it */
|
|
|
|
if (ci->filesize == 0) {
|
|
|
|
delete ci;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
*this->infos.Append() = ci;
|
|
|
|
|
|
|
|
/* Incoming data means that we might need to reconsider dependencies */
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
this->CheckDependencyState(*iter);
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
this->OnReceiveContentInfo(ci);
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::RequestContentList(ContentType type)
|
|
|
|
{
|
2009-01-20 21:05:13 +00:00
|
|
|
if (type == CONTENT_TYPE_END) {
|
|
|
|
this->RequestContentList(CONTENT_TYPE_BASE_GRAPHICS);
|
2009-03-06 19:33:45 +00:00
|
|
|
this->RequestContentList(CONTENT_TYPE_SCENARIO);
|
|
|
|
this->RequestContentList(CONTENT_TYPE_HEIGHTMAP);
|
2009-01-20 21:05:13 +00:00
|
|
|
this->RequestContentList(CONTENT_TYPE_AI);
|
|
|
|
this->RequestContentList(CONTENT_TYPE_NEWGRF);
|
|
|
|
this->RequestContentList(CONTENT_TYPE_AI_LIBRARY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
this->Connect();
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
Packet *p = new Packet(PACKET_CONTENT_CLIENT_INFO_LIST);
|
|
|
|
p->Send_uint8 ((byte)type);
|
|
|
|
p->Send_uint32(_openttd_newgrf_version);
|
|
|
|
|
|
|
|
this->Send_Packet(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::RequestContentList(uint count, const ContentID *content_ids)
|
|
|
|
{
|
2009-01-20 16:51:55 +00:00
|
|
|
this->Connect();
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
while (count > 0) {
|
|
|
|
/* We can "only" send a limited number of IDs in a single packet.
|
|
|
|
* A packet begins with the packet size and a byte for the type.
|
|
|
|
* Then this packet adds a byte for the content type and a uint16
|
|
|
|
* for the count in this packet. The rest of the packet can be
|
|
|
|
* used for the IDs. */
|
|
|
|
uint p_count = min(count, (SEND_MTU - sizeof(PacketSize) - sizeof(byte) - sizeof(byte) - sizeof(uint16)) / sizeof(uint32));
|
|
|
|
|
|
|
|
Packet *p = new Packet(PACKET_CONTENT_CLIENT_INFO_ID);
|
|
|
|
p->Send_uint16(p_count);
|
|
|
|
|
|
|
|
for (uint i = 0; i < p_count; i++) {
|
|
|
|
p->Send_uint32(content_ids[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->Send_Packet(p);
|
|
|
|
count -= p_count;
|
|
|
|
content_ids += count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::RequestContentList(ContentVector *cv, bool send_md5sum)
|
|
|
|
{
|
|
|
|
if (cv == NULL) return;
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
this->Connect();
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
/* 20 is sizeof(uint32) + sizeof(md5sum (byte[16])) */
|
|
|
|
assert(cv->Length() < 255);
|
|
|
|
assert(cv->Length() < (SEND_MTU - sizeof(PacketSize) - sizeof(byte) - sizeof(uint8)) / (send_md5sum ? 20 : sizeof(uint32)));
|
|
|
|
|
|
|
|
Packet *p = new Packet(send_md5sum ? PACKET_CONTENT_CLIENT_INFO_EXTID_MD5 : PACKET_CONTENT_CLIENT_INFO_EXTID);
|
|
|
|
p->Send_uint8(cv->Length());
|
|
|
|
|
|
|
|
for (ContentIterator iter = cv->Begin(); iter != cv->End(); iter++) {
|
|
|
|
const ContentInfo *ci = *iter;
|
|
|
|
p->Send_uint8((byte)ci->type);
|
|
|
|
p->Send_uint32(ci->unique_id);
|
|
|
|
if (!send_md5sum) continue;
|
|
|
|
|
|
|
|
for (uint j = 0; j < sizeof(ci->md5sum); j++) {
|
|
|
|
p->Send_uint8(ci->md5sum[j]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->Send_Packet(p);
|
2009-01-20 16:51:55 +00:00
|
|
|
|
|
|
|
for (ContentIterator iter = cv->Begin(); iter != cv->End(); iter++) {
|
|
|
|
ContentInfo *ci = *iter;
|
|
|
|
bool found = false;
|
|
|
|
for (ContentIterator iter2 = this->infos.Begin(); iter2 != this->infos.End(); iter2++) {
|
2009-01-23 10:20:29 +00:00
|
|
|
ContentInfo *ci2 = *iter2;
|
2009-01-20 16:51:55 +00:00
|
|
|
if (ci->type == ci2->type && ci->unique_id == ci2->unique_id &&
|
|
|
|
(!send_md5sum || memcmp(ci->md5sum, ci2->md5sum, sizeof(ci->md5sum)) == 0)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
*this->infos.Append() = ci;
|
|
|
|
} else {
|
|
|
|
delete ci;
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
void ClientNetworkContentSocketHandler::DownloadSelectedContent(uint &files, uint &bytes)
|
2009-01-17 16:53:32 +00:00
|
|
|
{
|
2009-01-20 16:51:55 +00:00
|
|
|
files = 0;
|
|
|
|
bytes = 0;
|
|
|
|
|
|
|
|
/** Make the list of items to download */
|
|
|
|
ContentID *ids = MallocT<ContentID>(infos.Length());
|
|
|
|
for (ContentIterator iter = infos.Begin(); iter != infos.End(); iter++) {
|
|
|
|
const ContentInfo *ci = *iter;
|
|
|
|
if (!ci->IsSelected()) continue;
|
|
|
|
|
|
|
|
ids[files++] = ci->id;
|
|
|
|
bytes += ci->filesize;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint count = files;
|
|
|
|
ContentID *content_ids = ids;
|
|
|
|
this->Connect();
|
|
|
|
|
2009-01-17 16:53:32 +00:00
|
|
|
while (count > 0) {
|
|
|
|
/* We can "only" send a limited number of IDs in a single packet.
|
2009-03-14 18:16:29 +00:00
|
|
|
* A packet begins with the packet size and a byte for the type.
|
|
|
|
* Then this packet adds a uint16 for the count in this packet.
|
|
|
|
* The rest of the packet can be used for the IDs. */
|
2009-01-17 16:53:32 +00:00
|
|
|
uint p_count = min(count, (SEND_MTU - sizeof(PacketSize) - sizeof(byte) - sizeof(uint16)) / sizeof(uint32));
|
|
|
|
|
|
|
|
Packet *p = new Packet(PACKET_CONTENT_CLIENT_CONTENT);
|
|
|
|
p->Send_uint16(p_count);
|
|
|
|
|
|
|
|
for (uint i = 0; i < p_count; i++) {
|
|
|
|
p->Send_uint32(content_ids[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->Send_Packet(p);
|
|
|
|
count -= p_count;
|
|
|
|
content_ids += count;
|
|
|
|
}
|
2009-01-20 16:51:55 +00:00
|
|
|
|
|
|
|
free(ids);
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine the full filename of a piece of content information
|
|
|
|
* @param ci the information to get the filename from
|
|
|
|
* @param compressed should the filename end with .gz?
|
|
|
|
* @return a statically allocated buffer with the filename or
|
|
|
|
* NULL when no filename could be made.
|
|
|
|
*/
|
|
|
|
static char *GetFullFilename(const ContentInfo *ci, bool compressed)
|
|
|
|
{
|
|
|
|
Subdirectory dir;
|
|
|
|
switch (ci->type) {
|
|
|
|
default: return NULL;
|
|
|
|
case CONTENT_TYPE_BASE_GRAPHICS: dir = DATA_DIR; break;
|
|
|
|
case CONTENT_TYPE_NEWGRF: dir = DATA_DIR; break;
|
|
|
|
case CONTENT_TYPE_AI: dir = AI_DIR; break;
|
|
|
|
case CONTENT_TYPE_AI_LIBRARY: dir = AI_LIBRARY_DIR; break;
|
|
|
|
case CONTENT_TYPE_SCENARIO: dir = SCENARIO_DIR; break;
|
|
|
|
case CONTENT_TYPE_HEIGHTMAP: dir = HEIGHTMAP_DIR; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char buf[MAX_PATH];
|
|
|
|
FioGetFullPath(buf, lengthof(buf), SP_AUTODOWNLOAD_DIR, dir, ci->filename);
|
|
|
|
strecat(buf, compressed ? ".tar.gz" : ".tar", lastof(buf));
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gunzip a given file and remove the .gz if successful.
|
|
|
|
* @param ci container with filename
|
|
|
|
* @return true if the gunzip completed
|
|
|
|
*/
|
|
|
|
static bool GunzipFile(const ContentInfo *ci)
|
|
|
|
{
|
|
|
|
#if defined(WITH_ZLIB)
|
|
|
|
bool ret = true;
|
2009-02-21 14:00:35 +00:00
|
|
|
FILE *ftmp = fopen(GetFullFilename(ci, true), "rb");
|
|
|
|
gzFile fin = gzdopen(fileno(ftmp), "rb");
|
2009-01-17 16:53:32 +00:00
|
|
|
FILE *fout = fopen(GetFullFilename(ci, false), "wb");
|
|
|
|
|
|
|
|
if (fin == NULL || fout == NULL) {
|
|
|
|
ret = false;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte buff[8192];
|
|
|
|
while (!gzeof(fin)) {
|
|
|
|
int read = gzread(fin, buff, sizeof(buff));
|
|
|
|
if (read < 0 || (size_t)read != fwrite(buff, 1, read, fout)) {
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
2009-02-22 02:57:15 +00:00
|
|
|
if (fin != NULL) {
|
|
|
|
/* Closes ftmp too! */
|
|
|
|
gzclose(fin);
|
|
|
|
} else if (ftmp != NULL) {
|
|
|
|
/* In case the gz stream was opened correctly this will
|
|
|
|
* be closed by gzclose. */
|
|
|
|
fclose(ftmp);
|
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
if (fout != NULL) fclose(fout);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
NOT_REACHED();
|
|
|
|
#endif /* defined(WITH_ZLIB) */
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_CONTENT_RECEIVE_COMMAND(Client, PACKET_CONTENT_SERVER_CONTENT)
|
|
|
|
{
|
|
|
|
if (this->curFile == NULL) {
|
|
|
|
/* When we haven't opened a file this must be our first packet with metadata. */
|
|
|
|
this->curInfo = new ContentInfo;
|
|
|
|
this->curInfo->type = (ContentType)p->Recv_uint8();
|
|
|
|
this->curInfo->id = (ContentID)p->Recv_uint32();
|
|
|
|
this->curInfo->filesize = p->Recv_uint32();
|
|
|
|
p->Recv_string(this->curInfo->filename, lengthof(this->curInfo->filename));
|
|
|
|
|
|
|
|
if (!this->curInfo->IsValid()) {
|
|
|
|
delete this->curInfo;
|
|
|
|
this->curInfo = NULL;
|
|
|
|
this->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->curInfo->filesize != 0) {
|
|
|
|
/* The filesize is > 0, so we are going to download it */
|
|
|
|
const char *filename = GetFullFilename(this->curInfo, true);
|
|
|
|
if (filename == NULL) {
|
|
|
|
/* Unless that fails ofcourse... */
|
|
|
|
DeleteWindowById(WC_NETWORK_STATUS_WINDOW, 0);
|
|
|
|
ShowErrorMessage(STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD, STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD_FILE_NOT_WRITABLE, 0, 0);
|
|
|
|
this->Close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->curFile = fopen(filename, "wb");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* We have a file opened, thus are downloading internal content */
|
|
|
|
size_t toRead = (size_t)(p->size - p->pos);
|
|
|
|
if (fwrite(p->buffer + p->pos, 1, toRead, this->curFile) != toRead) {
|
|
|
|
DeleteWindowById(WC_NETWORK_STATUS_WINDOW, 0);
|
|
|
|
ShowErrorMessage(STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD, STR_CONTENT_ERROR_COULD_NOT_DOWNLOAD_FILE_NOT_WRITABLE, 0, 0);
|
|
|
|
this->Close();
|
|
|
|
fclose(this->curFile);
|
|
|
|
this->curFile = NULL;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-23 02:01:05 +00:00
|
|
|
this->OnDownloadProgress(this->curInfo, (uint)toRead);
|
2009-01-17 16:53:32 +00:00
|
|
|
|
|
|
|
if (toRead == 0) {
|
|
|
|
/* We read nothing; that's our marker for end-of-stream.
|
|
|
|
* Now gunzip the tar and make it known. */
|
|
|
|
fclose(this->curFile);
|
|
|
|
this->curFile = NULL;
|
|
|
|
|
|
|
|
if (GunzipFile(this->curInfo)) {
|
|
|
|
unlink(GetFullFilename(this->curInfo, true));
|
|
|
|
|
|
|
|
TarListAddFile(GetFullFilename(this->curInfo, false));
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
this->OnDownloadComplete(this->curInfo->id);
|
2009-01-17 16:53:32 +00:00
|
|
|
} else {
|
|
|
|
ShowErrorMessage(INVALID_STRING_ID, STR_CONTENT_ERROR_COULD_NOT_EXTRACT, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We ended this file, so clean up the mess */
|
|
|
|
if (this->curFile == NULL) {
|
|
|
|
delete this->curInfo;
|
|
|
|
this->curInfo = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a socket handler with the given socket and (server) address.
|
|
|
|
* @param s the socket to communicate over
|
|
|
|
* @param sin the IP/port of the server
|
|
|
|
*/
|
2009-01-20 16:51:55 +00:00
|
|
|
ClientNetworkContentSocketHandler::ClientNetworkContentSocketHandler() :
|
2009-04-02 18:35:59 +00:00
|
|
|
NetworkContentSocketHandler(),
|
2009-01-17 16:53:32 +00:00
|
|
|
curFile(NULL),
|
2009-01-20 16:51:55 +00:00
|
|
|
curInfo(NULL),
|
|
|
|
isConnecting(false)
|
2009-01-17 16:53:32 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Clear up the mess ;) */
|
|
|
|
ClientNetworkContentSocketHandler::~ClientNetworkContentSocketHandler()
|
|
|
|
{
|
|
|
|
delete this->curInfo;
|
|
|
|
if (this->curFile != NULL) fclose(this->curFile);
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) delete *iter;
|
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
class NetworkContentConnecter : TCPConnecter {
|
|
|
|
public:
|
|
|
|
NetworkContentConnecter(const NetworkAddress &address) : TCPConnecter(address) {}
|
2009-01-17 16:53:32 +00:00
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
virtual void OnFailure()
|
|
|
|
{
|
|
|
|
_network_content_client.isConnecting = false;
|
|
|
|
_network_content_client.OnConnect(false);
|
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
virtual void OnConnect(SOCKET s)
|
|
|
|
{
|
|
|
|
assert(_network_content_client.sock == INVALID_SOCKET);
|
|
|
|
_network_content_client.isConnecting = false;
|
|
|
|
_network_content_client.sock = s;
|
2009-04-07 18:23:14 +00:00
|
|
|
_network_content_client.Reopen();
|
2009-01-20 16:51:55 +00:00
|
|
|
_network_content_client.OnConnect(true);
|
|
|
|
}
|
|
|
|
};
|
2009-01-17 16:53:32 +00:00
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
/**
|
|
|
|
* Connect with the content server.
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::Connect()
|
|
|
|
{
|
|
|
|
this->lastActivity = _realtime_tick;
|
2009-01-17 16:53:32 +00:00
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
if (this->sock != INVALID_SOCKET || this->isConnecting) return;
|
|
|
|
this->isConnecting = true;
|
2009-04-03 17:20:57 +00:00
|
|
|
new NetworkContentConnecter(NetworkAddress(NETWORK_CONTENT_SERVER_HOST, NETWORK_CONTENT_SERVER_PORT, AF_UNSPEC));
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-20 16:51:55 +00:00
|
|
|
* Disconnect from the content server.
|
2009-01-17 16:53:32 +00:00
|
|
|
*/
|
2009-01-20 21:05:13 +00:00
|
|
|
void ClientNetworkContentSocketHandler::Close()
|
2009-01-17 16:53:32 +00:00
|
|
|
{
|
2009-01-20 16:51:55 +00:00
|
|
|
if (this->sock == INVALID_SOCKET) return;
|
2009-01-20 21:05:13 +00:00
|
|
|
NetworkContentSocketHandler::Close();
|
|
|
|
|
|
|
|
this->OnDisconnect();
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether we received/can send some data from/to the content server and
|
|
|
|
* when that's the case handle it appropriately
|
|
|
|
*/
|
2009-01-20 16:51:55 +00:00
|
|
|
void ClientNetworkContentSocketHandler::SendReceive()
|
2009-01-17 16:53:32 +00:00
|
|
|
{
|
2009-01-20 16:51:55 +00:00
|
|
|
if (this->sock == INVALID_SOCKET || this->isConnecting) return;
|
|
|
|
|
|
|
|
if (this->lastActivity + IDLE_TIMEOUT < _realtime_tick) {
|
|
|
|
this->Close();
|
|
|
|
return;
|
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
|
|
|
|
fd_set read_fd, write_fd;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
FD_ZERO(&read_fd);
|
|
|
|
FD_ZERO(&write_fd);
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
FD_SET(this->sock, &read_fd);
|
|
|
|
FD_SET(this->sock, &write_fd);
|
2009-01-17 16:53:32 +00:00
|
|
|
|
|
|
|
tv.tv_sec = tv.tv_usec = 0; // don't block at all.
|
|
|
|
#if !defined(__MORPHOS__) && !defined(__AMIGA__)
|
|
|
|
select(FD_SETSIZE, &read_fd, &write_fd, NULL, &tv);
|
|
|
|
#else
|
|
|
|
WaitSelect(FD_SETSIZE, &read_fd, &write_fd, NULL, &tv, NULL);
|
|
|
|
#endif
|
2009-02-25 17:00:59 +00:00
|
|
|
if (FD_ISSET(this->sock, &read_fd)) {
|
|
|
|
this->Recv_Packets();
|
|
|
|
this->lastActivity = _realtime_tick;
|
|
|
|
}
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
this->writable = !!FD_ISSET(this->sock, &write_fd);
|
|
|
|
this->Send_Packets();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Download information of a given Content ID if not already tried
|
|
|
|
* @param cid the ID to try
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::DownloadContentInfo(ContentID cid)
|
|
|
|
{
|
|
|
|
/* When we tried to download it already, don't try again */
|
|
|
|
if (this->requested.Contains(cid)) return;
|
|
|
|
|
|
|
|
*this->requested.Append() = cid;
|
|
|
|
assert(this->requested.Contains(cid));
|
|
|
|
this->RequestContentList(1, &cid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the content info based on a ContentID
|
|
|
|
* @param cid the ContentID to search for
|
|
|
|
* @return the ContentInfo or NULL if not found
|
|
|
|
*/
|
|
|
|
ContentInfo *ClientNetworkContentSocketHandler::GetContent(ContentID cid)
|
|
|
|
{
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
ContentInfo *ci = *iter;
|
|
|
|
if (ci->id == cid) return ci;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select a specific content id.
|
|
|
|
* @param cid the content ID to select
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::Select(ContentID cid)
|
|
|
|
{
|
|
|
|
ContentInfo *ci = this->GetContent(cid);
|
2009-01-20 21:05:13 +00:00
|
|
|
if (ci == NULL || ci->state != ContentInfo::UNSELECTED) return;
|
2009-01-20 16:51:55 +00:00
|
|
|
|
|
|
|
ci->state = ContentInfo::SELECTED;
|
|
|
|
this->CheckDependencyState(ci);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unselect a specific content id.
|
|
|
|
* @param cid the content ID to deselect
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::Unselect(ContentID cid)
|
|
|
|
{
|
|
|
|
ContentInfo *ci = this->GetContent(cid);
|
2009-01-20 21:05:13 +00:00
|
|
|
if (ci == NULL || !ci->IsSelected()) return;
|
2009-01-20 16:51:55 +00:00
|
|
|
|
|
|
|
ci->state = ContentInfo::UNSELECTED;
|
|
|
|
this->CheckDependencyState(ci);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Select everything we can select */
|
|
|
|
void ClientNetworkContentSocketHandler::SelectAll()
|
|
|
|
{
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
ContentInfo *ci = *iter;
|
|
|
|
if (ci->state == ContentInfo::UNSELECTED) {
|
|
|
|
ci->state = ContentInfo::SELECTED;
|
|
|
|
this->CheckDependencyState(ci);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Select everything that's an update for something we've got */
|
2009-01-20 21:05:13 +00:00
|
|
|
void ClientNetworkContentSocketHandler::SelectUpgrade()
|
2009-01-20 16:51:55 +00:00
|
|
|
{
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
ContentInfo *ci = *iter;
|
2009-01-20 21:05:13 +00:00
|
|
|
if (ci->state == ContentInfo::UNSELECTED && ci->upgrade) {
|
2009-01-20 16:51:55 +00:00
|
|
|
ci->state = ContentInfo::SELECTED;
|
|
|
|
this->CheckDependencyState(ci);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Unselect everything that we've not downloaded so far. */
|
|
|
|
void ClientNetworkContentSocketHandler::UnselectAll()
|
|
|
|
{
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
ContentInfo *ci = *iter;
|
|
|
|
if (ci->IsSelected()) ci->state = ContentInfo::UNSELECTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Toggle the state of a content info and check it's dependencies */
|
|
|
|
void ClientNetworkContentSocketHandler::ToggleSelectedState(const ContentInfo *ci)
|
|
|
|
{
|
|
|
|
switch (ci->state) {
|
|
|
|
case ContentInfo::SELECTED:
|
|
|
|
case ContentInfo::AUTOSELECTED:
|
|
|
|
this->Unselect(ci->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ContentInfo::UNSELECTED:
|
|
|
|
this->Select(ci->id);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse lookup the dependencies of (direct) parents over a given child.
|
|
|
|
* @param parents list to store all parents in (is not cleared)
|
|
|
|
* @param child the child to search the parents' dependencies for
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::ReverseLookupDependency(ConstContentVector &parents, const ContentInfo *child) const
|
|
|
|
{
|
|
|
|
for (ConstContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) {
|
|
|
|
const ContentInfo *ci = *iter;
|
|
|
|
if (ci == child) continue;
|
|
|
|
|
|
|
|
for (uint i = 0; i < ci->dependency_count; i++) {
|
|
|
|
if (ci->dependencies[i] == child->id) {
|
|
|
|
*parents.Append() = ci;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse lookup the dependencies of all parents over a given child.
|
|
|
|
* @param tree list to store all parents in (is not cleared)
|
|
|
|
* @param child the child to search the parents' dependencies for
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::ReverseLookupTreeDependency(ConstContentVector &tree, const ContentInfo *child) const
|
|
|
|
{
|
|
|
|
*tree.Append() = child;
|
|
|
|
|
|
|
|
/* First find all direct parents */
|
|
|
|
for (ConstContentIterator iter = tree.Begin(); iter != tree.End(); iter++) {
|
|
|
|
ConstContentVector parents;
|
|
|
|
this->ReverseLookupDependency(parents, *iter);
|
|
|
|
|
|
|
|
for (ConstContentIterator piter = parents.Begin(); piter != parents.End(); piter++) {
|
|
|
|
tree.Include(*piter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check the dependencies (recursively) of this content info
|
|
|
|
* @param ci the content info to check the dependencies of
|
|
|
|
*/
|
|
|
|
void ClientNetworkContentSocketHandler::CheckDependencyState(ContentInfo *ci)
|
|
|
|
{
|
|
|
|
if (ci->IsSelected() || ci->state == ContentInfo::ALREADY_HERE) {
|
|
|
|
/* Selection is easy; just walk all children and set the
|
|
|
|
* autoselected state. That way we can see what we automatically
|
|
|
|
* selected and thus can unselect when a dependency is removed. */
|
|
|
|
for (uint i = 0; i < ci->dependency_count; i++) {
|
|
|
|
ContentInfo *c = this->GetContent(ci->dependencies[i]);
|
|
|
|
if (c == NULL) {
|
|
|
|
this->DownloadContentInfo(ci->dependencies[i]);
|
|
|
|
} else if (c->state == ContentInfo::UNSELECTED) {
|
|
|
|
c->state = ContentInfo::AUTOSELECTED;
|
|
|
|
this->CheckDependencyState(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ci->state != ContentInfo::UNSELECTED) return;
|
|
|
|
|
|
|
|
/* For unselection we need to find the parents of us. We need to
|
|
|
|
* unselect them. After that we unselect all children that we
|
|
|
|
* depend on and are not used as dependency for us, but only when
|
|
|
|
* we automatically selected them. */
|
|
|
|
ConstContentVector parents;
|
|
|
|
this->ReverseLookupDependency(parents, ci);
|
|
|
|
for (ConstContentIterator iter = parents.Begin(); iter != parents.End(); iter++) {
|
|
|
|
const ContentInfo *c = *iter;
|
|
|
|
if (!c->IsSelected()) continue;
|
|
|
|
|
|
|
|
this->Unselect(c->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint i = 0; i < ci->dependency_count; i++) {
|
|
|
|
const ContentInfo *c = this->GetContent(ci->dependencies[i]);
|
|
|
|
if (c == NULL) {
|
|
|
|
DownloadContentInfo(ci->dependencies[i]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c->state != ContentInfo::AUTOSELECTED) continue;
|
|
|
|
|
|
|
|
/* Only unselect when WE are the only parent. */
|
|
|
|
parents.Clear();
|
|
|
|
this->ReverseLookupDependency(parents, c);
|
|
|
|
|
|
|
|
/* First check whether anything depends on us */
|
|
|
|
int sel_count = 0;
|
|
|
|
bool force_selection = false;
|
|
|
|
for (ConstContentIterator iter = parents.Begin(); iter != parents.End(); iter++) {
|
|
|
|
if ((*iter)->IsSelected()) sel_count++;
|
|
|
|
if ((*iter)->state == ContentInfo::SELECTED) force_selection = true;
|
|
|
|
}
|
|
|
|
if (sel_count == 0) {
|
|
|
|
/* Nothing depends on us */
|
|
|
|
this->Unselect(c->id);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Something manually selected depends directly on us */
|
|
|
|
if (force_selection) continue;
|
|
|
|
|
|
|
|
/* "Flood" search to find all items in the dependency graph*/
|
|
|
|
parents.Clear();
|
|
|
|
this->ReverseLookupTreeDependency(parents, c);
|
|
|
|
|
|
|
|
/* Is there anything that is "force" selected?, if so... we're done. */
|
|
|
|
for (ConstContentIterator iter = parents.Begin(); iter != parents.End(); iter++) {
|
|
|
|
if ((*iter)->state != ContentInfo::SELECTED) continue;
|
|
|
|
|
|
|
|
force_selection = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* So something depended directly on us */
|
|
|
|
if (force_selection) continue;
|
|
|
|
|
|
|
|
/* Nothing depends on us, mark the whole graph as unselected.
|
|
|
|
* After that's done run over them once again to test their children
|
|
|
|
* to unselect. Don't do it immediatelly because it'll do exactly what
|
|
|
|
* we're doing now. */
|
|
|
|
for (ConstContentIterator iter = parents.Begin(); iter != parents.End(); iter++) {
|
|
|
|
const ContentInfo *c = *iter;
|
|
|
|
if (c->state == ContentInfo::AUTOSELECTED) this->Unselect(c->id);
|
|
|
|
}
|
|
|
|
for (ConstContentIterator iter = parents.Begin(); iter != parents.End(); iter++) {
|
|
|
|
this->CheckDependencyState(this->GetContent((*iter)->id));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-23 10:20:29 +00:00
|
|
|
void ClientNetworkContentSocketHandler::Clear()
|
|
|
|
{
|
|
|
|
for (ContentIterator iter = this->infos.Begin(); iter != this->infos.End(); iter++) delete *iter;
|
|
|
|
|
|
|
|
this->infos.Clear();
|
2009-02-24 13:25:35 +00:00
|
|
|
this->requested.Clear();
|
2009-01-23 10:20:29 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 16:51:55 +00:00
|
|
|
/*** CALLBACK ***/
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::OnConnect(bool success)
|
|
|
|
{
|
2009-01-21 12:23:08 +00:00
|
|
|
for (ContentCallback **iter = this->callbacks.Begin(); iter != this->callbacks.End(); /* nothing */) {
|
|
|
|
ContentCallback *cb = *iter;
|
|
|
|
cb->OnConnect(success);
|
2009-01-23 09:00:01 +00:00
|
|
|
if (iter != this->callbacks.End() && *iter == cb) iter++;
|
2009-01-20 16:51:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::OnDisconnect()
|
|
|
|
{
|
2009-01-21 12:23:08 +00:00
|
|
|
for (ContentCallback **iter = this->callbacks.Begin(); iter != this->callbacks.End(); /* nothing */) {
|
|
|
|
ContentCallback *cb = *iter;
|
|
|
|
cb->OnDisconnect();
|
2009-01-23 09:00:01 +00:00
|
|
|
if (iter != this->callbacks.End() && *iter == cb) iter++;
|
2009-01-20 16:51:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::OnReceiveContentInfo(const ContentInfo *ci)
|
|
|
|
{
|
2009-01-21 12:23:08 +00:00
|
|
|
for (ContentCallback **iter = this->callbacks.Begin(); iter != this->callbacks.End(); /* nothing */) {
|
|
|
|
ContentCallback *cb = *iter;
|
|
|
|
cb->OnReceiveContentInfo(ci);
|
2009-01-23 09:00:01 +00:00
|
|
|
if (iter != this->callbacks.End() && *iter == cb) iter++;
|
2009-01-20 16:51:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::OnDownloadProgress(const ContentInfo *ci, uint bytes)
|
|
|
|
{
|
2009-01-21 12:23:08 +00:00
|
|
|
for (ContentCallback **iter = this->callbacks.Begin(); iter != this->callbacks.End(); /* nothing */) {
|
|
|
|
ContentCallback *cb = *iter;
|
|
|
|
cb->OnDownloadProgress(ci, bytes);
|
2009-01-23 09:00:01 +00:00
|
|
|
if (iter != this->callbacks.End() && *iter == cb) iter++;
|
2009-01-20 16:51:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientNetworkContentSocketHandler::OnDownloadComplete(ContentID cid)
|
|
|
|
{
|
|
|
|
ContentInfo *ci = this->GetContent(cid);
|
|
|
|
if (ci != NULL) {
|
|
|
|
ci->state = ContentInfo::ALREADY_HERE;
|
|
|
|
}
|
|
|
|
|
2009-01-21 12:23:08 +00:00
|
|
|
for (ContentCallback **iter = this->callbacks.Begin(); iter != this->callbacks.End(); /* nothing */) {
|
|
|
|
ContentCallback *cb = *iter;
|
|
|
|
cb->OnDownloadComplete(cid);
|
2009-01-23 09:00:01 +00:00
|
|
|
if (iter != this->callbacks.End() && *iter == cb) iter++;
|
2009-01-20 16:51:55 +00:00
|
|
|
}
|
2009-01-17 16:53:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ENABLE_NETWORK */
|