2016-06-15 03:32:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-11 02:07:28 +00:00
|
|
|
#include <streambuf>
|
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
#include "common.hpp"
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
class file_descriptor {
|
|
|
|
public:
|
2021-03-01 23:00:24 +00:00
|
|
|
explicit file_descriptor(const string& path, int flags = 0, bool autoclose = true);
|
2017-01-01 07:58:33 +00:00
|
|
|
explicit file_descriptor(int fd, bool autoclose = true);
|
2016-12-20 04:05:43 +00:00
|
|
|
~file_descriptor();
|
2016-12-26 09:29:32 +00:00
|
|
|
|
|
|
|
file_descriptor& operator=(const int);
|
|
|
|
|
|
|
|
explicit operator bool();
|
|
|
|
operator bool() const;
|
|
|
|
|
|
|
|
explicit operator int();
|
|
|
|
operator int() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void close();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_fd{-1};
|
2017-01-01 07:58:33 +00:00
|
|
|
bool m_autoclose{true};
|
2016-12-26 09:29:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class fd_streambuf : public std::streambuf {
|
|
|
|
public:
|
|
|
|
using traits_type = std::streambuf::traits_type;
|
|
|
|
|
2017-01-01 07:58:33 +00:00
|
|
|
template <typename... Args>
|
|
|
|
explicit fd_streambuf(Args&&... args) : m_fd(forward<Args>(args)...) {
|
2021-10-02 23:27:11 +00:00
|
|
|
setg(m_in, m_in + BUFSIZE_IN, m_in + BUFSIZE_IN);
|
|
|
|
setp(m_out, m_out + BUFSIZE_OUT - 1);
|
2017-01-01 07:58:33 +00:00
|
|
|
}
|
2016-12-26 09:29:32 +00:00
|
|
|
~fd_streambuf();
|
|
|
|
|
|
|
|
explicit operator int();
|
|
|
|
operator int() const;
|
|
|
|
|
|
|
|
void open(int fd);
|
|
|
|
void close();
|
|
|
|
|
|
|
|
protected:
|
2021-01-04 09:38:43 +00:00
|
|
|
int sync() override;
|
|
|
|
int overflow(int c) override;
|
|
|
|
int underflow() override;
|
2016-12-26 09:29:32 +00:00
|
|
|
|
|
|
|
private:
|
2021-10-02 23:27:11 +00:00
|
|
|
static constexpr int BUFSIZE_OUT = 1024;
|
|
|
|
static constexpr int BUFSIZE_IN = 1024;
|
2016-12-26 09:29:32 +00:00
|
|
|
file_descriptor m_fd;
|
2021-10-02 23:27:11 +00:00
|
|
|
char m_out[BUFSIZE_OUT];
|
|
|
|
char m_in[BUFSIZE_IN];
|
2016-12-26 09:29:32 +00:00
|
|
|
};
|
|
|
|
|
2017-01-11 02:07:28 +00:00
|
|
|
template <typename StreamType>
|
2016-12-26 09:29:32 +00:00
|
|
|
class fd_stream : public StreamType {
|
|
|
|
public:
|
|
|
|
using type = fd_stream<StreamType>;
|
|
|
|
|
2017-01-01 07:58:33 +00:00
|
|
|
template <typename... Args>
|
2017-01-09 19:48:53 +00:00
|
|
|
explicit fd_stream(Args&&... args) : StreamType(nullptr), m_buf(forward<Args>(args)...) {
|
2016-12-26 09:29:32 +00:00
|
|
|
StreamType::rdbuf(&m_buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit operator int() {
|
|
|
|
return static_cast<const type&>(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
operator int() const {
|
|
|
|
return m_buf;
|
|
|
|
}
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
protected:
|
2016-12-26 09:29:32 +00:00
|
|
|
fd_streambuf m_buf;
|
2016-12-20 04:05:43 +00:00
|
|
|
};
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
namespace file_util {
|
2016-11-25 12:55:15 +00:00
|
|
|
bool exists(const string& filename);
|
2020-11-25 00:35:38 +00:00
|
|
|
bool is_file(const string& filename);
|
2021-10-24 09:25:05 +00:00
|
|
|
bool is_dir(const string& filename);
|
2016-12-31 03:20:46 +00:00
|
|
|
string pick(const vector<string>& filenames);
|
|
|
|
string contents(const string& filename);
|
2020-01-15 15:32:17 +00:00
|
|
|
void write_contents(const string& filename, const string& contents);
|
2017-01-01 07:58:33 +00:00
|
|
|
bool is_fifo(const string& filename);
|
2017-01-25 16:07:55 +00:00
|
|
|
vector<string> glob(string pattern);
|
2021-10-20 10:31:15 +00:00
|
|
|
string expand(const string& path, const string& relative_to = {});
|
2020-03-01 21:03:17 +00:00
|
|
|
string get_config_path();
|
2020-10-08 15:44:29 +00:00
|
|
|
vector<string> list_files(const string& dirname);
|
2021-10-20 10:31:15 +00:00
|
|
|
string dirname(const string& path);
|
2016-12-20 04:05:43 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
decltype(auto) make_file_descriptor(Args&&... args) {
|
2021-09-21 19:15:49 +00:00
|
|
|
return std::make_unique<file_descriptor>(forward<Args>(args)...);
|
2016-12-20 04:05:43 +00:00
|
|
|
}
|
2020-01-15 15:32:17 +00:00
|
|
|
} // namespace file_util
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|