mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- When scrolling through a list it now moves a full page up or down when the cursor reaches the top or bottom of the menu (thanks to Heino Goldenstein!). - Added missing '#include <sys/stat.h>' to recording.c. - The video directory can now be defined with the command line option -v. - There can now be more than one video directory (in case you have several disks). - Fixed learning key codes for PC keyboard. - New command line option '-l' to set the log level. - Times in timers.conf are now always printed with 4 digits (leading '0'). - Slow forward/back mode (thanks to Guido Fiala!). - The "Up" key in replay mode no longer restarts replay at the very beginning, but rather resumes normal replay mode after a "pause", "forward" or "backward" operation. Use the "Skip -60s" function repeatedly to go back to the beginning of the recording. - Improved reaction on user input in fast/slow forward/back modes. - No more upper limit for the value of 'Pnr'. - Checking if the video card is really a DVB card. - New SVDRP command UPDT to update an existing timer (or add a new one if it doesn't yet exist). - New version of the 'epg2timers' tool (with a modified channel list). - Bugfix in closing window in DEBUG_OSD mode.
89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
/*
|
|
* tools.h: Various tools
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: tools.h 1.12 2000/07/29 10:56:00 kls Exp $
|
|
*/
|
|
|
|
#ifndef __TOOLS_H
|
|
#define __TOOLS_H
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <syslog.h>
|
|
#include <sys/wait.h>
|
|
#include <sys/types.h>
|
|
|
|
extern int SysLogLevel;
|
|
|
|
#define esyslog if (SysLogLevel > 0) syslog
|
|
#define isyslog if (SysLogLevel > 1) syslog
|
|
#define dsyslog if (SysLogLevel > 2) syslog
|
|
|
|
#define LOG_ERROR esyslog(LOG_ERR, "ERROR (%s,%d): %s", __FILE__, __LINE__, strerror(errno))
|
|
#define LOG_ERROR_STR(s) esyslog(LOG_ERR, "ERROR: %s: %s", s, strerror(errno));
|
|
|
|
#define SECSINDAY 86400
|
|
#define MAXPROCESSTIMEOUT 3 // seconds
|
|
|
|
#define DELETENULL(p) (delete (p), p = NULL)
|
|
|
|
bool DataAvailable(int filedes, bool wait = false);
|
|
void writechar(int filedes, char c);
|
|
void writeint(int filedes, int n);
|
|
char readchar(int filedes);
|
|
bool readint(int filedes, int &n);
|
|
int readstring(int filedes, char *buffer, int size, bool wait = false);
|
|
void purge(int filedes);
|
|
char *readline(FILE *f);
|
|
char *strreplace(char *s, char c1, char c2);
|
|
char *skipspace(char *s);
|
|
int time_ms(void);
|
|
void delay_ms(int ms);
|
|
bool isnumber(const char *s);
|
|
uint FreeDiskSpaceMB(const char *Directory);
|
|
bool DirectoryOk(const char *DirName, bool LogErrors = false);
|
|
bool MakeDirs(const char *FileName, bool IsDirectory = false);
|
|
bool RemoveFileOrDir(const char *FileName, bool FollowSymlinks = false);
|
|
bool CheckProcess(pid_t pid);
|
|
void KillProcess(pid_t pid, int Timeout = MAXPROCESSTIMEOUT);
|
|
|
|
class cListObject {
|
|
private:
|
|
cListObject *prev, *next;
|
|
public:
|
|
cListObject(void);
|
|
virtual ~cListObject();
|
|
void Append(cListObject *Object);
|
|
void Unlink(void);
|
|
int Index(void);
|
|
cListObject *Prev(void) { return prev; }
|
|
cListObject *Next(void) { return next; }
|
|
};
|
|
|
|
class cListBase {
|
|
protected:
|
|
cListObject *objects, *lastObject;
|
|
cListBase(void);
|
|
public:
|
|
virtual ~cListBase();
|
|
void Add(cListObject *Object);
|
|
void Del(cListObject *Object);
|
|
virtual void Move(int From, int To);
|
|
void Move(cListObject *From, cListObject *To);
|
|
void Clear(void);
|
|
cListObject *Get(int Index);
|
|
int Count(void);
|
|
};
|
|
|
|
template<class T> class cList : public cListBase {
|
|
public:
|
|
T *Get(int Index) { return (T *)cListBase::Get(Index); }
|
|
T *First(void) { return (T *)objects; }
|
|
T *Next(T *object) { return (T *)object->Next(); }
|
|
};
|
|
|
|
#endif //__TOOLS_H
|