mirror of
https://github.com/nzbget/nzbget.git
synced 2026-01-31 17:23:04 -05:00
153 lines
3.2 KiB
C++
153 lines
3.2 KiB
C++
/*
|
|
* This file is part of nzbget
|
|
*
|
|
* Copyright (C) 2007-2015 Andrey Prygunkov <hugbug@users.sourceforge.net>
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* $Revision$
|
|
* $Date$
|
|
*
|
|
*/
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#ifdef WIN32
|
|
#include "win32.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <ctype.h>
|
|
#ifdef WIN32
|
|
#include <direct.h>
|
|
#else
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include "nzbget.h"
|
|
#include "Util.h"
|
|
#include "ParParser.h"
|
|
|
|
bool ParParser::FindMainPars(const char* szPath, ParFileList* pFileList)
|
|
{
|
|
if (pFileList)
|
|
{
|
|
pFileList->clear();
|
|
}
|
|
|
|
DirBrowser dir(szPath);
|
|
while (const char* filename = dir.Next())
|
|
{
|
|
int iBaseLen = 0;
|
|
if (ParseParFilename(filename, &iBaseLen, NULL))
|
|
{
|
|
if (!pFileList)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// check if the base file already added to list
|
|
bool exists = false;
|
|
for (ParFileList::iterator it = pFileList->begin(); it != pFileList->end(); it++)
|
|
{
|
|
const char* filename2 = *it;
|
|
exists = SameParCollection(filename, filename2);
|
|
if (exists)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
if (!exists)
|
|
{
|
|
pFileList->push_back(strdup(filename));
|
|
}
|
|
}
|
|
}
|
|
return pFileList && !pFileList->empty();
|
|
}
|
|
|
|
bool ParParser::SameParCollection(const char* szFilename1, const char* szFilename2)
|
|
{
|
|
int iBaseLen1 = 0, iBaseLen2 = 0;
|
|
return ParseParFilename(szFilename1, &iBaseLen1, NULL) &&
|
|
ParseParFilename(szFilename2, &iBaseLen2, NULL) &&
|
|
iBaseLen1 == iBaseLen2 &&
|
|
!strncasecmp(szFilename1, szFilename2, iBaseLen1);
|
|
}
|
|
|
|
bool ParParser::ParseParFilename(const char* szParFilename, int* iBaseNameLen, int* iBlocks)
|
|
{
|
|
char szFilename[1024];
|
|
strncpy(szFilename, szParFilename, 1024);
|
|
szFilename[1024-1] = '\0';
|
|
for (char* p = szFilename; *p; p++) *p = tolower(*p); // convert string to lowercase
|
|
|
|
int iLen = strlen(szFilename);
|
|
if (iLen < 6)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// find last occurence of ".par2" and trim filename after it
|
|
char* szEnd = szFilename;
|
|
while (char* p = strstr(szEnd, ".par2")) szEnd = p + 5;
|
|
*szEnd = '\0';
|
|
|
|
iLen = strlen(szFilename);
|
|
if (iLen < 6)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (strcasecmp(szFilename + iLen - 5, ".par2"))
|
|
{
|
|
return false;
|
|
}
|
|
*(szFilename + iLen - 5) = '\0';
|
|
|
|
int blockcnt = 0;
|
|
char* p = strrchr(szFilename, '.');
|
|
if (p && !strncasecmp(p, ".vol", 4))
|
|
{
|
|
char* b = strchr(p, '+');
|
|
if (!b)
|
|
{
|
|
b = strchr(p, '-');
|
|
}
|
|
if (b)
|
|
{
|
|
blockcnt = atoi(b+1);
|
|
*p = '\0';
|
|
}
|
|
}
|
|
|
|
if (iBaseNameLen)
|
|
{
|
|
*iBaseNameLen = strlen(szFilename);
|
|
}
|
|
if (iBlocks)
|
|
{
|
|
*iBlocks = blockcnt;
|
|
}
|
|
|
|
return true;
|
|
}
|