mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Updated the Italian OSD texts (thanks to Diego Pierotto). - Added option -i to the pictures plugin's pic2mpg to ignore unknown file types. - Revoked the switch to the "multiproto" driver in order to make a new stable version before making this big switch and forcing all users to install a driver that is not yet in the kernel source. The removed code will reappear in version 1.7.0. Note that you may need to switch back to an older version of your channels.conf file if you have already used version 1.5.14, because it introduced new parameters. - Added the new command line option --userdump to enable core dumps in case VDR is run as root with option -u (thanks to Hans-Werner Hilse). - Speeded up anti-aliased font rendering by caching the blend indexes (based on a suggestion by Martin Wache). - Fixed setting the OSD area in the pictures plugin. - Ignoring "repeat" and "release" keys in the time search entry mode during replay, to avoid inadvertently leaving it in case a key is pressed too long (suggested by Andreas Brugger). - Improved sending all frames to devices that can handle them in fast forward trick speeds, including subtitles (thanks to Timo Eskola). - The section handler is now stopped before the device is destroyed, to avoid accessing file handles after they have become invalid (thanks to Reinhard Nissl for reporting an invalid access when ending VDR, and to Deti Fliegl for a patch that was used to implement StopSectionHandler()). - Fixed setting the date in the channel display of the classic and sttng skins, to avoid unnecessary OSD access (thanks to Marco Schlüßler). - The free disk space is now also displayed in the title of the "Recordings" menu (suggested by Walter Koch). - Changed the message "Upcoming VPS recording!" to "Upcoming recording!" because it applies to non-VPS recordings as well. - Fixed a loss of a timer's 'recording' flag after modifying it via MODT. - Fixed detecting directories in cFileNameList::Load(). - Running the thread that removes deleted recordings at a low priority to (maybe) avoid stuttering replay in case the thread is run during replay. - Limiting the length of the recording name in timers in case VDR is run with --vfat, in order to avoid names that are too long for Windows (suggested by Rolf Ahrenberg). - Using cString::sprintf() instead of asprintf() (thanks to Wolfgang Rohdewald for pointing out a possible problem if the return value is not checked). Plugin authors may want to consider doing the same. For convenience there is now an additional version of cString::sprintf() that accepts a va_list parameter. - When deleting the recording that is currently replayed, the replay is now stopped immediately (thanks to Mikko Matilainen for reporting a possible crash if the Info key is pressed after deleting the currently replayed recording). - Updated the Russian OSD texts (thanks to Oleg Roitburd). - When determining the amount of free disk space, any deleted (but not yet removed) recordings on different file systems (that are mounted under the video directory) are no longer taken into account. - When running out of disk space during a recording, only such deleted or old recordings are removed, that actually are on the video directory file system(s). This prevents VDR from accidentally deleting recordings on other file systems, which would not add any free space to the video directory. - Implemented the cStatus, cDevice and cPlayer functions for setting subtitle tracks in plugins (thanks to Petri Hintukainen). - Added cStatus::TimerChange() to inform plugins about changes to the list of timers (based on a patch from Benedikt Elser). - Added new cStatus functions to the 'status' plugin. - Added missing #include <limits.h> to epg.c and menuitems.h (thanks to Ville Skyttä). - The new function cSkin::SetScrollbar() can be implemented by skins to display a scrollbar in every list menu. The 'classic' and 'sttng' skins have been changed accordingly, as well as the 'skincurses' plugin. - Introduced 'operator const void * ()' in cString to catch cases where operator*() should be used. - Fixed calculating the scrollbar sizes in the skins.
244 lines
5.9 KiB
C
244 lines
5.9 KiB
C
/*
|
|
* videodir.c: Functions to maintain a distributed video directory
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: videodir.c 1.15 2008/02/16 13:00:03 kls Exp $
|
|
*/
|
|
|
|
#include "videodir.h"
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include "recording.h"
|
|
#include "tools.h"
|
|
|
|
const char *VideoDirectory = VIDEODIR;
|
|
|
|
class cVideoDirectory {
|
|
private:
|
|
char *name, *stored, *adjusted;
|
|
int length, number, digits;
|
|
public:
|
|
cVideoDirectory(void);
|
|
~cVideoDirectory();
|
|
int FreeMB(int *UsedMB = NULL);
|
|
const char *Name(void) { return name ? name : VideoDirectory; }
|
|
const char *Stored(void) { return stored; }
|
|
int Length(void) { return length; }
|
|
bool IsDistributed(void) { return name != NULL; }
|
|
bool Next(void);
|
|
void Store(void);
|
|
const char *Adjust(const char *FileName);
|
|
};
|
|
|
|
cVideoDirectory::cVideoDirectory(void)
|
|
{
|
|
length = strlen(VideoDirectory);
|
|
name = (VideoDirectory[length - 1] == '0') ? strdup(VideoDirectory) : NULL;
|
|
stored = adjusted = NULL;
|
|
number = -1;
|
|
digits = 0;
|
|
}
|
|
|
|
cVideoDirectory::~cVideoDirectory()
|
|
{
|
|
free(name);
|
|
free(stored);
|
|
free(adjusted);
|
|
}
|
|
|
|
int cVideoDirectory::FreeMB(int *UsedMB)
|
|
{
|
|
return FreeDiskSpaceMB(name ? name : VideoDirectory, UsedMB);
|
|
}
|
|
|
|
bool cVideoDirectory::Next(void)
|
|
{
|
|
if (name) {
|
|
if (number < 0) {
|
|
int l = length;
|
|
while (l-- > 0 && isdigit(name[l]))
|
|
;
|
|
l++;
|
|
digits = length - l;
|
|
int n = atoi(&name[l]);
|
|
if (n == 0)
|
|
number = n;
|
|
else
|
|
return false; // base video directory must end with zero
|
|
}
|
|
if (++number > 0) {
|
|
char buf[16];
|
|
if (sprintf(buf, "%0*d", digits, number) == digits) {
|
|
strcpy(&name[length - digits], buf);
|
|
return DirectoryOk(name);
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void cVideoDirectory::Store(void)
|
|
{
|
|
if (name) {
|
|
free(stored);
|
|
stored = strdup(name);
|
|
}
|
|
}
|
|
|
|
const char *cVideoDirectory::Adjust(const char *FileName)
|
|
{
|
|
if (stored) {
|
|
free(adjusted);
|
|
adjusted = strdup(FileName);
|
|
return strncpy(adjusted, stored, length);
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
cUnbufferedFile *OpenVideoFile(const char *FileName, int Flags)
|
|
{
|
|
const char *ActualFileName = FileName;
|
|
|
|
// Incoming name must be in base video directory:
|
|
if (strstr(FileName, VideoDirectory) != FileName) {
|
|
esyslog("ERROR: %s not in %s", FileName, VideoDirectory);
|
|
errno = ENOENT; // must set 'errno' - any ideas for a better value?
|
|
return NULL;
|
|
}
|
|
// Are we going to create a new file?
|
|
if ((Flags & O_CREAT) != 0) {
|
|
cVideoDirectory Dir;
|
|
if (Dir.IsDistributed()) {
|
|
// Find the directory with the most free space:
|
|
int MaxFree = Dir.FreeMB();
|
|
while (Dir.Next()) {
|
|
int Free = FreeDiskSpaceMB(Dir.Name());
|
|
if (Free > MaxFree) {
|
|
Dir.Store();
|
|
MaxFree = Free;
|
|
}
|
|
}
|
|
if (Dir.Stored()) {
|
|
ActualFileName = Dir.Adjust(FileName);
|
|
if (!MakeDirs(ActualFileName, false))
|
|
return NULL; // errno has been set by MakeDirs()
|
|
if (symlink(ActualFileName, FileName) < 0) {
|
|
LOG_ERROR_STR(FileName);
|
|
return NULL;
|
|
}
|
|
ActualFileName = strdup(ActualFileName); // must survive Dir!
|
|
}
|
|
}
|
|
}
|
|
cUnbufferedFile *File = cUnbufferedFile::Create(ActualFileName, Flags, DEFFILEMODE);
|
|
if (ActualFileName != FileName)
|
|
free((char *)ActualFileName);
|
|
return File;
|
|
}
|
|
|
|
int CloseVideoFile(cUnbufferedFile *File)
|
|
{
|
|
int Result = File->Close();
|
|
delete File;
|
|
return Result;
|
|
}
|
|
|
|
bool RenameVideoFile(const char *OldName, const char *NewName)
|
|
{
|
|
// Only the base video directory entry will be renamed, leaving the
|
|
// possible symlinks untouched. Going through all the symlinks and disks
|
|
// would be unnecessary work - maybe later...
|
|
if (rename(OldName, NewName) == -1) {
|
|
LOG_ERROR_STR(OldName);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool RemoveVideoFile(const char *FileName)
|
|
{
|
|
return RemoveFileOrDir(FileName, true);
|
|
}
|
|
|
|
bool VideoFileSpaceAvailable(int SizeMB)
|
|
{
|
|
cVideoDirectory Dir;
|
|
if (Dir.IsDistributed()) {
|
|
if (Dir.FreeMB() >= SizeMB * 2) // base directory needs additional space
|
|
return true;
|
|
while (Dir.Next()) {
|
|
if (Dir.FreeMB() >= SizeMB)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
return Dir.FreeMB() >= SizeMB;
|
|
}
|
|
|
|
int VideoDiskSpace(int *FreeMB, int *UsedMB)
|
|
{
|
|
int free = 0, used = 0;
|
|
int deleted = DeletedRecordings.TotalFileSizeMB();
|
|
cVideoDirectory Dir;
|
|
do {
|
|
int u;
|
|
free += Dir.FreeMB(&u);
|
|
used += u;
|
|
} while (Dir.Next());
|
|
if (deleted > used)
|
|
deleted = used; // let's not get beyond 100%
|
|
free += deleted;
|
|
used -= deleted;
|
|
if (FreeMB)
|
|
*FreeMB = free;
|
|
if (UsedMB)
|
|
*UsedMB = used;
|
|
return (free + used) ? used * 100 / (free + used) : 0;
|
|
}
|
|
|
|
cString PrefixVideoFileName(const char *FileName, char Prefix)
|
|
{
|
|
char PrefixedName[strlen(FileName) + 2];
|
|
|
|
const char *p = FileName + strlen(FileName); // p points at the terminating 0
|
|
int n = 2;
|
|
while (p-- > FileName && n > 0) {
|
|
if (*p == '/') {
|
|
if (--n == 0) {
|
|
int l = p - FileName + 1;
|
|
strncpy(PrefixedName, FileName, l);
|
|
PrefixedName[l] = Prefix;
|
|
strcpy(PrefixedName + l + 1, p + 1);
|
|
return PrefixedName;
|
|
}
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void RemoveEmptyVideoDirectories(void)
|
|
{
|
|
cVideoDirectory Dir;
|
|
do {
|
|
RemoveEmptyDirectories(Dir.Name());
|
|
} while (Dir.Next());
|
|
}
|
|
|
|
bool IsOnVideoDirectoryFileSystem(const char *FileName)
|
|
{
|
|
cVideoDirectory Dir;
|
|
do {
|
|
if (EntriesOnSameFileSystem(Dir.Name(), FileName))
|
|
return true;
|
|
} while (Dir.Next());
|
|
return false;
|
|
}
|