mirror of
https://github.com/ksherlock/profuse.git
synced 2024-10-31 17:04:27 +00:00
9746117f71
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@351 aa027e90-d47c-11dd-86d7-074df07e0730
74 lines
1.3 KiB
C++
74 lines
1.3 KiB
C++
|
|
#include <algorithm>
|
|
#include <cerrno>
|
|
#include <cstring>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
#include <Cache/BlockCache.h>
|
|
#include <Device/BlockDevice.h>
|
|
|
|
#include <ProFUSE/Exception.h>
|
|
#include <ProFUSE/auto.h>
|
|
|
|
|
|
|
|
|
|
using namespace Device;
|
|
|
|
using ProFUSE::Exception;
|
|
using ProFUSE::POSIXException;
|
|
|
|
|
|
BlockCache::BlockCache(BlockDevicePointer device) :
|
|
_device(device)
|
|
{
|
|
_blocks = device->blocks();
|
|
_readOnly = device->readOnly();
|
|
}
|
|
|
|
BlockCache::~BlockCache()
|
|
{
|
|
}
|
|
|
|
void BlockCache::write(unsigned block, const void *bp)
|
|
{
|
|
void *address = acquire(block);
|
|
std::memcpy(address, bp, 512);
|
|
release(block, true);
|
|
}
|
|
|
|
void BlockCache::read(unsigned block, void *bp)
|
|
{
|
|
void *address = acquire(block);
|
|
std::memcpy(bp, address, 512);
|
|
release(block, false);
|
|
}
|
|
|
|
|
|
BlockCachePointer BlockCache::Create(BlockDevicePointer device)
|
|
{
|
|
// this just calls the device virtual function to create a cache.
|
|
if (!device) return BlockCachePointer();
|
|
|
|
return device->createBlockCache();
|
|
}
|
|
|
|
|
|
void BlockCache::zeroBlock(unsigned block)
|
|
{
|
|
/*
|
|
void *address = acquire(block);
|
|
std::memset(address, 0, 512);
|
|
release(block, true);
|
|
*/
|
|
|
|
uint8_t buffer[512];
|
|
|
|
std::memset(buffer, 0, 512);
|
|
write(block, buffer);
|
|
}
|