mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Original announce message: VDR developer version 1.7.28 is now available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.28.tar.bz2 A 'diff' against the previous version is available at ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.27-1.7.28.diff MD5 checksums: 3ccff2dcc42d112e23dd64f2c39f02f1 vdr-1.7.28.tar.bz2 7249ead4aca4b24e53d49d11c67e1613 vdr-1.7.27-1.7.28.diff WARNING: ======== This is a developer version. Even though I use it in my productive environment. I strongly recommend that you only use it under controlled conditions and for testing and debugging. The new default skin "LCARS" displays the signal strengths and qualities of all devices in its main menu. For devices that have an stb0899 frontend chip (like the TT-budget S2-3200) retrieving this information from the driver is rather slow, which results in a sluggish response to user input in the main menu. To speed this up you may want to apply the patches from From the HISTORY file: - Fixed cPixmapMemory::DrawEllipse() for quadrants -1 and -4. - Fixed getting the maximum short channel name length in case there are no short names at all (reported by Derek Kelly). - The new function cDevice::DeviceType() returns a string identifying the type of the given device. - Now limiting the number of characters of a channel's (short) name to 16 in the schedules menus, to keep that column from getting overly wide in case there is a channel with a very long name that has no short name. - Fixed EPG scan on systems with only a single DVB device that use software output (reported by Juergen Lock). - Skins can now inquire the menu category for which their cSkinDisplayMenu is currently being used. This can be done either through a call to cSkinDisplayMenu::MenuCategory() or by reimplementing cSkinDisplayMenu::SetMenuCategory(). This information allows a skin to use special icons or decorations for the various types of menus in VDR. - The new setup option "DVB/Standard compliance" can be used to switch between different variations of the DVB standard (thanks to Rolf Ahrenberg). Currently there is "DVB" (for the original DVB standard) and "ANSI/SCTE", which is used to properly handle certain private stream types. - The disk usage is no longer automatically added to the title of the main and "Recordings" menus. This has always been a mekeshift solution and it is now up to the individual skin if, where and how it wants to display this information. A skin can use the new cVideoDiskUsage class to implement such a display. For compatibility, the default skins "Classic VDR", "ST:TNG Panels" and "Text mode" (i.e. curses) have been changed to behave like before. Other skins may want to display the disk usage in totally different ways. - A cOsdMenu can now handle skins that display different numbers of items in the various menu categories. - OSD and skin are now reinitialized after a plugin setup page has been confirmed, to have them react immediately in case any change to a plugin's setup parameter has an effect on the OSD. - The Timers list is now marked as modified whenever a recording starts or ends. - Fixed cDevice::StillPicture(), making sure it doesn't call the derived class's function if no buffer has been allocated (reported by Marcus Roscher). - Fixed the SVDRP command UPDR, which didn't update the global recordings list (reported by Lars Hanisch). - cControl::Control() now has an additional boolean parameter, which can be set to true to get the current player control even if it is hidden. - The new functions cControl::GetRecording() and cControl::GetHeader() can be used to retrieve information about what the current player is playing. - Fixed a possible high CPU load when pausing replay (thanks to Reinhard Nissl). - Fixed character comparisons in cSubtitleObject::DecodeCharacterString() (reported by Reinhard Mantey). - Renamed the function cString::sprintf(const char *fmt, va_list &ap) to vsprintf(), because it might inadvertently be called with a 'char *' as the second argument on some compilers and cause a crash (reported by Sundararaj Reel). - Removed the "bondedMasterFailed" mechanism from cDvbTuner, because it caused problems with the EPG scan in case a transponder is not receivable in a setup with bonded devices (reported by Michael Schneider). - Making sure setup strings don't contain any newline characters (thanks to Joachim Wilke). - The new member function cSkinDisplayReplay::SetRecording() allows a skin to display more information about the currently played recording. - Fixed a mismatched 'delete' in cSchedules::SetEpgDataFileName() (thanks to Reinhard Mantey). - The DrawText() functions of the OSD now accept the new alignment flag taBorder, which triggers keeping a proper distance from the edge that taLeft or taRight aligns to. - Fixed checking for UTF-8 support in cFont::Bidi() (reported by Torsten Lang). - If a recording has no info file, the 'title' of the recording's info is now set to the recording's name. - cVector::Clear() now reinitializes any previously used members. - Fixed resetting CAMs (thanks to Marco Skambraks). - The new function RgbShade() (include osd.h) can be used to generate a brighter or darker version of a given color. - The new class cSortedTimers can be used to quickly get a list of all timers, sorted by their start time. - The new skin "LCARS" is an enhanced version of the "ST:TNG" skin (which is still there in its original layout, for those who don't like the LCARS skin, or can't use it due to OSD limitations). The LCARS skin utilizes the new "menu category" feature to display additional information on the main menu page. It shows upcoming timers and the system's devices, as well as which device is recording which timers. The upper pane of the main menu displays the programme data in live and replay mode, and a progress bar. An indicator on the right side of the device list shows which device is currently used for live viewing, and whether it is in transfer mode. The individual device displays show the device number, the device type, which CAM (if any ) is currently assigned to the device, and the signal strength and quality. On the left side of the OSD there is a permanent display of the current date and time, the disk usage and the system load. "LCARS" is the new default skin of VDR. It requires at least a 4bpp (16 color) full screen OSD, but you can still operate it if your OSD can handle only fewer colors (in which case you may want to switch to the "ST:TNG" or "Classic VDR" skin). - Finally removed the code marked with __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS and LEGACY_CRECEIVER. - Now making sure that the "small font" is never larger than the "osd font". - Fixed font handling with fontconfig 2.9.0 or newer (thanks to Joerg Bornkessel). - Extended the interface to the script that gets called for recordings, so that in the "edited" case it also provides the name of the original recording (thanks to Christian Richter). - Added DeleteEvent() to the EPG handler interface, so that an EPG handler can trigger deleting of an event (thanks to Christian Kaiser). - Speeded up opening menus on systems with many (several thousands) of recordings, by caching the information whether a recording is stored on the video directory file system within the cRecording data (based on a patch from Torsten Lang).
337 lines
12 KiB
C++
337 lines
12 KiB
C++
/*
|
|
* recording.h: Recording file handling
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: recording.h 2.33 2012/06/03 09:49:09 kls Exp $
|
|
*/
|
|
|
|
#ifndef __RECORDING_H
|
|
#define __RECORDING_H
|
|
|
|
#include <time.h>
|
|
#include "channels.h"
|
|
#include "config.h"
|
|
#include "epg.h"
|
|
#include "thread.h"
|
|
#include "timers.h"
|
|
#include "tools.h"
|
|
|
|
#define FOLDERDELIMCHAR '~'
|
|
#define TIMERMACRO_TITLE "TITLE"
|
|
#define TIMERMACRO_EPISODE "EPISODE"
|
|
|
|
extern bool VfatFileSystem;
|
|
extern int InstanceId;
|
|
|
|
void RemoveDeletedRecordings(void);
|
|
void AssertFreeDiskSpace(int Priority = 0, bool Force = false);
|
|
///< The special Priority value -1 means that we shall get rid of any
|
|
///< deleted recordings faster than normal (because we're cutting).
|
|
///< If Force is true, the check will be done even if the timeout
|
|
///< hasn't expired yet.
|
|
|
|
class cResumeFile {
|
|
private:
|
|
char *fileName;
|
|
bool isPesRecording;
|
|
public:
|
|
cResumeFile(const char *FileName, bool IsPesRecording);
|
|
~cResumeFile();
|
|
int Read(void);
|
|
bool Save(int Index);
|
|
void Delete(void);
|
|
};
|
|
|
|
class cRecordingInfo {
|
|
friend class cRecording;
|
|
private:
|
|
tChannelID channelID;
|
|
char *channelName;
|
|
const cEvent *event;
|
|
cEvent *ownEvent;
|
|
char *aux;
|
|
double framesPerSecond;
|
|
int priority;
|
|
int lifetime;
|
|
char *fileName;
|
|
cRecordingInfo(const cChannel *Channel = NULL, const cEvent *Event = NULL);
|
|
bool Read(FILE *f);
|
|
void SetData(const char *Title, const char *ShortText, const char *Description);
|
|
void SetAux(const char *Aux);
|
|
public:
|
|
cRecordingInfo(const char *FileName);
|
|
~cRecordingInfo();
|
|
tChannelID ChannelID(void) const { return channelID; }
|
|
const char *ChannelName(void) const { return channelName; }
|
|
const cEvent *GetEvent(void) const { return event; }
|
|
const char *Title(void) const { return event->Title(); }
|
|
const char *ShortText(void) const { return event->ShortText(); }
|
|
const char *Description(void) const { return event->Description(); }
|
|
const cComponents *Components(void) const { return event->Components(); }
|
|
const char *Aux(void) const { return aux; }
|
|
double FramesPerSecond(void) const { return framesPerSecond; }
|
|
void SetFramesPerSecond(double FramesPerSecond);
|
|
bool Write(FILE *f, const char *Prefix = "") const;
|
|
bool Read(void);
|
|
bool Write(void) const;
|
|
};
|
|
|
|
class cRecording : public cListObject {
|
|
friend class cRecordings;
|
|
private:
|
|
mutable int resume;
|
|
mutable char *titleBuffer;
|
|
mutable char *sortBuffer;
|
|
mutable char *fileName;
|
|
mutable char *name;
|
|
mutable int fileSizeMB;
|
|
mutable int numFrames;
|
|
int channel;
|
|
int instanceId;
|
|
bool isPesRecording;
|
|
mutable int isOnVideoDirectoryFileSystem; // -1 = unknown, 0 = no, 1 = yes
|
|
double framesPerSecond;
|
|
cRecordingInfo *info;
|
|
cRecording(const cRecording&); // can't copy cRecording
|
|
cRecording &operator=(const cRecording &); // can't assign cRecording
|
|
static char *StripEpisodeName(char *s);
|
|
char *SortName(void) const;
|
|
int GetResume(void) const;
|
|
time_t start;
|
|
int priority;
|
|
int lifetime;
|
|
time_t deleted;
|
|
public:
|
|
cRecording(cTimer *Timer, const cEvent *Event);
|
|
cRecording(const char *FileName);
|
|
virtual ~cRecording();
|
|
time_t Start(void) const { return start; }
|
|
int Priority(void) const { return priority; }
|
|
int Lifetime(void) const { return lifetime; }
|
|
time_t Deleted(void) const { return deleted; }
|
|
virtual int Compare(const cListObject &ListObject) const;
|
|
const char *Name(void) const { return name; }
|
|
const char *FileName(void) const;
|
|
const char *Title(char Delimiter = ' ', bool NewIndicator = false, int Level = -1) const;
|
|
const cRecordingInfo *Info(void) const { return info; }
|
|
const char *PrefixFileName(char Prefix);
|
|
int HierarchyLevels(void) const;
|
|
void ResetResume(void) const;
|
|
double FramesPerSecond(void) const { return framesPerSecond; }
|
|
int NumFrames(void) const;
|
|
///< Returns the number of frames in this recording.
|
|
///< If the number of frames is unknown, -1 will be returned.
|
|
int LengthInSeconds(void) const;
|
|
///< Returns the length (in seconds) of this recording, or -1 in case of error.
|
|
int FileSizeMB(void) const;
|
|
///< Returns the total file size of this recording (in MB), or -1 if the file
|
|
///< size is unknown.
|
|
bool IsNew(void) const { return GetResume() <= 0; }
|
|
bool IsEdited(void) const;
|
|
bool IsPesRecording(void) const { return isPesRecording; }
|
|
bool IsOnVideoDirectoryFileSystem(void) const;
|
|
void ReadInfo(void);
|
|
bool WriteInfo(void);
|
|
void SetStartTime(time_t Start);
|
|
///< Sets the start time of this recording to the given value.
|
|
///< If a filename has already been set for this recording, it will be
|
|
///< deleted and a new one will be generated (using the new start time)
|
|
///< at the next call to FileName().
|
|
///< Use this function with care - it does not check whether a recording with
|
|
///< this new name already exists, and if there is one, results may be
|
|
///< unexpected!
|
|
bool Delete(void);
|
|
///< Changes the file name so that it will no longer be visible in the "Recordings" menu
|
|
///< Returns false in case of error
|
|
bool Remove(void);
|
|
///< Actually removes the file from the disk
|
|
///< Returns false in case of error
|
|
bool Undelete(void);
|
|
///< Changes the file name so that it will be visible in the "Recordings" menu again and
|
|
///< not processed by cRemoveDeletedRecordingsThread.
|
|
///< Returns false in case of error
|
|
};
|
|
|
|
class cRecordings : public cList<cRecording>, public cThread {
|
|
private:
|
|
static char *updateFileName;
|
|
bool deleted;
|
|
time_t lastUpdate;
|
|
int state;
|
|
const char *UpdateFileName(void);
|
|
void Refresh(bool Foreground = false);
|
|
void ScanVideoDir(const char *DirName, bool Foreground = false, int LinkLevel = 0);
|
|
protected:
|
|
void Action(void);
|
|
public:
|
|
cRecordings(bool Deleted = false);
|
|
virtual ~cRecordings();
|
|
bool Load(void) { return Update(true); }
|
|
///< Loads the current list of recordings and returns true if there
|
|
///< is anything in it (for compatibility with older plugins - use
|
|
///< Update(true) instead).
|
|
bool Update(bool Wait = false);
|
|
///< Triggers an update of the list of recordings, which will run
|
|
///< as a separate thread if Wait is false. If Wait is true, the
|
|
///< function returns only after the update has completed.
|
|
///< Returns true if Wait is true and there is anything in the list
|
|
///< of recordings, false otherwise.
|
|
void TouchUpdate(void);
|
|
///< Touches the '.update' file in the video directory, so that other
|
|
///< instances of VDR that access the same video directory can be triggered
|
|
///< to update their recordings list.
|
|
bool NeedsUpdate(void);
|
|
void ChangeState(void) { state++; }
|
|
bool StateChanged(int &State);
|
|
void ResetResume(const char *ResumeFileName = NULL);
|
|
cRecording *GetByName(const char *FileName);
|
|
void AddByName(const char *FileName, bool TriggerUpdate = true);
|
|
void DelByName(const char *FileName);
|
|
void UpdateByName(const char *FileName);
|
|
int TotalFileSizeMB(void);
|
|
double MBperMinute(void);
|
|
///< Returns the average data rate (in MB/min) of all recordings, or -1 if
|
|
///< this value is unknown.
|
|
};
|
|
|
|
extern cRecordings Recordings;
|
|
extern cRecordings DeletedRecordings;
|
|
|
|
#define DEFAULTFRAMESPERSECOND 25.0
|
|
|
|
class cMark : public cListObject {
|
|
friend class cMarks; // for sorting
|
|
private:
|
|
double framesPerSecond;
|
|
int position;
|
|
cString comment;
|
|
public:
|
|
cMark(int Position = 0, const char *Comment = NULL, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
|
virtual ~cMark();
|
|
int Position(void) const { return position; }
|
|
const char *Comment(void) const { return comment; }
|
|
void SetPosition(int Position) { position = Position; }
|
|
void SetComment(const char *Comment) { comment = Comment; }
|
|
cString ToText(void);
|
|
bool Parse(const char *s);
|
|
bool Save(FILE *f);
|
|
};
|
|
|
|
class cMarks : public cConfig<cMark> {
|
|
private:
|
|
cString fileName;
|
|
double framesPerSecond;
|
|
time_t nextUpdate;
|
|
time_t lastFileTime;
|
|
time_t lastChange;
|
|
public:
|
|
bool Load(const char *RecordingFileName, double FramesPerSecond = DEFAULTFRAMESPERSECOND, bool IsPesRecording = false);
|
|
bool Update(void);
|
|
void Sort(void);
|
|
cMark *Add(int Position);
|
|
cMark *Get(int Position);
|
|
cMark *GetPrev(int Position);
|
|
cMark *GetNext(int Position);
|
|
};
|
|
|
|
#define RUC_BEFORERECORDING "before"
|
|
#define RUC_AFTERRECORDING "after"
|
|
#define RUC_EDITEDRECORDING "edited"
|
|
|
|
class cRecordingUserCommand {
|
|
private:
|
|
static const char *command;
|
|
public:
|
|
static void SetCommand(const char *Command) { command = Command; }
|
|
static void InvokeCommand(const char *State, const char *RecordingFileName, const char *SourceFileName = NULL);
|
|
};
|
|
|
|
// The maximum size of a single frame (up to HDTV 1920x1080):
|
|
#define MAXFRAMESIZE (KILOBYTE(1024) / TS_SIZE * TS_SIZE) // multiple of TS_SIZE to avoid breaking up TS packets
|
|
|
|
// The maximum file size is limited by the range that can be covered
|
|
// with a 40 bit 'unsigned int', which is 1TB. The actual maximum value
|
|
// used is 6MB below the theoretical maximum, to have some safety (the
|
|
// actual file size may be slightly higher because we stop recording only
|
|
// before the next independent frame, to have a complete Group Of Pictures):
|
|
#define MAXVIDEOFILESIZETS 1048570 // MB
|
|
#define MAXVIDEOFILESIZEPES 2000 // MB
|
|
#define MINVIDEOFILESIZE 100 // MB
|
|
#define MAXVIDEOFILESIZEDEFAULT MAXVIDEOFILESIZEPES
|
|
|
|
struct tIndexTs;
|
|
class cIndexFileGenerator;
|
|
|
|
class cIndexFile {
|
|
private:
|
|
int f;
|
|
cString fileName;
|
|
int size, last;
|
|
tIndexTs *index;
|
|
bool isPesRecording;
|
|
cResumeFile resumeFile;
|
|
cIndexFileGenerator *indexFileGenerator;
|
|
cMutex mutex;
|
|
static cString IndexFileName(const char *FileName, bool IsPesRecording);
|
|
void ConvertFromPes(tIndexTs *IndexTs, int Count);
|
|
void ConvertToPes(tIndexTs *IndexTs, int Count);
|
|
bool CatchUp(int Index = -1);
|
|
public:
|
|
cIndexFile(const char *FileName, bool Record, bool IsPesRecording = false, bool PauseLive = false);
|
|
~cIndexFile();
|
|
bool Ok(void) { return index != NULL; }
|
|
bool Write(bool Independent, uint16_t FileNumber, off_t FileOffset);
|
|
bool Get(int Index, uint16_t *FileNumber, off_t *FileOffset, bool *Independent = NULL, int *Length = NULL);
|
|
int GetNextIFrame(int Index, bool Forward, uint16_t *FileNumber = NULL, off_t *FileOffset = NULL, int *Length = NULL);
|
|
int Get(uint16_t FileNumber, off_t FileOffset);
|
|
int Last(void) { CatchUp(); return last; }
|
|
int GetResume(void) { return resumeFile.Read(); }
|
|
bool StoreResume(int Index) { return resumeFile.Save(Index); }
|
|
bool IsStillRecording(void);
|
|
void Delete(void);
|
|
static int GetLength(const char *FileName, bool IsPesRecording = false);
|
|
///< Calculates the recording length (number of frames) without actually reading the index file.
|
|
///< Returns -1 in case of error.
|
|
};
|
|
|
|
class cFileName {
|
|
private:
|
|
cUnbufferedFile *file;
|
|
uint16_t fileNumber;
|
|
char *fileName, *pFileNumber;
|
|
bool record;
|
|
bool blocking;
|
|
bool isPesRecording;
|
|
public:
|
|
cFileName(const char *FileName, bool Record, bool Blocking = false, bool IsPesRecording = false);
|
|
~cFileName();
|
|
const char *Name(void) { return fileName; }
|
|
uint16_t Number(void) { return fileNumber; }
|
|
bool GetLastPatPmtVersions(int &PatVersion, int &PmtVersion);
|
|
cUnbufferedFile *Open(void);
|
|
void Close(void);
|
|
cUnbufferedFile *SetOffset(int Number, off_t Offset = 0); // yes, Number is int for easier internal calculating
|
|
cUnbufferedFile *NextFile(void);
|
|
};
|
|
|
|
cString IndexToHMSF(int Index, bool WithFrame = false, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
|
// Converts the given index to a string, optionally containing the frame number.
|
|
int HMSFToIndex(const char *HMSF, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
|
// Converts the given string (format: "hh:mm:ss.ff") to an index.
|
|
int SecondsToFrames(int Seconds, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
|
// Returns the number of frames corresponding to the given number of seconds.
|
|
|
|
int ReadFrame(cUnbufferedFile *f, uchar *b, int Length, int Max);
|
|
|
|
char *ExchangeChars(char *s, bool ToFileSystem);
|
|
// Exchanges the characters in the given string to or from a file system
|
|
// specific representation (depending on ToFileSystem). The given string will
|
|
// be modified and may be reallocated if more space is needed. The return
|
|
// value points to the resulting string, which may be different from s.
|
|
|
|
bool GenerateIndex(const char *FileName);
|
|
|
|
#endif //__RECORDING_H
|