rename one char variable names
This commit is contained in:
parent
8108c6320d
commit
9416a983c6
@ -125,7 +125,7 @@ void TemporaryStorage::ReadFromSlot(const int slot_id, char *pointer, const std:
|
|||||||
BOOST_ASSERT(!data.write_mode);
|
BOOST_ASSERT(!data.write_mode);
|
||||||
data.temp_file->read(pointer, size);
|
data.temp_file->read(pointer, size);
|
||||||
}
|
}
|
||||||
catch (boost::filesystem::filesystem_error &e) { Abort(e); }
|
catch (boost::filesystem::filesystem_error &error) { Abort(error); }
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t TemporaryStorage::GetFreeBytesOnTemporaryDevice()
|
uint64_t TemporaryStorage::GetFreeBytesOnTemporaryDevice()
|
||||||
@ -133,19 +133,19 @@ uint64_t TemporaryStorage::GetFreeBytesOnTemporaryDevice()
|
|||||||
uint64_t value = -1;
|
uint64_t value = -1;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
boost::filesystem::path p = boost::filesystem::temp_directory_path();
|
boost::filesystem::path path = boost::filesystem::temp_directory_path();
|
||||||
boost::filesystem::space_info s = boost::filesystem::space(p);
|
boost::filesystem::space_info space_info = boost::filesystem::space(path);
|
||||||
value = s.free;
|
value = space_info.free;
|
||||||
}
|
}
|
||||||
catch (boost::filesystem::filesystem_error &e) { Abort(e); }
|
catch (boost::filesystem::filesystem_error &error) { Abort(error); }
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TemporaryStorage::CheckIfTemporaryDeviceFull()
|
void TemporaryStorage::CheckIfTemporaryDeviceFull()
|
||||||
{
|
{
|
||||||
boost::filesystem::path p = boost::filesystem::temp_directory_path();
|
boost::filesystem::path path = boost::filesystem::temp_directory_path();
|
||||||
boost::filesystem::space_info s = boost::filesystem::space(p);
|
boost::filesystem::space_info space_info = boost::filesystem::space(path);
|
||||||
if ((1024 * 1024) > s.free)
|
if ((1024 * 1024) > space_info.free)
|
||||||
{
|
{
|
||||||
throw OSRMException("temporary device is full");
|
throw OSRMException("temporary device is full");
|
||||||
}
|
}
|
||||||
@ -164,8 +164,8 @@ boost::filesystem::fstream::pos_type TemporaryStorage::Tell(const int slot_id)
|
|||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TemporaryStorage::Abort(const boost::filesystem::filesystem_error &e)
|
void TemporaryStorage::Abort(const boost::filesystem::filesystem_error &error)
|
||||||
{
|
{
|
||||||
RemoveAll();
|
RemoveAll();
|
||||||
throw OSRMException(e.what());
|
throw OSRMException(error.what());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user