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 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/*
* Copyright (C) 2001-2005 Jacek Sieka, arnetheduck on gmail point com
*
* 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.
*/
#if !defined(AFX_SEARCHMANAGER_H__E8F009DF_D216_4F8F_8C81_07D2FA0BFB7F__INCLUDED_)
#define AFX_SEARCHMANAGER_H__E8F009DF_D216_4F8F_8C81_07D2FA0BFB7F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "SettingsManager.h"
#include "Socket.h"
#include "User.h"
#include "Thread.h"
#include "Client.h"
#include "Singleton.h"
#include "FastAlloc.h"
#include "MerkleTree.h"
#include "SearchManagerListener.h"
#include "TimerManager.h"
#include "AdcCommand.h"
class SearchManager;
class SearchResult : public FastAlloc<SearchResult> {
public:
enum Types {
TYPE_FILE,
TYPE_DIRECTORY
};
typedef SearchResult* Ptr;
typedef vector<Ptr> List;
typedef List::iterator Iter;
SearchResult(Client* aClient, Types aType, int64_t aSize, const string& name, const TTHValue* aTTH, bool aUtf8);
SearchResult(Types aType, int64_t aSize, const string& name, const TTHValue* aTTH);
SearchResult(const User::Ptr& aUser, Types aType, int aSlots, int aFreeSlots,
int64_t aSize, const string& aFile, const string& aHubName,
const string& aHubIpPort, const string& aIp, bool aUtf8) :
file(aFile), hubName(isTTH(aHubName) ? Util::emptyString : aHubName), hubIpPort(aHubIpPort), user(aUser),
size(aSize), type(aType), slots(aSlots), freeSlots(aFreeSlots), IP(aIp),
tth(isTTH(aHubName) ? new TTHValue(aHubName.substr(4)) : NULL), utf8(aUtf8), ref(1) { }
SearchResult(const User::Ptr& aUser, Types aType, int aSlots, int aFreeSlots,
int64_t aSize, const string& aFile, const string& aHubName,
const string& aHubIpPort, TTHValue* aTTH, bool aUtf8) :
file(aFile), hubName(aHubName), hubIpPort(aHubIpPort), user(aUser),
size(aSize), type(aType), slots(aSlots), freeSlots(aFreeSlots),
tth((aTTH != NULL) ? new TTHValue(*aTTH) : NULL), utf8(aUtf8), ref(1) { }
string getFileName() const;
string toSR() const;
AdcCommand toRES(char type) const;
User::Ptr& getUser() { return user; }
string getSlotString() const { return Util::toString(getFreeSlots()) + '/' + Util::toString(getSlots()); }
const string& getFile() const { return file; }
const string& getHubIpPort() const { return hubIpPort; }
const string& getHubName() const { return hubName.empty() ? user->getClientName() : hubName; }
int64_t getSize() const { return size; }
Types getType() const { return type; }
int getSlots() const { return slots; }
int getFreeSlots() const { return freeSlots; }
const string& getIP() const { return IP; }
TTHValue* getTTH() const { return tth; }
bool getUtf8() const { return utf8; }
void incRef() { Thread::safeInc(ref); }
void decRef() {
if(Thread::safeDec(ref) == 0)
delete this;
};
private:
friend class SearchManager;
SearchResult();
~SearchResult() { delete tth; };
SearchResult(const SearchResult& rhs);
string file;
string hubName;
string hubIpPort;
User::Ptr user;
int64_t size;
Types type;
int slots;
int freeSlots;
string IP;
TTHValue* tth;
bool utf8;
volatile long ref;
bool isTTH(const string& str) const {
return str.compare(0, 4, "TTH:") == 0;
}
};
class SearchManager : public Speaker<SearchManagerListener>, public Singleton<SearchManager>, public Thread
{
public:
enum SizeModes {
SIZE_DONTCARE = 0x00,
SIZE_ATLEAST = 0x01,
SIZE_ATMOST = 0x02
};
enum TypeModes {
TYPE_ANY = 0,
TYPE_AUDIO,
TYPE_COMPRESSED,
TYPE_DOCUMENT,
TYPE_EXECUTABLE,
TYPE_PICTURE,
TYPE_VIDEO,
TYPE_DIRECTORY,
TYPE_TTH
};
void search(const string& aName, int64_t aSize, TypeModes aTypeMode, SizeModes aSizeMode, const string& aToken);
void search(const string& aName, const string& aSize, TypeModes aTypeMode, SizeModes aSizeMode, const string& aToken) {
search(aName, Util::toInt64(aSize), aTypeMode, aSizeMode, aToken);
}
void search(StringList& who, const string& aName, int64_t aSize, TypeModes aTypeMode, SizeModes aSizeMode, const string& aToken);
void search(StringList& who, const string& aName, const string& aSize, TypeModes aTypeMode, SizeModes aSizeMode, const string& aToken) {
search(who, aName, Util::toInt64(aSize), aTypeMode, aSizeMode, aToken);
}
static string clean(const string& aSearchString);
void respond(const AdcCommand& cmd);
short getPort()
{
return port;
}
void setPort(short aPort) throw(SocketException);
void disconnect() throw();
void onSearchResult(const string& aLine) {
onData((const u_int8_t*)aLine.data(), aLine.length(), Util::emptyString);
}
int32_t timeToSearch() {
return (int32_t)(((((int64_t)lastSearch) + 5000) - GET_TICK() ) / 1000);
}
bool okToSearch() {
return timeToSearch() <= 0;
}
private:
Socket* socket;
short port;
bool stop;
u_int32_t lastSearch;
friend class Singleton<SearchManager>;
SearchManager() : socket(NULL), port(0), stop(false), lastSearch(0) { };
virtual int run();
virtual ~SearchManager() throw() {
if(socket) {
stop = true;
socket->disconnect();
#ifdef _WIN32
join();
#endif
delete socket;
}
};
void onData(const u_int8_t* buf, size_t aLen, const string& address);
};
#endif // !defined(AFX_SEARCHMANAGER_H__E8F009DF_D216_4F8F_8C81_07D2FA0BFB7F__INCLUDED_)
/**
* @file
* $Id: SearchManager.h,v 1.2 2005/08/21 14:03:43 olof Exp $
*/
|