libscio/fdistream.cpp

39 lines
586 B
C++
Raw Normal View History

2020-02-17 21:11:49 +01:00
//
// fdistream.cpp
// libscio
//
// Created by Bob Polis at 2020-02-14
// Copyright (c) 2020 SwiftCoder. All rights reserved.
//
#include "libscio.hpp"
2020-02-22 21:18:53 +01:00
#ifdef _MSC_VER
#include <io.h>
2020-02-22 21:18:53 +01:00
#else
#include <unistd.h>
2020-02-22 21:18:53 +01:00
#endif
using namespace sc::io;
std::streambuf::int_type fdinbuf::uflow() {
if (_ch == EOF) {
return underflow();
}
2020-02-22 21:18:53 +01:00
return _ch;
}
std::streambuf::int_type fdinbuf::underflow() {
char c;
int num = read(_fd, &c, 1);
if (num <= 0) {
_ch = EOF;
}
_ch = c;
return _ch;
}
std::streamsize fdinbuf::xsgetn(char* s, std::streamsize n) {
return read(_fd, s, n);
}