summaryrefslogtreecommitdiff
path: root/tools/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/file.c')
-rw-r--r--tools/file.c96
1 files changed, 0 insertions, 96 deletions
diff --git a/tools/file.c b/tools/file.c
deleted file mode 100644
index 6ca3ac3..0000000
--- a/tools/file.c
+++ /dev/null
@@ -1,96 +0,0 @@
-#include "tools/file.h"
-
-#include <vdr/tools.h>
-#include <sys/stat.h>
-#include <string.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <errno.h>
-
-cTBFile::cTBFile(void) {
-}
-
-cTBFile::~cTBFile() {
- Close();
-}
-
-bool cTBFile::Open(const std::string &Filename, int Mode, mode_t Attribs) {
- int filed;
-
- if (IsOpen()) Close();
-
- if ((filed = ::open(Filename.c_str(), Mode, Attribs)) == -1)
- return false;
-
- if (!cTBSource::Open(filed))
- return false;
-
- m_Filename = Filename;
- m_Anonymous = false;
- return true;
-}
-
-bool cTBFile::Open(uint Fileno) {
- if (IsOpen()) Close();
-
- if (!cTBSource::Open(Fileno))
- return false;
-
- m_Filename = (std::string)"<&" + (const char*)itoa(Fileno) + ">";
- m_Anonymous = true;
- return true;
-}
-
-bool cTBFile::Close(void) {
- bool ret = true;
-
- if (!IsOpen())
- ERRNUL(EBADF);
-
- if (::close(*this) == -1)
- ret = false;
-
- if (!cTBSource::Close())
- ret = false;
-
- m_Filename = "";
- return ret;
-}
-
-bool cTBFile::Unlink(void) const {
- if (m_Filename == "")
- ERRNUL(ENOENT);
-
- if (!IsOpen())
- ERRNUL(EBADF);
-
- if (m_Anonymous)
- ERRNUL(EINVAL);
-
- return cTBFile::Unlink(m_Filename);
-}
-
-bool cTBFile::Unlink(const std::string &Filename) {
- return (::unlink(Filename.c_str()) != -1);
-}
-
-ssize_t cTBFile::Size(void) const {
- struct stat buf;
-
- if (!IsOpen())
- ERRSYS(EBADF);
-
- if (fstat(*this, &buf) == -1)
- return -1;
-
- return buf.st_size;
-}
-
-ssize_t cTBFile::Size(const std::string &Filename) {
- struct stat buf;
-
- if (stat(Filename.c_str(), &buf) == -1)
- return -1;
-
- return buf.st_size;
-}