blob: c39075b7f771d484c902cb412be4fe8b20d78f83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef VDR_LIVE_TOOLS_H
#define VDR_LIVE_TOOLS_H
#include <ctime>
#include <string>
#include <vdr/thread.h>
namespace vdrlive {
std::string FormatDateTime( char const* format, time_t time );
std::string StringReplace( std::string const& text, std::string const& substring, std::string const& replacement );
class ReadLock
{
public:
ReadLock( cRwLock& lock, int timeout = 100 ): m_lock( lock ), m_locked( false ) { if ( m_lock.Lock( false, timeout ) ) m_locked = true; }
~ReadLock() { if ( m_locked ) m_lock.Unlock(); }
operator bool() { return m_locked; }
bool operator!() { return !m_locked; }
private:
ReadLock( ReadLock const& );
cRwLock& m_lock;
bool m_locked;
};
} // namespace vdrlive
#endif // VDR_LIVE_TOOLS_H
|