1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
#include <algorithm>
#include <stdexcept>
#include <iomanip>
#include <tnt/ecpp.h>
#include <tnt/htmlescostream.h>
#include <tnt/httprequest.h>
#include <tnt/httpreply.h>
#include <vdr/recording.h>
#include "exception.h"
#include "live.h"
#include "setup.h"
#include "tools.h"
#include "md5.h"
using namespace std;
using namespace tnt;
istream& operator>>( istream& is, tChannelID& ret )
{
/* alternativ implementation
string line;
if ( !getline( is, line ) ) {
if ( !is.eof() )
is.setstate( ios::badbit );
else
is.clear();
return is;
}
if ( !line.empty() && !( ret = tChannelID::FromString( line.c_str() ) ).Valid() )
is.setstate( ios::badbit );
return is;
*/
string line;
if (!getline( is, line ) ) {
if (0 == is.gcount()) {
is.clear(is.rdstate() & ~ios::failbit);
return is;
}
if (!is.eof()) {
is.setstate( ios::badbit );
return is;
}
}
if ( !line.empty() && !( ret = tChannelID::FromString( line.c_str() ) ).Valid() )
is.setstate( ios::badbit );
return is;
}
namespace vdrlive {
string FormatDuration( char const* format, int hours, int minutes )
{
char result[ 32 ];
if ( snprintf(result, sizeof(result), format, hours, minutes) < 0 ) {
ostringstream builder;
builder << "cannot represent duration " << hours << ":" << minutes << " as requested";
throw runtime_error( builder.str() );
}
return result;
}
string FormatDateTime( char const* format, time_t time )
{
struct tm tm_r;
if ( localtime_r( &time, &tm_r ) == 0 ) {
ostringstream builder;
builder << "cannot represent timestamp " << time << " as local time";
throw runtime_error( builder.str() );
}
char result[ 256 ];
if ( strftime( result, sizeof( result ), format, &tm_r ) == 0 ) {
ostringstream builder;
builder << "representation of timestamp " << time << " exceeds " << sizeof( result ) << " bytes";
throw runtime_error( builder.str() );
}
return result;
}
string StringReplace( string const& text, string const& substring, string const& replacement )
{
string result = text;
string::size_type pos = 0;
while ( ( pos = result.find( substring, pos ) ) != string::npos ) {
result.replace( pos, substring.length(), replacement );
pos += replacement.length();
}
return result;
}
vector< string > StringSplit( string const& text, char delimiter )
{
vector< string > result;
string::size_type last = 0, pos;
while ( ( pos = text.find( delimiter, last ) ) != string::npos ) {
result.push_back( text.substr( last, pos - last ) );
last = pos + 1;
}
if ( last < text.length() )
result.push_back( text.substr( last ) );
return result;
}
int StringToInt( std::string const& string, int base )
{
char* end;
int result = strtol( string.c_str(), &end, base );
if ( *end == '\0' )
return result;
return 0;
}
string StringRepeat(int times, const string& input)
{
string result;
for (int i = 0; i < times; i++) {
result += input;
}
return result;
}
string StringWordTruncate(const string& input, size_t maxLen, bool& truncated)
{
if (input.length() <= maxLen)
{
truncated = false;
return input;
}
truncated = true;
string result = input.substr(0, maxLen);
size_t pos = result.find_last_of(" \t,;:.\n?!'\"/\\()[]{}*+-");
return result.substr(0, pos);
}
string StringFormatBreak(string const& input)
{
return StringReplace( input, "\n", "<br/>" );
}
string StringEscapeAndBreak( string const& input )
{
stringstream plainBuilder;
HtmlEscOstream builder( plainBuilder );
builder << input;
return StringReplace( plainBuilder.str(), "\n", "<br/>" );
}
string StringTrim(string const& str)
{
string res = str;
string::size_type pos = res.find_last_not_of(' ');
if(pos != string::npos) {
res.erase(pos + 1);
pos = res.find_first_not_of(' ');
if(pos != string::npos) res.erase(0, pos);
}
else res.erase(res.begin(), res.end());
return res;
}
string ZeroPad(int number)
{
ostringstream os;
os << setw(2) << setfill('0') << number;
return os.str();
}
std::string MD5Hash(std::string const& str)
{
char* szInput = strdup(str.c_str());
if (!szInput) return "";
char* szRes = MD5String(szInput);
string res = szRes;
free(szRes);
return res;
/* unsigned char md5[MD5_DIGEST_LENGTH];
MD5(reinterpret_cast<const unsigned char*>(str.c_str()), str.size(), md5);
ostringstream hashStr;
hashStr << hex;
for (size_t i = 0; i < MD5_DIGEST_LENGTH; i++)
hashStr << (0 + md5[i]);
return hashStr.str();
*/
}
#define HOURS(x) ((x)/100)
#define MINUTES(x) ((x)%100)
std::string ExpandTimeString(std::string timestring)
{
string::size_type colonpos = timestring.find(":");
if (colonpos == string::npos)
{
if (timestring.size() == 1)
timestring = "0" + timestring + ":00";
else if (timestring.size() == 2)
timestring = timestring + ":00";
else if (timestring.size() == 3)
timestring = "0" + string(timestring.begin(), timestring.begin() + 1) + ":" + string(timestring.begin() + 1, timestring.end());
else
timestring = string(timestring.begin(), timestring.begin() + 2) + ":" + string(timestring.begin() + 2, timestring.end());
}
else
{
string hours = string(timestring.begin(), timestring.begin() + colonpos);
string mins = string(timestring.begin() + colonpos + 1, timestring.end());
hours = string(std::max(0,(int)(2 - hours.size())), '0') + hours;
mins = string(std::max(0,(int)(2 - mins.size())), '0') + mins;
timestring = hours + ":" + mins;
}
return timestring;
}
time_t GetTimeT(std::string timestring) // timestring in HH:MM
{
timestring = StringReplace(timestring, ":", "");
int iTime = lexical_cast< int >( timestring );
struct tm tm_r;
time_t t = time(NULL);
tm* tmnow = localtime_r(&t, &tm_r);
tmnow->tm_hour = HOURS(iTime);
tmnow->tm_min = MINUTES(iTime);
return mktime(tmnow);
}
struct urlencoder
{
ostream& ostr_;
urlencoder( ostream& ostr ): ostr_( ostr ) {}
void operator()( char ch )
{
static const char allowedChars[] = {
// 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , A , B , C , D , E , F ,
'_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', //00
'_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', //10
'_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', 0x2D,0x2E,0x2F, //20
0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,'_', '_', '_', '_', '_', '_', //30
'_', 0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4A,0x4B,0x4C,0x4D,0x4E,0x4F, //40
0x50,0x51,0x52,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5A,'_', '_', '_', '_', '_', //50
'_', 0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6A,0x6B,0x6C,0x6D,0x6E,0x6F, //60
0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7A,'_', '_', '_', '_', '_' //70
// everything above 127 (for signed char, below zero) is replaced with '_'
};
if ( ch == ' ' )
ostr_ << '+';
else if ( static_cast< signed char >( ch ) < 0 || allowedChars[ size_t( ch ) ] == '_' )
ostr_ << '%' << setw( 2 ) << setfill( '0' ) << hex << int( static_cast< unsigned char >( ch ) );
else
ostr_ << ch;
}
};
string StringUrlEncode( string const& input )
{
ostringstream ostr;
for_each( input.begin(), input.end(), urlencoder( ostr ) );
return ostr.str();
}
// returns the content of <element>...</element>
string GetXMLValue( std::string const& xml, std::string const& element )
{
string start = "<" + element + ">";
string end = "</" + element + ">";
string::size_type startPos = xml.find(start);
if (startPos == string::npos) return "";
string::size_type endPos = xml.find(end);
if (endPos == string::npos) return "";
return xml.substr(startPos + start.size(), endPos - startPos - start.size());
}
// return the time value as time_t from <datestring> formatted with <format>
time_t GetDateFromDatePicker(std::string const& datestring, std::string const& format)
{
if (datestring.empty())
return 0;
int year = lexical_cast< int >(datestring.substr(format.find("yyyy"), 4));
int month = lexical_cast< int >(datestring.substr(format.find("mm"), 2));
int day = lexical_cast< int >(datestring.substr(format.find("dd"), 2));
struct tm tm_r;
tm_r.tm_year = year - 1900;
tm_r.tm_mon = month -1;
tm_r.tm_mday = day;
tm_r.tm_hour = tm_r.tm_min = tm_r.tm_sec = 0;
tm_r.tm_isdst = -1; // makes sure mktime() will determine the correct DST setting
return mktime(&tm_r);
}
// format is in datepicker format ('mm' for month, 'dd' for day, 'yyyy' for year)
std::string DatePickerToC(time_t date, std::string const& format)
{
if (date == 0) return "";
std::string cformat = format;
cformat = StringReplace(cformat, "mm", "%m");
cformat = StringReplace(cformat, "dd", "%d");
cformat = StringReplace(cformat, "yyyy", "%Y");
return FormatDateTime(cformat.c_str(), date);
}
std::string EncodeDomId(std::string const & toEncode, char const * from, char const * to)
{
std::string encoded = toEncode;
for (; *from && *to; from++, to++) {
replace(encoded.begin(), encoded.end(), *from, *to);
}
return encoded;
}
std::string DecodeDomId(std::string const & toDecode, char const * from, char const * to)
{
std::string decoded = toDecode;
for (; *from && *to; from++, to++) {
replace(decoded.begin(), decoded.end(), *from, *to);
}
return decoded;
}
std::string FileSystemExchangeChars(std::string const & s, bool ToFileSystem)
{
char *str = strdup(s.c_str());
str = ExchangeChars(str, ToFileSystem);
std::string data = str;
if (str) {
free(str);
}
return data;
}
bool MoveDirectory(std::string const & sourceDir, std::string const & targetDir, bool copy)
{
const char* delim = "/";
std::string source = sourceDir;
std::string target = targetDir;
// add missing directory delimiters
if (source.compare(source.size() - 1, 1, delim) != 0) {
source += "/";
}
if (target.compare(target.size() - 1, 1, delim) != 0) {
target += "/";
}
if (source != target) {
// validate target directory
if (target.find(source) != std::string::npos) {
esyslog("[LIVE]: cannot move under sub-directory\n");
return false;
}
RemoveFileOrDir(target.c_str());
if (!MakeDirs(target.c_str(), true)) {
esyslog("[LIVE]: cannot create directory %s", target.c_str());
return false;
}
struct stat st1, st2;
stat(source.c_str(), &st1);
stat(target.c_str(),&st2);
if (!copy && (st1.st_dev == st2.st_dev)) {
if (!RenameVideoFile(source.c_str(), target.c_str())) {
esyslog("[LIVE]: rename failed from %s to %s", source.c_str(), target.c_str());
return false;
}
}
else {
int required = DirSizeMB(source.c_str());
int available = FreeDiskSpaceMB(target.c_str());
// validate free space
if (required < available) {
cReadDir d(source.c_str());
struct dirent *e;
bool success = true;
// allocate copying buffer
const int len = 1024 * 1024;
char *buffer = MALLOC(char, len);
if (!buffer) {
esyslog("[LIVE]: cannot allocate renaming buffer");
return false;
}
// loop through all files, but skip all subdirectories
while ((e = d.Next()) != NULL) {
// skip generic entries
if (strcmp(e->d_name, ".") && strcmp(e->d_name, "..") && strcmp(e->d_name, "lost+found")) {
string sourceFile = source + e->d_name;
string targetFile = target + e->d_name;
// copy only regular files
if (!stat(sourceFile.c_str(), &st1) && S_ISREG(st1.st_mode)) {
int r = -1, w = -1;
cUnbufferedFile *inputFile = cUnbufferedFile::Create(sourceFile.c_str(), O_RDONLY | O_LARGEFILE);
cUnbufferedFile *outputFile = cUnbufferedFile::Create(targetFile.c_str(), O_RDWR | O_CREAT | O_LARGEFILE);
// validate files
if (!inputFile || !outputFile) {
esyslog("[LIVE]: cannot open file %s or %s", sourceFile.c_str(), targetFile.c_str());
success = false;
break;
}
// do actual copy
dsyslog("[LIVE]: copying %s to %s", sourceFile.c_str(), targetFile.c_str());
do {
r = inputFile->Read(buffer, len);
if (r > 0)
w = outputFile->Write(buffer, r);
else
w = 0;
} while (r > 0 && w > 0);
DELETENULL(inputFile);
DELETENULL(outputFile);
// validate result
if (r < 0 || w < 0) {
success = false;
break;
}
}
}
}
// release allocated buffer
free(buffer);
// delete all created target files and directories
if (!success) {
size_t found = target.find_last_of(delim);
if (found != std::string::npos) {
target = target.substr(0, found);
}
if (!RemoveFileOrDir(target.c_str(), true)) {
esyslog("[LIVE]: cannot remove target %s", target.c_str());
}
found = target.find_last_of(delim);
if (found != std::string::npos) {
target = target.substr(0, found);
}
if (!RemoveEmptyDirectories(target.c_str(), true)) {
esyslog("[LIVE]: cannot remove target directory %s", target.c_str());
}
esyslog("[LIVE]: copying failed");
return false;
}
else if (!copy && !RemoveFileOrDir(source.c_str(), true)) { // delete source files
esyslog("[LIVE]: cannot remove source directory %s", source.c_str());
return false;
}
// delete all empty source directories
if (!copy) {
size_t found = source.find_last_of(delim);
if (found != std::string::npos) {
source = source.substr(0, found);
while (source != VideoDirectory) {
found = source.find_last_of(delim);
if (found == std::string::npos)
break;
source = source.substr(0, found);
if (!RemoveEmptyDirectories(source.c_str(), true))
break;
}
}
}
}
else {
esyslog("[LIVE]: %s requires %dMB - only %dMB available", copy ? "moving" : "copying", required, available);
// delete all created empty target directories
size_t found = target.find_last_of(delim);
if (found != std::string::npos) {
target = target.substr(0, found);
while (target != VideoDirectory) {
found = target.find_last_of(delim);
if (found == std::string::npos)
break;
target = target.substr(0, found);
if (!RemoveEmptyDirectories(target.c_str(), true))
break;
}
}
return false;
}
}
}
return true;
}
} // namespace vdrlive
|