Use int64_t instead of off_t

Using off_t, at least, in DiskAdaptor layer is problematic because
torrent can contain under 2GiB files but total sum of those files may
exceed 2GiB limit, which makes off_t overflow in 32 bit system without
large file support. So we use int64_t in API. We'll check the file
length before download so that it does not exceed max off_t.
This commit is contained in:
Tatsuhiro Tsujikawa 2012-07-23 21:36:24 +09:00
parent f56743b083
commit 860f4dd06a
48 changed files with 191 additions and 184 deletions

View file

@ -43,7 +43,7 @@ void ByteArrayDiskWriterTest::testWriteAndRead() {
buf[c] = '\0';
CPPUNIT_ASSERT_EQUAL(std::string("ello World !!"), std::string(buf));
CPPUNIT_ASSERT_EQUAL((off_t)14, bw.size());
CPPUNIT_ASSERT_EQUAL((int64_t)14, bw.size());
}
void ByteArrayDiskWriterTest::testWriteAndRead2() {
@ -59,7 +59,7 @@ void ByteArrayDiskWriterTest::testWriteAndRead2() {
buf[c] = '\0';
CPPUNIT_ASSERT_EQUAL(std::string("Hello From Mars"), std::string(buf));
CPPUNIT_ASSERT_EQUAL((off_t)15, bw.size());
CPPUNIT_ASSERT_EQUAL((int64_t)15, bw.size());
}
} // namespace aria2