polybar-dwm/include/utils/io.hpp

27 lines
697 B
C++
Raw Normal View History

#pragma once
2016-05-19 16:41:06 +02:00
2016-06-15 05:32:35 +02:00
#include "common.hpp"
LEMONBUDDY_NS
namespace io_util {
2016-11-02 20:22:45 +01:00
string read(int read_fd, int bytes_to_read, int& bytes_read_loc, int& status_loc);
string read(int read_fd, int bytes_to_read = -1);
string readline(int read_fd, int& bytes_read);
string readline(int read_fd);
2016-06-15 05:32:35 +02:00
2016-11-02 20:22:45 +01:00
size_t write(int write_fd, string data);
size_t writeline(int write_fd, string data);
2016-05-19 16:41:06 +02:00
2016-11-02 20:22:45 +01:00
void tail(int read_fd, function<void(string)> callback);
void tail(int read_fd, int writeback_fd);
2016-05-19 16:41:06 +02:00
2016-11-02 20:22:45 +01:00
bool poll(int fd, short int events, int timeout_ms = 1);
bool poll_read(int fd, int timeout_ms = 1);
bool poll_write(int fd, int timeout_ms = 1);
2016-05-19 16:41:06 +02:00
2016-11-03 19:01:45 +01:00
bool interrupt_read(int write_fd);
2016-05-19 16:41:06 +02:00
}
2016-06-15 05:32:35 +02:00
LEMONBUDDY_NS_END