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.
|
|
|
|
*
|
2002-12-15 15:36:02 +01:00
|
|
|
* $Id: tools.h 1.54 2002/12/15 14:59:53 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TOOLS_H
|
|
|
|
#define __TOOLS_H
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
#include <errno.h>
|
2000-09-17 08:23:46 +02:00
|
|
|
#include <fcntl.h>
|
2002-08-16 09:22:29 +02:00
|
|
|
#include <poll.h>
|
2000-03-11 11:22:37 +01:00
|
|
|
#include <stdio.h>
|
2000-10-03 10:34:48 +02:00
|
|
|
#include <string.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <syslog.h>
|
2000-09-17 08:23:46 +02:00
|
|
|
#include <sys/stat.h>
|
2000-04-24 13:54:23 +02:00
|
|
|
#include <sys/types.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
typedef unsigned char uchar;
|
2002-11-10 15:50:21 +01:00
|
|
|
typedef unsigned long long int uint64;
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
extern int SysLogLevel;
|
|
|
|
|
2002-05-13 16:35:49 +02:00
|
|
|
#define esyslog(a...) void( (SysLogLevel > 0) ? syslog(LOG_ERR, a) : void() )
|
|
|
|
#define isyslog(a...) void( (SysLogLevel > 1) ? syslog(LOG_INFO, a) : void() )
|
|
|
|
#define dsyslog(a...) void( (SysLogLevel > 2) ? syslog(LOG_DEBUG, a) : void() )
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2002-05-13 16:35:49 +02:00
|
|
|
#define LOG_ERROR esyslog("ERROR (%s,%d): %m", __FILE__, __LINE__)
|
|
|
|
#define LOG_ERROR_STR(s) esyslog("ERROR: %s: %m", s)
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
#define SECSINDAY 86400
|
|
|
|
|
2001-09-14 14:35:40 +02:00
|
|
|
#define KILOBYTE(n) ((n) * 1024)
|
|
|
|
#define MEGABYTE(n) ((n) * 1024 * 1024)
|
|
|
|
|
|
|
|
#define MAXPARSEBUFFER KILOBYTE(10)
|
|
|
|
|
2002-08-11 13:32:23 +02:00
|
|
|
#define MALLOC(type, size) (type *)malloc(sizeof(type) * (size))
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
#define DELETENULL(p) (delete (p), p = NULL)
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
#define CHECK(s) { if ((s) < 0) LOG_ERROR; } // used for 'ioctl()' calls
|
|
|
|
#define FATALERRNO (errno != EAGAIN && errno != EINTR)
|
|
|
|
|
2002-11-30 12:51:45 +01:00
|
|
|
#ifndef __STL_CONFIG_H // in case some plugin needs to use the STL
|
2001-09-14 14:06:43 +02:00
|
|
|
template<class T> inline T min(T a, T b) { return a <= b ? a : b; }
|
|
|
|
template<class T> inline T max(T a, T b) { return a >= b ? a : b; }
|
2002-09-08 11:46:53 +02:00
|
|
|
template<class T> inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; }
|
2001-09-14 14:06:43 +02:00
|
|
|
template<class T> inline void swap(T &a, T &b) { T t = a; a = b; b = t; }
|
2002-11-30 12:51:45 +01:00
|
|
|
#endif
|
2000-12-28 12:57:16 +01:00
|
|
|
|
2001-08-12 15:22:48 +02:00
|
|
|
ssize_t safe_read(int filedes, void *buffer, size_t size);
|
|
|
|
ssize_t safe_write(int filedes, const void *buffer, size_t size);
|
2000-04-15 17:38:11 +02:00
|
|
|
void writechar(int filedes, char c);
|
2000-03-11 11:22:37 +01:00
|
|
|
char *readline(FILE *f);
|
2001-09-22 13:07:43 +02:00
|
|
|
char *strcpyrealloc(char *dest, const char *src);
|
2000-09-09 14:57:43 +02:00
|
|
|
char *strn0cpy(char *dest, const char *src, size_t n);
|
2000-07-16 15:02:33 +02:00
|
|
|
char *strreplace(char *s, char c1, char c2);
|
2002-12-15 15:36:02 +01:00
|
|
|
char *strreplace(char *s, const char *s1, const char *s2); ///< re-allocates 's' and deletes the original string if necessary!
|
2000-10-29 13:17:22 +01:00
|
|
|
char *skipspace(const char *s);
|
2000-11-11 16:38:41 +01:00
|
|
|
char *stripspace(char *s);
|
2001-08-17 13:19:10 +02:00
|
|
|
char *compactspace(char *s);
|
2002-12-15 15:36:02 +01:00
|
|
|
const char *strescape(const char *s, const char *chars); ///< \warning returns a statically allocated string!
|
2001-08-17 13:19:10 +02:00
|
|
|
bool startswith(const char *s, const char *p);
|
2002-01-20 16:47:09 +01:00
|
|
|
bool endswith(const char *s, const char *p);
|
2000-10-29 13:17:22 +01:00
|
|
|
bool isempty(const char *s);
|
2002-10-19 15:33:37 +02:00
|
|
|
int numdigits(int n);
|
2000-03-11 11:22:37 +01:00
|
|
|
int time_ms(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
void delay_ms(int ms);
|
2000-07-23 15:01:31 +02:00
|
|
|
bool isnumber(const char *s);
|
2002-12-15 15:36:02 +01:00
|
|
|
const char *itoa(int n); ///< \warning returns a statically allocated string!
|
|
|
|
const char *AddDirectory(const char *DirName, const char *FileName); ///< \warning returns a statically allocated string!
|
2002-01-27 13:11:23 +01:00
|
|
|
int FreeDiskSpaceMB(const char *Directory, int *UsedMB = NULL);
|
2000-07-29 15:21:42 +02:00
|
|
|
bool DirectoryOk(const char *DirName, bool LogErrors = false);
|
2000-04-15 17:38:11 +02:00
|
|
|
bool MakeDirs(const char *FileName, bool IsDirectory = false);
|
2000-07-29 15:21:42 +02:00
|
|
|
bool RemoveFileOrDir(const char *FileName, bool FollowSymlinks = false);
|
2001-02-11 14:53:44 +01:00
|
|
|
bool RemoveEmptyDirectories(const char *DirName, bool RemoveThis = false);
|
2001-01-13 15:36:31 +01:00
|
|
|
char *ReadLink(const char *FileName);
|
2001-08-11 11:15:41 +02:00
|
|
|
bool SpinUpDisk(const char *FileName);
|
2002-12-15 15:36:02 +01:00
|
|
|
const char *WeekDayName(int WeekDay); ///< \warning returns a statically allocated string!
|
|
|
|
const char *DayDateTime(time_t t = 0); ///< \warning returns a statically allocated string!
|
2000-03-11 11:22:37 +01:00
|
|
|
|
2002-08-16 09:22:29 +02:00
|
|
|
class cPoller {
|
|
|
|
private:
|
|
|
|
enum { MaxPollFiles = 16 };
|
|
|
|
pollfd pfd[MaxPollFiles];
|
|
|
|
int numFileHandles;
|
|
|
|
public:
|
|
|
|
cPoller(int FileHandle = -1, bool Out = false);
|
|
|
|
bool Add(int FileHandle, bool Out);
|
|
|
|
bool Poll(int TimeoutMs = 0);
|
|
|
|
};
|
|
|
|
|
2000-09-17 08:23:46 +02:00
|
|
|
class cFile {
|
|
|
|
private:
|
|
|
|
static bool files[];
|
|
|
|
static int maxFiles;
|
|
|
|
int f;
|
|
|
|
public:
|
|
|
|
cFile(void);
|
|
|
|
~cFile();
|
|
|
|
operator int () { return f; }
|
|
|
|
bool Open(const char *FileName, int Flags, mode_t Mode = S_IRUSR | S_IWUSR | S_IRGRP);
|
|
|
|
bool Open(int FileDes);
|
|
|
|
void Close(void);
|
|
|
|
bool IsOpen(void) { return f >= 0; }
|
|
|
|
bool Ready(bool Wait = true);
|
|
|
|
static bool AnyFileReady(int FileDes = -1, int TimeoutMs = 1000);
|
2000-10-08 09:25:20 +02:00
|
|
|
static bool FileReady(int FileDes, int TimeoutMs = 1000);
|
2001-06-02 10:47:40 +02:00
|
|
|
static bool FileReadyForWriting(int FileDes, int TimeoutMs = 1000);
|
2000-09-17 08:23:46 +02:00
|
|
|
};
|
|
|
|
|
2001-01-13 15:36:31 +01:00
|
|
|
class cSafeFile {
|
|
|
|
private:
|
|
|
|
FILE *f;
|
|
|
|
char *fileName;
|
|
|
|
char *tempName;
|
|
|
|
public:
|
|
|
|
cSafeFile(const char *FileName);
|
|
|
|
~cSafeFile();
|
|
|
|
operator FILE* () { return f; }
|
|
|
|
bool Open(void);
|
2001-09-16 08:57:58 +02:00
|
|
|
bool Close(void);
|
2001-01-13 15:36:31 +01:00
|
|
|
};
|
|
|
|
|
2001-09-30 10:38:06 +02:00
|
|
|
class cLockFile {
|
|
|
|
private:
|
|
|
|
char *fileName;
|
|
|
|
int f;
|
|
|
|
public:
|
|
|
|
cLockFile(const char *Directory);
|
|
|
|
~cLockFile();
|
|
|
|
bool Lock(int WaitSeconds = 0);
|
|
|
|
void Unlock(void);
|
|
|
|
};
|
|
|
|
|
2000-02-19 13:36:48 +01:00
|
|
|
class cListObject {
|
|
|
|
private:
|
|
|
|
cListObject *prev, *next;
|
|
|
|
public:
|
|
|
|
cListObject(void);
|
|
|
|
virtual ~cListObject();
|
2001-08-26 14:17:20 +02:00
|
|
|
virtual bool operator< (const cListObject &ListObject) { return false; }
|
2000-02-19 13:36:48 +01:00
|
|
|
void Append(cListObject *Object);
|
2002-05-12 14:46:46 +02:00
|
|
|
void Insert(cListObject *Object);
|
2000-02-19 13:36:48 +01:00
|
|
|
void Unlink(void);
|
|
|
|
int Index(void);
|
2000-10-29 13:17:22 +01:00
|
|
|
cListObject *Prev(void) const { return prev; }
|
|
|
|
cListObject *Next(void) const { return next; }
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class cListBase {
|
|
|
|
protected:
|
|
|
|
cListObject *objects, *lastObject;
|
|
|
|
cListBase(void);
|
|
|
|
public:
|
|
|
|
virtual ~cListBase();
|
2002-05-12 14:46:46 +02:00
|
|
|
void Add(cListObject *Object, cListObject *After = NULL);
|
|
|
|
void Ins(cListObject *Object, cListObject *Before = NULL);
|
2002-05-19 15:50:11 +02:00
|
|
|
void Del(cListObject *Object, bool DeleteObject = true);
|
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-11-12 16:48:50 +01:00
|
|
|
virtual void Clear(void);
|
2000-10-29 13:17:22 +01:00
|
|
|
cListObject *Get(int Index) const;
|
|
|
|
int Count(void) const;
|
2001-08-26 14:17:20 +02:00
|
|
|
void Sort(void);
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
template<class T> class cList : public cListBase {
|
|
|
|
public:
|
2000-10-29 13:17:22 +01:00
|
|
|
T *Get(int Index) const { return (T *)cListBase::Get(Index); }
|
|
|
|
T *First(void) const { return (T *)objects; }
|
2000-12-28 12:57:16 +01:00
|
|
|
T *Last(void) const { return (T *)lastObject; }
|
2002-05-11 08:42:30 +02:00
|
|
|
T *Prev(const T *object) const { return (T *)object->cListObject::Prev(); } // need to call cListObject's members to
|
|
|
|
T *Next(const T *object) const { return (T *)object->cListObject::Next(); } // avoid ambiguities in case of a "list of lists"
|
2000-02-19 13:36:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__TOOLS_H
|