polybar/include/utils/file.hpp

38 lines
654 B
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include "common.hpp"
LEMONBUDDY_NS
namespace file_util {
/**
* RAII file wrapper
*/
class file_ptr {
public:
explicit file_ptr(const string& path, const string& mode = "a+")
: m_path(string(path)), m_mode(string(mode)) {
m_ptr = fopen(m_path.c_str(), m_mode.c_str());
}
2016-11-02 19:22:45 +00:00
~file_ptr();
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
operator bool();
2016-06-15 03:32:35 +00:00
2016-11-02 19:22:45 +00:00
FILE* operator()();
2016-06-15 03:32:35 +00:00
protected:
FILE* m_ptr = nullptr;
string m_path;
string m_mode;
};
2016-11-02 19:22:45 +00:00
bool exists(string filename);
string get_contents(string filename);
void set_block(int fd);
void set_nonblock(int fd);
bool is_fifo(string filename);
2016-06-15 03:32:35 +00:00
}
LEMONBUDDY_NS_END