| 49 | } |
| 50 | |
| 51 | DiskFile::DiskFile(const string& path, DiskIoMgr* io_mgr) |
| 52 | : path_(path), |
| 53 | disk_type_(DiskFileType::LOCAL), |
| 54 | file_status_(DiskFileStatus::INWRITING), |
| 55 | file_writer_(new LocalFileWriter(io_mgr, path.c_str())), |
| 56 | space_reserved_(true) {} |
| 57 | |
| 58 | DiskFile::DiskFile(const string& path, DiskIoMgr* io_mgr, int64_t file_size, |
| 59 | DiskFileType disk_type, const hdfsFS* hdfs_conn) |