/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
client/SearchQueue.cpp
133 строки
3 KB
bigmuscle
* fixed query in HTTP requests
25 июл 2011, 23:48
25 июл 2011, 23:48
e15eb0e
Код
Авторство
О чём код?
/* * Copyright (C) 2003-2006 RevConnect, http://www.revconnect.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. */ #include "stdinc.h" #include "SearchQueue.h" #include "TimerManager.h" #include "QueueManager.h" #include "SearchManager.h" namespace dcpp { bool SearchQueue::add(const Search& s) { dcassert(s.owners.size() == 1); dcassert(interval >= 10000); // min interval is 15 seconds Lock l(cs); for(deque<Search>::iterator i = searchQueue.begin(); i != searchQueue.end(); i++) { // check dupe if(*i == s) { void* aOwner = *s.owners.begin(); i->owners.insert(aOwner); // if previous search was autosearch and current one isn't, it should be readded before autosearches if(s.token != "auto" && i->token == "auto") { searchQueue.erase(i); break; } return false; } } if(s.token == "auto") { // Insert last (automatic search) searchQueue.push_back(s); } else { bool added = false; if(searchQueue.empty()) { searchQueue.push_front(s); added = true; } else { // Insert before the automatic searches (manual search) for(deque<Search>::iterator i = searchQueue.begin(); i != searchQueue.end(); i++) { if(i->token == "auto") { searchQueue.insert(i, s); added = true; break; } } } if (!added) { searchQueue.push_back(s); } } return true; } bool SearchQueue::pop(Search& s) { dcassert(interval); uint64_t now = GET_TICK(); if(now <= lastSearchTime + interval) return false; { Lock l(cs); if(!searchQueue.empty()){ s = searchQueue.front(); searchQueue.pop_front(); lastSearchTime = now; return true; } } return false; } uint64_t SearchQueue::getSearchTime(void* aOwner){ Lock l(cs); if(aOwner == 0) return 0xFFFFFFFF; uint64_t x = max(lastSearchTime, GET_TICK() - interval); for(deque<Search>::iterator i = searchQueue.begin(); i != searchQueue.end(); i++){ x += interval; if(i->owners.count(aOwner)) return x; else if(i->owners.empty()) break; } return 0; } bool SearchQueue::cancelSearch(void* aOwner){ dcassert(aOwner); Lock l(cs); for(deque<Search>::iterator i = searchQueue.begin(); i != searchQueue.end(); i++){ if(i->owners.count(aOwner)){ i->owners.erase(aOwner); if(i->owners.empty()) searchQueue.erase(i); return true; } } return false; } }