-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAger.h
43 lines (35 loc) · 1.09 KB
/
Ager.h
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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef CEPH_AGER_H
#define CEPH_AGER_H
#include "include/types.h"
#include "include/Distribution.h"
#include "os/ObjectStore.h"
#include "common/Clock.h"
#include "common/ceph_context.h"
#include <list>
#include <vector>
using namespace std;
class Ager {
CephContext *cct;
ObjectStore *store;
private:
list<file_object_t> age_free_oids;
file_object_t age_cur_oid;
vector< list<file_object_t> > age_objects;
Distribution file_size_distn; //kb
bool did_distn;
void age_empty(float pc);
uint64_t age_fill(float pc, utime_t until);
ssize_t age_pick_size();
file_object_t age_get_oid();
public:
Ager(CephContext *cct_, ObjectStore *s) : cct(cct_), store(s), did_distn(false) {}
void age(int time,
float high_water, // fill to this %
float low_water, // then empty to this %
int count, // this many times
float final_water, // and end here ( <= low_water)
int fake_size_mb=0);
};
#endif