summaryrefslogtreecommitdiffstats
path: root/src/crimson/os/seastore/extentmap_manager.cc
blob: 32de3a6edfb58524ff1aae388ddec145f8e93feb (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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include <experimental/iterator>
#include <iostream>

#include "crimson/os/seastore/transaction_manager.h"
#include "crimson/os/seastore/extentmap_manager.h"
#include "crimson/os/seastore/extentmap_manager/btree/btree_extentmap_manager.h"
namespace crimson::os::seastore::extentmap_manager {

ExtentMapManagerRef create_extentmap_manager(TransactionManager &trans_manager) {
  return ExtentMapManagerRef(new BtreeExtentMapManager(trans_manager));
}

}

namespace crimson::os::seastore {

std::ostream &operator<<(std::ostream &out, const extent_mapping_t &rhs)
{
  return out << "extent_mapping_t (" << rhs.logical_offset << "~" << rhs.length
	        << "->" << rhs.laddr << ")";
}

std::ostream &operator<<(std::ostream &out, const extent_map_list_t &rhs)
{
  out << '[';
  std::copy(std::begin(rhs), std::end(rhs), std::experimental::make_ostream_joiner(out, ", "));
  return out << ']';
}

}