vdr  2.2.0
Classes | Macros | Typedefs | Functions | Variables
tools.h File Reference
#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <float.h>
#include <iconv.h>
#include <math.h>
#include <poll.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
#include <sys/stat.h>
#include <sys/types.h>

Go to the source code of this file.

Classes

class  cCharSetConv
 
class  cString
 
class  cBase64Encoder
 
class  cBitStream
 
class  cTimeMs
 
class  cReadLine
 
class  cPoller
 
class  cReadDir
 
class  cFile
 
class  cSafeFile
 
class  cUnbufferedFile
 
class  cLockFile
 
class  cListObject
 
class  cListBase
 
class  cList< T >
 
class  cVector< T >
 
class  cStringList
 
class  cFileNameList
 
class  cHashObject
 
class  cHashBase
 
class  cHash< T >
 

Macros

#define esyslog(a...)   void( (SysLogLevel > 0) ? syslog_with_tid(LOG_ERR, a) : void() )
 
#define isyslog(a...)   void( (SysLogLevel > 1) ? syslog_with_tid(LOG_INFO, a) : void() )
 
#define dsyslog(a...)   void( (SysLogLevel > 2) ? syslog_with_tid(LOG_DEBUG, a) : void() )
 
#define LOG_ERROR   esyslog("ERROR (%s,%d): %m", __FILE__, __LINE__)
 
#define LOG_ERROR_STR(s)   esyslog("ERROR (%s,%d): %s: %m", __FILE__, __LINE__, s)
 
#define SECSINDAY   86400
 
#define KILOBYTE(n)   ((n) * 1024)
 
#define MEGABYTE(n)   ((n) * 1024LL * 1024LL)
 
#define MALLOC(type, size)   (type *)malloc(sizeof(type) * (size))
 
#define CHECK(s)   { if ((s) < 0) LOG_ERROR; }
 
#define FATALERRNO   (errno && errno != EAGAIN && errno != EINTR)
 
#define BCDCHARTOINT(x)   (10 * ((x & 0xF0) >> 4) + (x & 0xF))
 
#define IsBitSet(v, b)   ((v) & (1 << (b)))
 
#define Utf8BufSize(s)   ((s) * 4)
 
#define Utf8to(conv, c)   (cCharSetConv::SystemCharacterTable() ? to##conv(c) : tow##conv(c))
 
#define Utf8is(ccls, c)   (cCharSetConv::SystemCharacterTable() ? is##ccls(c) : isw##ccls(c))
 
#define HASHSIZE   512
 

Typedefs

typedef unsigned char uchar
 

Functions

template<class T >
void DELETENULL (T *&p)
 
template<class T >
min (T a, T b)
 
template<class T >
max (T a, T b)
 
template<class T >
int sgn (T a)
 
template<class T >
void swap (T &a, T &b)
 
template<class T >
constrain (T v, T l, T h)
 
void syslog_with_tid (int priority, const char *format,...) __attribute__((format(printf
 
int BCD2INT (int x)
 
template<class T >
get_unaligned (T *p)
 
template<class T >
void put_unaligned (unsigned int v, T *p)
 
bool DoubleEqual (double a, double b)
 
int Utf8CharLen (const char *s)
 
uint Utf8CharGet (const char *s, int Length=0)
 
int Utf8CharSet (uint c, char *s=NULL)
 
int Utf8SymChars (const char *s, int Symbols)
 
int Utf8StrLen (const char *s)
 
char * Utf8Strn0Cpy (char *Dest, const char *Src, int n)
 
int Utf8ToArray (const char *s, uint *a, int Size)
 
int Utf8FromArray (const uint *a, char *s, int Size, int Max=-1)
 
ssize_t safe_read (int filedes, void *buffer, size_t size)
 
ssize_t safe_write (int filedes, const void *buffer, size_t size)
 
void writechar (int filedes, char c)
 
int WriteAllOrNothing (int fd, const uchar *Data, int Length, int TimeoutMs=0, int RetryMs=0)
 
char * strcpyrealloc (char *dest, const char *src)
 
char * strn0cpy (char *dest, const char *src, size_t n)
 
char * strreplace (char *s, char c1, char c2)
 
char * strreplace (char *s, const char *s1, const char *s2)
 
const char * strchrn (const char *s, char c, size_t n)
 
int strcountchr (const char *s, char c)
 
char * skipspace (const char *s)
 
char * stripspace (char *s)
 
char * compactspace (char *s)
 
char * compactchars (char *s, char c)
 
cString strescape (const char *s, const char *chars)
 
bool startswith (const char *s, const char *p)
 
bool endswith (const char *s, const char *p)
 
bool isempty (const char *s)
 
int numdigits (int n)
 
bool isnumber (const char *s)
 
int64_t StrToNum (const char *s)
 
bool StrInArray (const char *a[], const char *s)
 
double atod (const char *s)
 
cString dtoa (double d, const char *Format="%f")
 
cString itoa (int n)
 
cString AddDirectory (const char *DirName, const char *FileName)
 
bool EntriesOnSameFileSystem (const char *File1, const char *File2)
 
int FreeDiskSpaceMB (const char *Directory, int *UsedMB=NULL)
 
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 RemoveEmptyDirectories (const char *DirName, bool RemoveThis=false, const char *IgnoreFiles[]=NULL)
 
int DirSizeMB (const char *DirName)
 
char * ReadLink (const char *FileName)
 
bool SpinUpDisk (const char *FileName)
 
void TouchFile (const char *FileName)
 
time_t LastModifiedTime (const char *FileName)
 
off_t FileSize (const char *FileName)
 
cString WeekDayName (int WeekDay)
 
cString WeekDayName (time_t t)
 
cString WeekDayNameFull (int WeekDay)
 
cString WeekDayNameFull (time_t t)
 
cString DayDateTime (time_t t=0)
 
cString TimeToString (time_t t)
 
cString DateString (time_t t)
 
cString ShortDateString (time_t t)
 
cString TimeString (time_t t)
 
ucharRgbToJpeg (uchar *Mem, int Width, int Height, int &Size, int Quality=100)
 
int CompareStrings (const void *a, const void *b)
 
int CompareStringsIgnoreCase (const void *a, const void *b)
 

Variables

int SysLogLevel
 

Macro Definition Documentation

#define BCDCHARTOINT (   x)    (10 * ((x & 0xF0) >> 4) + (x & 0xF))

Definition at line 64 of file tools.h.

Referenced by BCD2INT(), and tTeletextSubtitlePage::PageNumber().

#define CHECK (   s)    { if ((s) < 0) LOG_ERROR; }
#define dsyslog (   a...)    void( (SysLogLevel > 2) ? syslog_with_tid(LOG_DEBUG, a) : void() )

Definition at line 36 of file tools.h.

Referenced by cSectionHandler::Action(), cDevice::Action(), cDirCopier::Action(), cIoThrottle::Activate(), cMenuTimers::ActualiseDiskStatus(), cRecordingsHandler::Add(), cCaDescriptors::AddCaDescriptor(), cReceiver::AddPid(), cFrameDetector::Analyze(), cCamSlot::Assign(), cDvbDevice::Bond(), cDvbTuner::Bond(), cCamSlot::CanDecrypt(), cDevice::cDevice(), cDvbSdFfDevice::cDvbSdFfDevice(), cRecording::ChangeName(), cRecording::ChangePriorityLifetime(), cStatusTest::ChannelSwitch(), cShutdownHandler::CheckManualStart(), cSVDRP::CmdGRAB(), cRecordControl::cRecordControl(), cSourceParam::cSourceParam(), cIndexFile::Delete(), cChannels::DeleteDuplicateChannels(), cShutdownHandler::DoShutdown(), cDvbSpuDecoder::Draw(), cDevice::EnsureAudioTrack(), cMenuCommands::Execute(), cRecording::FileName(), cDiseqcs::Get(), cDvbTuner::GetBondedMaster(), cRecordControl::GetEvent(), cPositioner::GotoAngle(), cPositioner::GotoPosition(), cDvbHdFfDevice::GrabImage(), cDvbSdFfDevice::GrabImage(), I18nInitialize(), I18nSetLocale(), cInterface::LearnKeys(), main(), MakeDirs(), cMenuSetupCAM::Menu(), cSkins::Message(), cVideoDirectory::Move(), cRecordings::MoveRecordings(), cChannels::NewChannel(), cTimeMs::Now(), cFileName::Open(), cStatusTest::OsdChannel(), cStatusTest::OsdClear(), cStatusTest::OsdCurrentItem(), cStatusTest::OsdHelpKeys(), cStatusTest::OsdProgramme(), cStatusTest::OsdStatusMessage(), cStatusTest::OsdTextItem(), cStatusTest::OsdTitle(), cDevice::PlayPesPacket(), cDvbSdFfDeviceProbe::Probe(), cDvbHdFfDeviceProbe::Probe(), cDvbDevice::Probe(), cCiConditionalAccessSupport::Process(), cNaluDumper::ProcessPayload(), cSkins::ProcessQueuedMessages(), cNaluDumper::ProcessTSPacket(), cInterface::QueryKeys(), cSkins::QueueMessage(), cSchedules::Read(), cCaPidReceiver::Receive(), cCaActivationReceiver::Receive(), cStatusTest::Recording(), cIoThrottle::Release(), RemoveEmptyDirectories(), RemoveFileOrDir(), cVideoDirectory::Rename(), cStatusTest::Replaying(), ReportEpgBugFixStats(), cShutdownHandler::RequestEmergencyExit(), cRecorder::RunningLowOnDiskSpace(), safe_read(), safe_write(), cMenuCam::Select(), cMenuCam::Set(), cStatusTest::SetAudioChannel(), cStatusTest::SetAudioTrack(), cRemux::SetBrokenLink(), cChannel::SetCaDescriptors(), cChannel::SetCaIds(), cChannel::SetId(), cChannel::SetLcn(), cChannel::SetLinkChannels(), cChannel::SetName(), cFileName::SetOffset(), cChannel::SetPids(), cChannel::SetPortalName(), cStatusTest::SetSubtitleTrack(), cChannel::SetTransponderData(), cStatusTest::SetVolume(), SpinUpDisk(), cRecordControls::Start(), cCamSlot::StartActivation(), cThread::StartThread(), cTsPayload::Statistics(), cDevice::SwitchChannel(), cCuttingThread::Throttled(), cDirCopier::Throttled(), cStatusTest::TimerChange(), cDvbDevice::UnBond(), cDvbTuner::UnBond(), cOsdProvider::UpdateOsdSize(), cRingBuffer::UpdatePercentage(), and cRingBuffer::~cRingBuffer().

#define esyslog (   a...)    void( (SysLogLevel > 0) ? syslog_with_tid(LOG_ERR, a) : void() )

Definition at line 34 of file tools.h.

Referenced by cLircRemote::Action(), cRecorder::Action(), cDvbPlayer::Action(), cCuttingThread::Action(), cDvbTuner::Action(), cTSBuffer::Action(), cDirCopier::Action(), cRecordingsHandler::Add(), cPoller::Add(), cCiCaPmt::AddCaDescriptors(), cCiAdapter::AddCamSlot(), cDevice::AddPid(), cPluginManager::AddPlugin(), cFrameDetector::Analyze(), cDevice::AttachReceiver(), cDvbPlayer::Backward(), cDvbDevice::Bond(), cDvbTuner::Bond(), cDvbDevice::BondDevices(), cPlugin::CacheDirectory(), cShutdownHandler::CallShutdownCommand(), cThread::Cancel(), cIndexFile::CatchUp(), cCuttingThread::cCuttingThread(), cDevice::cDevice(), cDvbCiAdapter::cDvbCiAdapter(), cDvbDevice::cDvbDevice(), cDvbPlayer::cDvbPlayer(), cDvbSdFfOsd::cDvbSdFfOsd(), cFileName::cFileName(), cFrame::cFrame(), cFreetypeFont::cFreetypeFont(), cIndexFile::cIndexFile(), cCiTransportConnection::CloseSession(), cPlugin::ConfigDirectory(), cCharSetConv::Convert(), cPixmap::cPixmap(), cRecorder::cRecorder(), cRecording::cRecording(), cResumeFile::cResumeFile(), cRingBufferLinear::cRingBufferLinear(), cSourceParam::cSourceParam(), cTDT::cTDT(), cTPDU::cTPDU(), cRingBufferLinear::Del(), cOsd::DestroyPixmap(), DirectoryOk(), cRingBufferFrame::Drop(), cSchedule::Dump(), ExchangeChars(), cMenuCommands::Execute(), cDiseqc::Execute(), cDvbTuner::ExecuteDiseqc(), cTheme::FileNameOk(), cMpeg2Fixer::FindHeader(), cDvbPlayer::Forward(), cSource::FromString(), cSatCableNumbers::FromString(), cDiseqcs::Get(), cTSBuffer::Get(), cNaluStreamProcessor::GetBuffer(), GetClippedNumProvidedSystems(), cDiseqc::GetCodes(), cFont::GetFont(), cFont::GetFontFileName(), cSubtitleClut::GetPalette(), cDiseqc::GetPosition(), GetRequiredDeliverySystem(), cDiseqc::GetScrBank(), cDvbSdFfDevice::GetSTC(), cDvbHdFfDevice::GetSTC(), cCiMMI::GetText(), cFreetypeFont::Glyph(), cDvbHdFfDevice::GrabImage(), cDvbSdFfDevice::GrabImage(), cCiTransportConnection::HandleSessions(), I18nInitialize(), JpegCompressEmptyOutputBuffer(), JpegCompressTermDestination(), cInterface::LearnKeys(), cTheme::Load(), cThemes::Load(), cDll::Load(), cConfig< cDiseqc >::Load(), cSetup::Load(), cBitmap::LoadXpm(), cLockFile::Lock(), main(), cSkins::Message(), cDvbCiAdapter::ModuleStatus(), cCamSlot::NewConnection(), cOsdProvider::NewOsd(), cDevice::NextCardIndex(), cTimeMs::Now(), cMenuSchedule::Number(), cFile::Open(), cDvbDevice::OpenFilter(), cCiTransportConnection::OpenSession(), cScr::Parse(), cTimer::Parse(), cDiseqc::Parse(), cKeyMacro::Parse(), cEvent::Parse(), cChannel::Parse(), cDvbTransponderParameters::Parse(), ParseDeviceNumbers(), cDvbTransponderParameters::ParseParameter(), cPatPmtParser::ParsePat(), cPatPmtParser::ParsePmt(), cExternalAudio::Play(), cPlayer::PlayPes(), cDevice::PlayPes(), cDevice::PlayPesPacket(), cExternalAudio::PlayTs(), cDevice::PlayTs(), cSVDRP::Process(), cCamSlot::Process(), cCiTransportConnection::Process(), cCiResourceManager::Process(), cCiApplicationInformation::Process(), cCiConditionalAccessSupport::Process(), cCiDateTime::Process(), cCiMMI::Process(), cNaluStreamProcessor::PutBuffer(), cKeys::PutSetup(), cTsToPes::PutTs(), cDvbDevice::QueryDeliverySystems(), cDvbCiAdapter::Read(), cRecordingInfo::Read(), cEvent::Read(), cSchedule::Read(), cArgs::ReadDirectory(), ReadFrame(), cComponents::Realloc(), cVector< const cTimer * >::Realloc(), cDvbSubtitleAssembler::Realloc(), cTransfer::Receive(), cCaPidReceiver::Receive(), cVideoDirectory::Register(), cRecording::Remove(), cSVDRP::Reply(), cRingBuffer::ReportOverflow(), cShutdownHandler::RequestEmergencyExit(), cDvbCiAdapter::Reset(), cPlugin::ResourceDirectory(), cCiSession::SendData(), cOsd::SetAreas(), cDevice::SetAvailableTrack(), cDvbHdFfDevice::SetChannelDevice(), cDvbSdFfDevice::SetChannelDevice(), cSubtitleClut::SetColor(), cSkins::SetCurrent(), cDvbTuner::SetFrontend(), cPixmap::SetLayer(), cThread::SetMainThreadId(), cFileName::SetOffset(), cFrameDetector::SetPid(), cDvbSdFfDevice::SetPlayMode(), cDevice::SetPrimaryDevice(), cDiseqc::SetScrFrequency(), cBitmap::SetSize(), cDvbSpuDecoder::setTime(), cChannel::SetTransponderData(), cDvbSdFfDevice::SetVideoDisplayFormat(), cDevice::SetVideoDisplayFormat(), cBitmap::SetXpm(), SkipQuote(), SpinUpDisk(), cString::sprintf(), cRecordControls::Start(), cThread::StartThread(), cDevice::StillPicture(), cCutter::Stop(), strcpyrealloc(), strreplace(), cOsdProvider::SupportsTrueColor(), cDevice::SwitchChannel(), cChannel::Transponder(), cRecording::Undelete(), cString::vsprintf(), cDiseqc::Wait(), Watchdog(), cDvbCiAdapter::Write(), and cReceiver::~cReceiver().

#define FATALERRNO   (errno && errno != EAGAIN && errno != EINTR)
#define HASHSIZE   512

Definition at line 671 of file tools.h.

#define IsBitSet (   v,
 
)    ((v) & (1 << (b)))

Definition at line 67 of file tools.h.

Referenced by cDiseqcs::Get(), and cScrs::GetUnused().

#define isyslog (   a...)    void( (SysLogLevel > 1) ? syslog_with_tid(LOG_INFO, a) : void() )

Definition at line 35 of file tools.h.

Referenced by cSocket::Accept(), cLircRemote::Action(), cDvbPlayer::Action(), cDvbTuner::Action(), cIndexFileGenerator::Action(), cMarks::Align(), AssertFreeDiskSpace(), cShutdownHandler::CallShutdownCommand(), cDvbCiAdapter::cDvbCiAdapter(), cDvbPlayer::cDvbPlayer(), cRecordControls::ChannelDataModified(), cIndexFile::cIndexFile(), cSVDRP::Close(), cSVDRP::CmdDELC(), cSVDRP::CmdDELT(), cSVDRP::CmdMESG(), cSVDRP::CmdMODC(), cSVDRP::CmdMODT(), cSVDRP::CmdMOVC(), cSVDRP::CmdNEWC(), cSVDRP::CmdNEWT(), cSVDRP::CmdUPDT(), cMenuTimers::Commands(), cInterface::Confirm(), cRcuRemote::cRcuRemote(), cRecordControl::cRecordControl(), cRecorder::cRecorder(), cSVDRP::cSVDRP(), cTDT::cTDT(), cRecording::Delete(), cMenuRecordings::Delete(), cMenuChannels::Delete(), cMenuTimers::Delete(), cTimers::DeleteExpired(), cMenuTimers::Edit(), cDevice::GrabImageFile(), cRcuRemote::Initialize(), cDvbDevice::Initialize(), cPluginManager::InitializePlugins(), cRecordingUserCommand::InvokeCommand(), cTheme::Load(), cDll::Load(), cConfig< cDiseqc >::Load(), cNestedItemList::Load(), main(), cSkins::Message(), cMenuChannels::Move(), cMenuTimers::OnOff(), cSVDRP::Process(), cCamSlot::Process(), cCiApplicationInformation::Process(), cMenuEditTimer::ProcessKey(), cMenuEditChannel::ProcessKey(), cDvbDevice::QueryDeliverySystems(), cMenuWhatsOn::Record(), cMenuSchedule::Record(), cRecording::Remove(), cSetup::Save(), cRecordings::ScanVideoDir(), cSkins::SetCurrent(), cTimer::SetDeferred(), cTimer::SetEvent(), cTimer::SetInVpsMargin(), cDevice::SetPrimaryDevice(), cTimer::SetRecording(), cEvent::SetRunningStatus(), cPluginManager::Shutdown(), cRecordControls::Start(), cPluginManager::StartPlugins(), cPluginDvbhddevice::Stop(), cCutter::Stop(), cRecordControls::Stop(), cReplayControl::Stop(), cPluginManager::StopPlugins(), cDevice::SwitchChannel(), cRecording::Undelete(), and cRecorder::~cRecorder().

#define KILOBYTE (   n)    ((n) * 1024)
#define LOG_ERROR   esyslog("ERROR (%s,%d): %m", __FILE__, __LINE__)
#define LOG_ERROR_STR (   s)    esyslog("ERROR (%s,%d): %s: %m", __FILE__, __LINE__, s)
#define MALLOC (   type,
  size 
)    (type *)malloc(sizeof(type) * (size))
#define MEGABYTE (   n)    ((n) * 1024LL * 1024LL)
#define SECSINDAY   86400
#define Utf8BufSize (   s)    ((s) * 4)

Definition at line 133 of file tools.h.

Referenced by cEIT::cEIT(), and cSdtFilter::Process().

#define Utf8is (   ccls,
 
)    (cCharSetConv::SystemCharacterTable() ? is##ccls(c) : isw##ccls(c))

Definition at line 139 of file tools.h.

Referenced by cMenuEditStrItem::AdvancePos(), and cMenuEditStrItem::ProcessKey().

#define Utf8to (   conv,
 
)    (cCharSetConv::SystemCharacterTable() ? to##conv(c) : tow##conv(c))

Definition at line 138 of file tools.h.

Referenced by cMenuEditStrItem::ProcessKey().

Typedef Documentation

typedef unsigned char uchar

Definition at line 30 of file tools.h.

Function Documentation

cString AddDirectory ( const char *  DirName,
const char *  FileName 
)
double atod ( const char *  s)

Converts the given string, which is a floating point number using a '.

' as the decimal point, to a double value, independent of the currently selected locale.

Definition at line 357 of file tools.c.

References DECIMAL_POINT_C.

Referenced by cSetup::Parse(), cRecordingInfo::Read(), and skipspace().

int BCD2INT ( int  x)

Definition at line 45 of file tools.c.

References BCDCHARTOINT.

Referenced by cNitFilter::Process().

char* compactchars ( char *  s,
char  c 
)

removes all occurrences of 'c' from the beginning an end of 's' and replaces sequences of multiple 'c's with a single 'c'.

Definition at line 230 of file tools.c.

Referenced by cString::CompactChars(), and skipspace().

char* compactspace ( char *  s)
int CompareStrings ( const void *  a,
const void *  b 
)
inline

Definition at line 614 of file tools.h.

Referenced by cStringList::Sort().

int CompareStringsIgnoreCase ( const void *  a,
const void *  b 
)
inline

Definition at line 619 of file tools.h.

Referenced by cStringList::Sort().

template<class T >
T constrain ( v,
l,
h 
)
inline
cString DateString ( time_t  t)
cString DayDateTime ( time_t  t = 0)
template<class T >
void DELETENULL ( T *&  p)
inline
bool DirectoryOk ( const char *  DirName,
bool  LogErrors = false 
)
int DirSizeMB ( const char *  DirName)

returns the total size of the files in the given directory, or -1 in case of an error

Definition at line 585 of file tools.c.

References AddDirectory(), DirSizeMB(), LOG_ERROR_STR, MEGABYTE, cReadDir::Next(), and cReadDir::Ok().

Referenced by DirSizeMB(), cRecording::FileSizeMB(), and skipspace().

bool DoubleEqual ( double  a,
double  b 
)
inline
cString dtoa ( double  d,
const char *  Format = "%f" 
)

Converts the given double value to a string, making sure it uses a '.

' as the decimal point, independent of the currently selected locale. If Format is given, it will be used instead of the default.

Definition at line 378 of file tools.c.

References DECIMAL_POINT_C, and strreplace().

Referenced by skipspace(), cSetup::Store(), and cRecordingInfo::Write().

bool endswith ( const char *  s,
const char *  p 
)
bool EntriesOnSameFileSystem ( const char *  File1,
const char *  File2 
)

Checks whether the given files are on the same file system.

If either of the files doesn't exist, this function returns true to avoid any actions that might be triggered if files are on different file system.

Definition at line 395 of file tools.c.

References LOG_ERROR_STR.

Referenced by cVideoDirectory::Contains(), cVideoDirectory::Move(), and skipspace().

off_t FileSize ( const char *  FileName)

returns the size of the given file, or -1 in case of an error (e.g. if the file doesn't exist)

Definition at line 677 of file tools.c.

Referenced by cDirCopier::Action(), cIndexFileGenerator::Action(), cIndexFile::cIndexFile(), and skipspace().

int FreeDiskSpaceMB ( const char *  Directory,
int *  UsedMB = NULL 
)

Definition at line 410 of file tools.c.

References LOG_ERROR_STR.

Referenced by cVideoDirectory::FreeMB(), cRecorder::RunningLowOnDiskSpace(), and skipspace().

template<class T >
T get_unaligned ( T *  p)
inline
bool isempty ( const char *  s)
bool isnumber ( const char *  s)
cString itoa ( int  n)
time_t LastModifiedTime ( const char *  FileName)
bool MakeDirs ( const char *  FileName,
bool  IsDirectory = false 
)
template<class T >
T max ( a,
b 
)
inline

Definition at line 55 of file tools.h.

Referenced by cDirCopier::Action(), cMenuTimers::ActualiseDiskStatus(), cDvbSpuDecoder::CalcAreaSize(), cDvbSpuBitmap::cDvbSpuBitmap(), cEIT::cEIT(), cMenuSetupOSD::cMenuSetupOSD(), cRect::Combine(), cCharSetConv::Convert(), cSkinClassicDisplayTracks::cSkinClassicDisplayTracks(), cSkinCursesDisplayTracks::cSkinCursesDisplayTracks(), cSkinLCARSDisplayTracks::cSkinLCARSDisplayTracks(), cSkinSTTNGDisplayReplay::cSkinSTTNGDisplayReplay(), cSkinSTTNGDisplayTracks::cSkinSTTNGDisplayTracks(), cOsdMenu::CursorDown(), cOsdMenu::CursorUp(), cOsdMenu::Display(), DrawDeviceData(), DrawDevicePosition(), DrawDeviceSignal(), cBitmap::DrawEllipse(), cPixmapMemory::DrawEllipse(), cBitmap::DrawRectangle(), cSkinClassicDisplayMenu::DrawScrollbar(), cSkinCursesDisplayMenu::DrawScrollbar(), cSkinSTTNGDisplayMenu::DrawScrollbar(), cSkinLCARSDisplayMenu::DrawScrollbar(), cHdffOsd::DrawText(), cBitmap::DrawText(), cPixmapMemory::DrawText(), cSkinLCARSDisplayMenu::DrawTimer(), cSkinClassicDisplayMenu::Flush(), cAdaptiveSkipper::GetValue(), cRect::Intersected(), cTimer::Matches(), cChannels::MaxChannelNameLength(), cChannels::MaxShortChannelNameLength(), cOsdMenu::PageDown(), cDevice::Priority(), cLineGame::ProcessKey(), cTrueColorDemo::ProcessKey(), cTsToPes::PutTs(), cUnbufferedFile::Read(), cDvbSubtitleAssembler::Realloc(), cRingBuffer::ReportOverflow(), cOsd::SetAreas(), cSkinLCARSDisplayChannel::SetChannel(), cSkinLCARSDisplayReplay::SetCurrent(), cSkinLCARSDisplayReplay::SetTotal(), cDvbPlayer::SkipSeconds(), cCondWait::SleepMs(), strcpyrealloc(), cRecording::Title(), TsDump(), and cUnbufferedFile::Write().

template<class T >
T min ( a,
b 
)
inline
int numdigits ( int  n)

Definition at line 302 of file tools.c.

Referenced by skipspace().

template<class T >
void put_unaligned ( unsigned int  v,
T *  p 
)
inline

Definition at line 78 of file tools.h.

Referenced by cCiTransportConnection::SendTag().

char* ReadLink ( const char *  FileName)

returns a new string allocated on the heap, which the caller must delete (or NULL in case of an error)

Definition at line 617 of file tools.c.

References LOG_ERROR_STR.

Referenced by cSafeFile::cSafeFile(), and skipspace().

bool RemoveEmptyDirectories ( const char *  DirName,
bool  RemoveThis = false,
const char *  IgnoreFiles[] = NULL 
)

Removes all empty directories under the given directory DirName.

If RemoveThis is true, DirName will also be removed if it is empty. IgnoreFiles can be set to an array of file names that will be ignored when considering whether a directory is empty. If IgnoreFiles is given, the array must end with a NULL pointer.

Definition at line 531 of file tools.c.

References AddDirectory(), dsyslog, LOG_ERROR_STR, cReadDir::Next(), cReadDir::Ok(), RemoveEmptyDirectories(), and StrInArray().

Referenced by cVideoDirectory::Cleanup(), RemoveEmptyDirectories(), and skipspace().

bool RemoveFileOrDir ( const char *  FileName,
bool  FollowSymlinks = false 
)

Definition at line 473 of file tools.c.

References AddDirectory(), dsyslog, LOG_ERROR_STR, MALLOC, cReadDir::Next(), and cReadDir::Ok().

Referenced by cVideoDirectory::Remove(), and skipspace().

uchar* RgbToJpeg ( uchar Mem,
int  Width,
int  Height,
int &  Size,
int  Quality = 100 
)

Converts the given Memory to a JPEG image and returns a pointer to the resulting image.

Mem must point to a data block of exactly (Width * Height) triplets of RGB image data bytes. Upon return, Size will hold the number of bytes of the resulting JPEG data. Quality can be in the range 0..100 and controls the quality of the resulting image, where 100 is "best". The caller takes ownership of the result and has to delete it once it is no longer needed. The result may be NULL in case of an error.

Definition at line 1251 of file tools.c.

References cBase64Encoder::b64, JpegCompressEmptyOutputBuffer(), JpegCompressInitDestination(), JpegCompressTermDestination(), tJpegCompressData::mem, and tJpegCompressData::size.

Referenced by cDvbSdFfDevice::GrabImage(), skipspace(), and cSubtitleDebug::WriteJpeg().

ssize_t safe_read ( int  filedes,
void *  buffer,
size_t  size 
)
ssize_t safe_write ( int  filedes,
const void *  buffer,
size_t  size 
)
template<class T >
int sgn ( a)
inline

Definition at line 56 of file tools.h.

Referenced by cDevice::SwitchChannel().

cString ShortDateString ( time_t  t)

Converts the given time to a string of the form "dd.mm.yy".

Definition at line 1177 of file tools.c.

Referenced by cSkinLCARSDisplayMenu::DrawPlay(), cSkinLCARSDisplayReplay::SetRecording(), and skipspace().

char* skipspace ( const char *  s)
inline
bool SpinUpDisk ( const char *  FileName)

Definition at line 631 of file tools.c.

References DirectoryOk(), dsyslog, esyslog, LOG_ERROR_STR, and cString::sprintf().

Referenced by cRecorder::cRecorder(), and skipspace().

bool startswith ( const char *  s,
const char *  p 
)

Definition at line 277 of file tools.c.

Referenced by cArgs::ReadDirectory(), and skipspace().

const char* strchrn ( const char *  s,
char  c,
size_t  n 
)

returns a pointer to the n'th occurrence (counting from 1) of c in s, or NULL if no such character was found. If n is 0, s is returned.

Definition at line 176 of file tools.c.

Referenced by cMenuRecordings::Info(), and cString::operator*().

int strcountchr ( const char *  s,
char  c 
)

returns the number of occurrences of 'c' in 's'.

Definition at line 189 of file tools.c.

Referenced by cMenuRecordings::cMenuRecordings(), cMenuRecordings::Open(), and cString::operator*().

char* strcpyrealloc ( char *  dest,
const char *  src 
)
cString strescape ( const char *  s,
const char *  chars 
)
bool StrInArray ( const char *  a[],
const char *  s 
)

Returns true if the string s is equal to one of the strings pointed to by the (NULL terminated) array a.

Definition at line 338 of file tools.c.

Referenced by RemoveEmptyDirectories(), and skipspace().

char* stripspace ( char *  s)
char* strn0cpy ( char *  dest,
const char *  src,
size_t  n 
)
char* strreplace ( char *  s,
char  c1,
char  c2 
)
char* strreplace ( char *  s,
const char *  s1,
const char *  s2 
)

re-allocates 's' and deletes the original string if necessary!

Definition at line 152 of file tools.c.

References esyslog.

int64_t StrToNum ( const char *  s)

Converts the given string to a number.

The numerical part of the string may be followed by one of the letters K, M, G or T to abbreviate Kilo-, Mega-, Giga- or Terabyte, respectively (based on 1024). Everything after the first non-numeric character is silently ignored, as are any characters other than the ones mentioned here.

Definition at line 323 of file tools.c.

Referenced by main(), and skipspace().

template<class T >
void swap ( T &  a,
T &  b 
)
inline

Definition at line 57 of file tools.h.

Referenced by DrawDevicePosition(), and cMarks::Sort().

void syslog_with_tid ( int  priority,
const char *  format,
  ... 
)

Referenced by constrain().

cString TimeString ( time_t  t)
cString TimeToString ( time_t  t)

Converts the given time to a string of the form "www mmm dd hh:mm:ss yyyy".

Definition at line 1156 of file tools.c.

Referenced by cSVDRP::CmdNEXT(), cTDT::cTDT(), cShutdownHandler::DoShutdown(), cSVDRP::Process(), and skipspace().

void TouchFile ( const char *  FileName)

Definition at line 663 of file tools.c.

References LOG_ERROR_STR.

Referenced by skipspace(), and cRecordings::TouchUpdate().

uint Utf8CharGet ( const char *  s,
int  Length = 0 
)

Returns the UTF-8 symbol at the beginning of the given string.

Length can be given from a previous call to Utf8CharLen() to avoid calculating it again. If no Length is given, Utf8CharLen() will be called.

Definition at line 771 of file tools.c.

References cCharSetConv::SystemCharacterTable(), SystemToUtf8, and Utf8CharLen().

Referenced by DoubleEqual(), cHdffOsd::DrawText(), cFreetypeFont::DrawText(), cKbdRemote::ReadKeySequence(), cTextWrapper::Set(), cCharSetConv::SetSystemCharacterTable(), Utf8ToArray(), and cFreetypeFont::Width().

int Utf8CharLen ( const char *  s)

Returns the number of character bytes at the beginning of the given string that form a UTF-8 symbol.

Definition at line 757 of file tools.c.

References MT, and cCharSetConv::SystemCharacterTable().

Referenced by DoubleEqual(), cCharSetConv::SetSystemCharacterTable(), Utf8CharGet(), Utf8StrLen(), Utf8Strn0Cpy(), Utf8SymChars(), and Utf8ToArray().

int Utf8CharSet ( uint  c,
char *  s = NULL 
)

Converts the given UTF-8 symbol to a sequence of character bytes and copies them to the given string.

Returns the number of bytes written. If no string is given, only the number of bytes is returned and nothing is copied.

Definition at line 786 of file tools.c.

References cCharSetConv::SystemCharacterTable().

Referenced by DoubleEqual(), and Utf8FromArray().

int Utf8FromArray ( const uint *  a,
char *  s,
int  Size,
int  Max = -1 
)

Converts the given array of UTF-8 symbols (including the terminating 0) into a sequence of character bytes of at most Size length.

Returns the number of character bytes written (without the terminating 0). If Max is given, only that many symbols will be converted. The resulting string is always zero-terminated if Size is big enough.

Definition at line 882 of file tools.c.

References cCharSetConv::systemCharacterTable, cCharSetConv::SystemCharacterTable(), and Utf8CharSet().

Referenced by DoubleEqual(), cMenuEditStrItem::LeaveEditMode(), and cMenuEditStrItem::Set().

int Utf8StrLen ( const char *  s)
char* Utf8Strn0Cpy ( char *  Dest,
const char *  Src,
int  n 
)

Copies at most n character bytes from Src to Dest, making sure that the resulting copy ends with a complete UTF-8 symbol.

The copy is guaranteed to be zero terminated. Returns a pointer to Dest.

Definition at line 845 of file tools.c.

References strn0cpy(), cCharSetConv::SystemCharacterTable(), and Utf8CharLen().

Referenced by cTimer::cTimer(), DoubleEqual(), cTimer::Parse(), cSetup::Parse(), cMenuSetupOSD::ProcessKey(), cDevice::SetAvailableTrack(), and cTimer::SetFile().

int Utf8SymChars ( const char *  s,
int  Symbols 
)

Returns the number of character bytes at the beginning of the given string that form at most the given number of UTF-8 symbols.

Definition at line 820 of file tools.c.

References cCharSetConv::SystemCharacterTable(), and Utf8CharLen().

Referenced by DoubleEqual(), cMenuScheduleItem::Update(), and WeekDayName().

int Utf8ToArray ( const char *  s,
uint *  a,
int  Size 
)

Converts the given character bytes (including the terminating 0) into an array of UTF-8 symbols of the given Size.

Returns the number of symbols in the array (without the terminating 0).

Definition at line 864 of file tools.c.

References cCharSetConv::SystemCharacterTable(), Utf8CharGet(), and Utf8CharLen().

Referenced by DoubleEqual(), and cMenuEditStrItem::EnterEditMode().

cString WeekDayName ( int  WeekDay)

Converts the given WeekDay (0=Sunday, 1=Monday, ...) to a three letter day name.

Definition at line 1103 of file tools.c.

References min(), strn0cpy(), tr, and Utf8SymChars().

Referenced by DateString(), DayDateTime(), cSkinLCARSDisplayMenu::DrawTimer(), cMenuEditDateItem::Set(), cMenuTimerItem::Set(), skipspace(), and WeekDayName().

cString WeekDayName ( time_t  t)

Converts the week day of the given time to a three letter day name.

Definition at line 1118 of file tools.c.

References WeekDayName().

cString WeekDayNameFull ( int  WeekDay)

Converts the given WeekDay (0=Sunday, 1=Monday, ...) to a full day name.

Definition at line 1124 of file tools.c.

References tr.

Referenced by skipspace(), and WeekDayNameFull().

cString WeekDayNameFull ( time_t  t)

Converts the week day of the given time to a full day name.

Definition at line 1139 of file tools.c.

References WeekDayNameFull().

int WriteAllOrNothing ( int  fd,
const uchar Data,
int  Length,
int  TimeoutMs = 0,
int  RetryMs = 0 
)

Writes either all Data to the given file descriptor, or nothing at all.

If TimeoutMs is greater than 0, it will only retry for that long, otherwise it will retry forever. RetryMs defines the time between two retries.

Definition at line 90 of file tools.c.

References cTimeMs::Elapsed(), FATALERRNO, and cPoller::Poll().

Referenced by cString::operator*(), cDvbSdFfDevice::PlayAudio(), cDvbHdFfDevice::PlayAudio(), cDvbSdFfDevice::PlayTsAudio(), cDvbHdFfDevice::PlayTsAudio(), cDvbSdFfDevice::PlayTsVideo(), cDvbHdFfDevice::PlayTsVideo(), cDvbSdFfDevice::PlayVideo(), and cDvbHdFfDevice::PlayVideo().

void writechar ( int  filedes,
char  c 
)

Definition at line 85 of file tools.c.

References safe_write().

Referenced by cIndexFile::cIndexFile(), and cString::operator*().

Variable Documentation

int SysLogLevel

Definition at line 31 of file tools.c.

Referenced by main().