* Copyright 2011 kubtek <kubtek@mail.com>
*
* This file is part of StarDict.
*
* StarDict 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 3 of the License, or
* (at your option) any later version.
*
* StarDict 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 StarDict. If not, see <http://www.gnu.org/licenses/>.
*/
#include <algorithm>
#include <glib.h>
#include "compositelookup.h"
CompositeLookup::CompositeLookup(void)
:
BuildingLookup(false),
StarDictNetSeq(0)
{
}
void CompositeLookup::new_lookup(void)
{
BuildingLookup = true;
NetDictRequests.clear();
StarDictNetSeq = 0;
}
void CompositeLookup::done_lookup(void)
{
BuildingLookup = false;
}
bool CompositeLookup::is_got_all_responses(void) const
{
if(BuildingLookup)
return false;
return StarDictNetSeq == 0 && NetDictRequests.empty();
}
void CompositeLookup::send_net_dict_request(const std::string& dict_id, const std::string& key)
{
NetDictRequest request(dict_id, key);
if (NetDictRequests.end() == std::find(NetDictRequests.begin(), NetDictRequests.end(), request)) {
NetDictRequests.push_back(request);
}
}
bool CompositeLookup::got_net_dict_responce(const std::string& dict_id, const std::string& key)
{
NetDictRequest response(dict_id, key);
NetDictRequestsList::iterator it = std::find(NetDictRequests.begin(), NetDictRequests.end(), response);
if(it != NetDictRequests.end()) {
NetDictRequests.erase(it);
return true;
}
return false;
}
void CompositeLookup::send_StarDict_net_request(unsigned int seq)
{
StarDictNetSeq = seq;
}
bool CompositeLookup::got_StarDict_net_responce(unsigned int seq)
{
if(StarDictNetSeq == 0)
return false;
if(seq == StarDictNetSeq) {
StarDictNetSeq = 0;
return true;
}
return false;
}