summaryrefslogtreecommitdiffstats
path: root/src/tools/rbd_mirror/Threads.cc
blob: ca0a8b0f93aaf441518f794d5327bc62101a57db (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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#include "tools/rbd_mirror/Threads.h"
#include "common/Timer.h"
#include "common/WorkQueue.h"
#include "librbd/ImageCtx.h"

namespace rbd {
namespace mirror {

template <typename I>
Threads<I>::Threads(CephContext *cct) : timer_lock("Threads::timer_lock") {
  thread_pool = new ThreadPool(cct, "Journaler::thread_pool", "tp_journal",
                               cct->_conf.get_val<uint64_t>("rbd_op_threads"),
                               "rbd_op_threads");
  thread_pool->start();

  work_queue = new ContextWQ("Journaler::work_queue",
                             cct->_conf.get_val<uint64_t>("rbd_op_thread_timeout"),
                             thread_pool);

  timer = new SafeTimer(cct, timer_lock, true);
  timer->init();
}

template <typename I>
Threads<I>::~Threads() {
  {
    Mutex::Locker timer_locker(timer_lock);
    timer->shutdown();
  }
  delete timer;

  work_queue->drain();
  delete work_queue;

  thread_pool->stop();
  delete thread_pool;
}

} // namespace mirror
} // namespace rbd

template class rbd::mirror::Threads<librbd::ImageCtx>;