summaryrefslogtreecommitdiffstats
path: root/src/test/objectstore/FileStoreTracker.h
blob: 90c456250ce5d42a68c216f17a10232a7fce844f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-

#ifndef FILESTORE_TRACKER_H
#define FILESTORE_TRACKER_H
#include "test/common/ObjectContents.h"
#include "os/filestore/FileStore.h"
#include "kv/KeyValueDB.h"
#include <boost/scoped_ptr.hpp>
#include <list>
#include <map>
#include "common/ceph_mutex.h"

class FileStoreTracker {
  const static uint64_t SIZE = 4 * 1024;
  ObjectStore *store;
  KeyValueDB *db;
  ceph::mutex lock = ceph::make_mutex("Tracker Lock");
  uint64_t restart_seq;

  struct OutTransaction {
    list<pair<pair<coll_t, string>, uint64_t> > *in_flight;
    ObjectStore::Transaction *t;
  };
public:
  FileStoreTracker(ObjectStore *store, KeyValueDB *db)
    : store(store), db(db),
      restart_seq(0) {}

  class Transaction {
    class Op {
    public:
      virtual void operator()(FileStoreTracker *harness,
			      OutTransaction *out) = 0;
      virtual ~Op() {};
    };
    list<Op*> ops;
    class Write : public Op {
    public:
      coll_t coll;
      string oid;
      Write(const coll_t &coll,
	    const string &oid)
	: coll(coll), oid(oid) {}
      void operator()(FileStoreTracker *harness,
		      OutTransaction *out) override {
	harness->write(make_pair(coll, oid), out);
      }
    };
    class CloneRange : public Op {
    public:
      coll_t coll;
      string from;
      string to;
      CloneRange(const coll_t &coll,
		 const string &from,
		 const string &to)
	: coll(coll), from(from), to(to) {}
      void operator()(FileStoreTracker *harness,
		      OutTransaction *out) override {
	harness->clone_range(make_pair(coll, from), make_pair(coll, to),
			     out);
      }
    };
    class Clone : public Op {
    public:
      coll_t coll;
      string from;
      string to;
      Clone(const coll_t &coll,
		 const string &from,
		 const string &to)
	: coll(coll), from(from), to(to) {}
      void operator()(FileStoreTracker *harness,
		      OutTransaction *out) override {
	harness->clone(make_pair(coll, from), make_pair(coll, to),
			     out);
      }
    };
    class Remove: public Op {
    public:
      coll_t coll;
      string obj;
      Remove(const coll_t &coll,
	     const string &obj)
	: coll(coll), obj(obj) {}
      void operator()(FileStoreTracker *harness,
		      OutTransaction *out) override {
	harness->remove(make_pair(coll, obj),
			out);
      }
    };
  public:
    void write(const coll_t &coll, const string &oid) {
      ops.push_back(new Write(coll, oid));
    }
    void clone_range(const coll_t &coll, const string &from,
		     const string &to) {
      ops.push_back(new CloneRange(coll, from, to));
    }
    void clone(const coll_t &coll, const string &from,
	       const string &to) {
      ops.push_back(new Clone(coll, from, to));
    }
    void remove(const coll_t &coll, const string &oid) {
      ops.push_back(new Remove(coll, oid));
    }
    friend class FileStoreTracker;
  };

  int init();
  void submit_transaction(Transaction &t);
  void verify(const coll_t &coll,
	      const string &from,
	      bool on_start = false);

private:
  ObjectContents get_current_content(const pair<coll_t, string> &obj);
  pair<uint64_t, uint64_t> get_valid_reads(const pair<coll_t, string> &obj);
  ObjectContents get_content(const pair<coll_t, string> &obj, uint64_t version);

  void committed(const pair<coll_t, string> &obj, uint64_t seq);
  void applied(const pair<coll_t, string> &obj, uint64_t seq);
  uint64_t set_content(const pair<coll_t, string> &obj, ObjectContents &content);

  // ObjectContents Operations
  void write(const pair<coll_t, string> &obj, OutTransaction *out);
  void remove(const pair<coll_t, string> &obj, OutTransaction *out);
  void clone_range(const pair<coll_t, string> &from,
		   const pair<coll_t, string> &to,
		   OutTransaction *out);
  void clone(const pair<coll_t, string> &from,
	     const pair<coll_t, string> &to,
	     OutTransaction *out);
  friend class OnApplied;
  friend class OnCommitted;
};

#endif