RetroShare/retroshare-gui/src/gui/RetroShareLinkAnalyzer.cpp
2009-05-18 14:23:55 +00:00

72 lines
2.6 KiB
C++

/***************************************************************************
* Copyright (C) 2009 *
* *
* 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 <QStringList>
#include "RetroShareLinkAnalyzer.h"
const QString RetroShareLinkAnalyzer::HEADER_NAME = "retroshare://file|";
RetroShareLinkAnalyzer::RetroShareLinkAnalyzer (const QString & url)
{
this->url = url;
}
void RetroShareLinkAnalyzer::setRetroShareLink (const QString & name, const QString & size, const QString & hash)
{
url.append(HEADER_NAME);
url.append(name);
url.append("|");
url.append(size);
url.append("|");
url.append(hash);
url.append("\n");
}
bool RetroShareLinkAnalyzer::getFileInformation(QVector<RetroShareLinkData>& linkList)
{
if (!isValid ())
return false;
QStringList urlList = url.split ("\n");
for (int i = 0, n = urlList.size(); i < n; ++i)
{
if (urlList[i].isEmpty ())
continue;
QStringList list = urlList[i].split ("|");
linkList.push_back (RetroShareLinkData (list.at (NAME_), list.at (SIZE_), list.at (HASH_)));
}
return true;
}
// easy check for now.
bool RetroShareLinkAnalyzer::isValid () const
{
QStringList urlList = url.split ("\n");
if (urlList.isEmpty ())
return false;
QStringList list = urlList[0].split ("|");
return (list.size() % NUMBER_OF_PARTITIONS == 0);
}