- 论坛徽章:
- 0
|
因为需求的缘故,读写部分数据后超时,则此次读写的数据可以丢掉,所以那里直接返回-1了,没有返回读写到的实际数目。代码是小弟写的,但是小弟心里总觉得可能有更好的写法,想问问大家是怎么做的呢?望各位大侠指教。
int read_with_timeout(int fd, void *buf, uint32_t count, int timeout)
{
struct pollfd pollfd;
uint32_t have_io = 0;
int ret;
pollfd.fd = fd;
pollfd.events = POLLIN;
while (count != have_io) {
ret = poll(&pollfd, 1, timeout);
if (ret < 0 && errno == EINTR) /* Signal interrupt */
continue;
if (ret <= 0) /* Error or Timeout */
return -1;
if (pollfd.revents & POLLIN) {
ret = read(fd, buf + have_io, count - have_io);
if (ret <= 0 ) /* Error or closed */
return -1;
have_io += ret;
}
}
return have_io;
}
int write_with_timeout(int fd, const void *buf, uint32_t count, int timeout)
{
struct pollfd pollfd;
uint32_t have_io = 0;
int ret;
pollfd.fd = fd;
pollfd.events = POLLOUT;
while (count != have_io) {
ret = poll(&pollfd, 1, timeout);
if (ret < 0 && errno == EINTR) /* Signal interrupt */
continue;
if (ret <= 0) /* Error or Timeout */
return -1;
if (pollfd.revents & POLLOUT) {
ret = write(fd, buf + have_io, count - have_io);
if (ret <= 0 ) /* Error or closed */
return -1;
have_io += ret;
}
}
return have_io;
}
[ 本帖最后由 soulskylove 于 2008-12-21 19:11 编辑 ] |
|