X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/556d6244747ea2b4b3590e682948e9f708b0a069..1a2b0a4379ee3e9d16108c52abdadc9bb85675c1:/lib/dvb/metaparser.cpp diff --git a/lib/dvb/metaparser.cpp b/lib/dvb/metaparser.cpp index 24a5ab67..5eff4d9d 100644 --- a/lib/dvb/metaparser.cpp +++ b/lib/dvb/metaparser.cpp @@ -17,7 +17,31 @@ int eDVBMetaParser::parseFile(const std::string &basename) return 0; /* otherwise, use recordings.epl */ - return parseRecordings(basename); + if (!parseRecordings(basename)) + return 0; + m_filesize = fileSize(basename); + return -1; + +} + +long long eDVBMetaParser::fileSize(const std::string &basename) +{ + long long filesize = 0; + char buf[255]; + struct stat64 s; + /* get filesize */ + if (!stat64(basename.c_str(), &s)) + filesize = (long long) s.st_size; + /* handling for old splitted recordings (enigma 1) */ + int slice=1; + while(true) + { + snprintf(buf, 255, "%s.%03d", basename.c_str(), slice++); + if (stat64(buf, &s) < 0) + break; + filesize += (long long) s.st_size; + } + return filesize; } int eDVBMetaParser::parseMeta(const std::string &tsname) @@ -124,7 +148,7 @@ int eDVBMetaParser::parseRecordings(const std::string &filename) m_description = ""; m_time_create = 0; m_length = 0; - m_filesize = 0; + m_filesize = fileSize(filename); m_data_ok = 1; fclose(f);