2000-02-19 13:36:48 +01:00
|
|
|
/*
|
|
|
|
* tools.h: Various tools
|
|
|
|
*
|
2000-04-24 09:46:05 +02:00
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
2000-02-19 13:36:48 +01:00
|
|
|
* how to reach the author.
|
|
|
|
*
|
2000-07-15 12:39:20 +02:00
|
|
|
* $Id: tools.h 1.8 2000/06/24 15:25:00 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TOOLS_H
|
|
|
|
#define __TOOLS_H
|
|
|
|
|
2000-04-16 13:54:16 +02:00
|
|
|
#include <errno.h>
|
2000-03-11 11:22:37 +01:00
|
|
|
#include <stdio.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <syslog.h>
|
2000-04-24 13:54:23 +02:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/types.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
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));
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
#define SECSINDAY 86400
|
2000-04-24 13:54:23 +02:00
|
|
|
#define MAXPROCESSTIMEOUT 3 // seconds
|
2000-03-11 11:22:37 +01:00
|
|
|
|
|
|
|
#define DELETENULL(p) (delete (p), p = NULL)
|
|
|
|
|
2000-07-15 12:39:20 +02:00
|
|
|
bool DataAvailable(int filedes, bool wait = false);
|
2000-04-15 17:38:11 +02:00
|
|
|
void writechar(int filedes, char c);
|
|
|
|
void writeint(int filedes, int n);
|
|
|
|
char readchar(int filedes);
|
|
|
|
bool readint(int filedes, int &n);
|
2000-04-24 15:32:11 +02:00
|
|
|
void purge(int filedes);
|
2000-03-11 11:22:37 +01:00
|
|
|
char *readline(FILE *f);
|
|
|
|
int time_ms(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
void delay_ms(int ms);
|
|
|
|
bool MakeDirs(const char *FileName, bool IsDirectory = false);
|
|
|
|
bool RemoveFileOrDir(const char *FileName);
|
2000-04-24 13:54:23 +02:00
|
|
|
bool CheckProcess(pid_t pid);
|
|
|
|
void KillProcess(pid_t pid, int Timeout = MAXPROCESSTIMEOUT);
|
2000-03-11 11:22:37 +01:00
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
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);
|
2000-04-15 17:38:11 +02:00
|
|
|
virtual void Move(int From, int To);
|
2000-03-11 11:22:37 +01:00
|
|
|
void Move(cListObject *From, cListObject *To);
|
2000-02-19 13:36:48 +01:00
|
|
|
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; }
|
2000-03-11 11:22:37 +01:00
|
|
|
T *Next(T *object) { return (T *)object->Next(); }
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__TOOLS_H
|