mirror of
https://github.com/ceph/ceph
synced 2024-12-24 12:24:19 +00:00
07ac5d3e74
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1068 29311d96-e01e-0410-9327-a35deaab8ce9
57 lines
1.3 KiB
C++
57 lines
1.3 KiB
C++
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
|
|
/*
|
|
* Ceph - scalable distributed file system
|
|
*
|
|
* Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
|
|
*
|
|
* This is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software
|
|
* Foundation. See file COPYING.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _OBFSSTORE_H_
|
|
#define _OBFSSTORE_H_
|
|
|
|
#include "ObjectStore.h"
|
|
#include "Fake.h"
|
|
|
|
class OBFSStore : public ObjectStore,
|
|
public FakeStoreAttrs,
|
|
public FakeStoreCollections {
|
|
int whoami;
|
|
int bdev_id;
|
|
int mounted;
|
|
char dev[128];
|
|
char param[128];
|
|
|
|
public:
|
|
OBFSStore(int whoami, char *param, char *dev);
|
|
|
|
int mount(void);
|
|
int umount(void);
|
|
int mkfs(void);
|
|
|
|
int statfs(struct statfs *);
|
|
|
|
bool exists(object_t oid);
|
|
int stat(object_t oid, struct stat *st);
|
|
|
|
int remove(object_t oid);
|
|
int truncate(object_t oid, off_t size);
|
|
|
|
int read(object_t oid, size_t len,
|
|
off_t offset, bufferlist& bl);
|
|
int write(object_t oid, size_t len,
|
|
off_t offset, bufferlist& bl,
|
|
bool fsync);
|
|
int write(object_t oid, size_t len,
|
|
off_t offset, bufferlist& bl,
|
|
Context *onflush);
|
|
|
|
};
|
|
|
|
#endif
|