59e63bc minor 6233050 ok 14477f9 add namenode 75a6d34 add libhdfs opts e3c76bf minmum fix 8b3c435 chg 2035799 test code 7751b2b add debug 7690313 ok bd346b4 ok faba1dc add testload 6f7783e add testload e5f0340 ok 3ed9ec8 chg e552ac4 ask for more ram in am b2505e3 only stop nm when sucess bc696c9 add queue info f3e867e add option queue 5dc843c refactor fileio cd9c81b quick fix 1e23af2 add virtual destructor to iseekstream f165ffb fix hdfs 8cc6508 allow demo to pass in env fad4d69 ok 0fd6197 fix more 7423837 fix more d25de54 add temporal solution, run_yarn_prog.py e5a9e31 final attempt ed3bee8 add command back 0774000 add hdfs to resource 9b66e7e fix hadoop 6812f14 ok 08e1c16 change hadoop prefix back to hadoop home d6b6828 Update build.sh 146e069 bugfix: logical boundary for ring buffer 19cb685 ok 4cf3c13 Merge branch 'master' of ssh://github.com/tqchen/rabit 20daddb add tracker c57dad8 add ringbased passing and batch schedule 295d8a1 update 994cb02 add sge 014c866 OK git-subtree-dir: subtree/rabit git-subtree-split: 59e63bc1354c9ff516d72d9a6468f6c431627202
113 lines
2.9 KiB
C++
113 lines
2.9 KiB
C++
#ifndef RABIT_LEARN_IO_FILE_INL_H_
|
|
#define RABIT_LEARN_IO_FILE_INL_H_
|
|
/*!
|
|
* \file file-inl.h
|
|
* \brief normal filesystem I/O
|
|
* \author Tianqi Chen
|
|
*/
|
|
#include <string>
|
|
#include <vector>
|
|
#include <cstdio>
|
|
#include "./io.h"
|
|
#include "./line_split-inl.h"
|
|
|
|
/*! \brief io interface */
|
|
namespace rabit {
|
|
namespace io {
|
|
/*! \brief implementation of file i/o stream */
|
|
class FileStream : public utils::ISeekStream {
|
|
public:
|
|
explicit FileStream(const char *fname, const char *mode)
|
|
: use_stdio(false) {
|
|
using namespace std;
|
|
#ifndef RABIT_STRICT_CXX98_
|
|
if (!strcmp(fname, "stdin")) {
|
|
use_stdio = true; fp = stdin;
|
|
}
|
|
if (!strcmp(fname, "stdout")) {
|
|
use_stdio = true; fp = stdout;
|
|
}
|
|
#endif
|
|
if (!strncmp(fname, "file://", 7)) fname += 7;
|
|
if (!use_stdio) {
|
|
std::string flag = mode;
|
|
if (flag == "w") flag = "wb";
|
|
if (flag == "r") flag = "rb";
|
|
fp = utils::FopenCheck(fname, flag.c_str());
|
|
}
|
|
}
|
|
virtual ~FileStream(void) {
|
|
this->Close();
|
|
}
|
|
virtual size_t Read(void *ptr, size_t size) {
|
|
return std::fread(ptr, 1, size, fp);
|
|
}
|
|
virtual void Write(const void *ptr, size_t size) {
|
|
std::fwrite(ptr, size, 1, fp);
|
|
}
|
|
virtual void Seek(size_t pos) {
|
|
std::fseek(fp, static_cast<long>(pos), SEEK_SET);
|
|
}
|
|
virtual size_t Tell(void) {
|
|
return std::ftell(fp);
|
|
}
|
|
virtual bool AtEnd(void) const {
|
|
return std::feof(fp) != 0;
|
|
}
|
|
inline void Close(void) {
|
|
if (fp != NULL && !use_stdio) {
|
|
std::fclose(fp); fp = NULL;
|
|
}
|
|
}
|
|
|
|
private:
|
|
std::FILE *fp;
|
|
bool use_stdio;
|
|
};
|
|
|
|
/*! \brief line split from normal file system */
|
|
class FileProvider : public LineSplitter::IFileProvider {
|
|
public:
|
|
explicit FileProvider(const char *uri) {
|
|
LineSplitter::SplitNames(&fnames_, uri, "#");
|
|
std::vector<size_t> fsize;
|
|
for (size_t i = 0; i < fnames_.size(); ++i) {
|
|
if (!std::strncmp(fnames_[i].c_str(), "file://", 7)) {
|
|
std::string tmp = fnames_[i].c_str() + 7;
|
|
fnames_[i] = tmp;
|
|
}
|
|
size_t fz = GetFileSize(fnames_[i].c_str());
|
|
if (fz != 0) {
|
|
fsize_.push_back(fz);
|
|
}
|
|
}
|
|
}
|
|
// destrucor
|
|
virtual ~FileProvider(void) {}
|
|
virtual utils::ISeekStream *Open(size_t file_index) {
|
|
utils::Assert(file_index < fnames_.size(), "file index exceed bound");
|
|
return new FileStream(fnames_[file_index].c_str(), "rb");
|
|
}
|
|
virtual const std::vector<size_t> &FileSize(void) const {
|
|
return fsize_;
|
|
}
|
|
private:
|
|
// file sizes
|
|
std::vector<size_t> fsize_;
|
|
// file names
|
|
std::vector<std::string> fnames_;
|
|
// get file size
|
|
inline static size_t GetFileSize(const char *fname) {
|
|
std::FILE *fp = utils::FopenCheck(fname, "rb");
|
|
// NOTE: fseek may not be good, but serves as ok solution
|
|
std::fseek(fp, 0, SEEK_END);
|
|
size_t fsize = static_cast<size_t>(std::ftell(fp));
|
|
std::fclose(fp);
|
|
return fsize;
|
|
}
|
|
};
|
|
} // namespace io
|
|
} // namespace rabit
|
|
#endif // RABIT_LEARN_IO_FILE_INL_H_
|
|
|