mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
**Detailed Descriptions:** - Remove AT_ERROR Macro Pull Request resolved: https://github.com/pytorch/pytorch/pull/137556 Approved by: https://github.com/ezyang
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
#include "caffe2/serialize/istream_adapter.h"
|
|
#include <c10/util/Exception.h>
|
|
|
|
namespace caffe2 {
|
|
namespace serialize {
|
|
|
|
IStreamAdapter::IStreamAdapter(std::istream* istream) : istream_(istream) {}
|
|
|
|
size_t IStreamAdapter::size() const {
|
|
auto prev_pos = istream_->tellg();
|
|
validate("getting the current position");
|
|
istream_->seekg(0, istream_->end);
|
|
validate("seeking to end");
|
|
auto result = istream_->tellg();
|
|
validate("getting size");
|
|
istream_->seekg(prev_pos);
|
|
validate("seeking to the original position");
|
|
return result;
|
|
}
|
|
|
|
size_t IStreamAdapter::read(uint64_t pos, void* buf, size_t n, const char* what)
|
|
const {
|
|
istream_->seekg(pos);
|
|
validate(what);
|
|
istream_->read(static_cast<char*>(buf), n);
|
|
validate(what);
|
|
return n;
|
|
}
|
|
|
|
void IStreamAdapter::validate(const char* what) const {
|
|
if (!*istream_) {
|
|
TORCH_CHECK(false, "istream reader failed: ", what, ".");
|
|
}
|
|
}
|
|
|
|
// NOLINTNEXTLINE(modernize-use-equals-default)
|
|
IStreamAdapter::~IStreamAdapter() {}
|
|
|
|
} // namespace serialize
|
|
} // namespace caffe2
|