fixed recordings with path size longer that 200 chars

This commit is contained in:
louis 2014-04-18 17:41:30 +02:00
parent 4f90ed5cc8
commit 4f9aa5ca01
4 changed files with 16 additions and 5 deletions

View File

@ -325,7 +325,7 @@ bool cScrapManager::GetEventType(ScraperGetEventType *call) {
} else if (call->recording) {
sRecordingsKey k;
k.recStart = call->recording->Start();
k.recPath = call->recording->FileName();
k.recPath = getRecPath(call->recording);
map<sRecordingsKey, sEventsValue>::iterator hit = recordings.find(k);
if (hit == recordings.end())
return false;
@ -445,7 +445,7 @@ bool cScrapManager::GetPoster(ScraperGetPoster *call) {
} else if (call->recording) {
sRecordingsKey k;
k.recStart = call->recording->Start();
k.recPath = call->recording->FileName();
k.recPath = getRecPath(call->recording);
map<sRecordingsKey, sEventsValue>::iterator hit = recordings.find(k);
if (hit == recordings.end())
return false;
@ -480,7 +480,7 @@ bool cScrapManager::GetPosterThumb(ScraperGetPosterThumb *call) {
} else if (call->recording) {
sRecordingsKey k;
k.recStart = call->recording->Start();
k.recPath = call->recording->FileName();
k.recPath = getRecPath(call->recording);
map<sRecordingsKey, sEventsValue>::iterator hit = recordings.find(k);
if (hit == recordings.end())
return false;

View File

@ -125,6 +125,15 @@ string replaceString(string content, string search, string repl) {
return content;
}
string getRecPath(const cRecording *rec) {
if (!rec)
return "";
string recPath = rec->FileName();
if (recPath.size() > 200)
recPath = recPath.substr(0, 199);
return recPath;
}
/****************************************************************************************
* SPLTSTRING

View File

@ -19,6 +19,8 @@ void toLower(string &s);
bool isNumber(const string& s);
string replaceString(string content, string search, string repl);
string getRecPath(const cRecording *rec);
class splitstring : public string {
vector<string> flds;
public:

View File

@ -879,7 +879,7 @@ int cUpdate::ReadRecordings(void) {
int cUpdate::ScanVideoDir(void) {
int newRecs = 0;
for (cRecording *rec = Recordings.First(); rec; rec = Recordings.Next(rec)) {
string recPath = rec->FileName();
string recPath = getRecPath(rec);
int recStart = rec->Start();
if (!scrapManager->RecordingExists(recStart, recPath)) {
newRecs++;
@ -931,7 +931,7 @@ int cUpdate::ScanVideoDirScrapInfo(void) {
int numUpdated = 0;
for (cRecording *rec = Recordings.First(); rec; rec = Recordings.Next(rec)) {
int recStart = rec->Start();
string recPath = rec->FileName();
string recPath = getRecPath(rec);
bool recExists = LoadRecording(recStart, recPath);
int scrapInfoMovieID = 0;
int scrapInfoSeriesID = 0;