lister: move to utils

There's nothing specific to scylla in the lister
classes, they could (and maybe should) be part of
the seastar library.

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
This commit is contained in:
Benny Halevy
2022-02-28 12:27:53 +02:00
parent 132c9d5933
commit ebbbf1e687
14 changed files with 13 additions and 13 deletions

View File

@@ -955,7 +955,7 @@ scylla_core = (['replica/database.cc',
'clocks-impl.cc',
'partition_slice_builder.cc',
'init.cc',
'lister.cc',
'utils/lister.cc',
'repair/repair.cc',
'repair/row_level.cc',
'exceptions/exceptions.cc',

View File

@@ -23,7 +23,7 @@
#include "seastarx.hh"
#include "converting_mutation_partition_applier.hh"
#include "utils/disk-error-handler.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "db/timeout_clock.hh"
#include "service/priority_manager.hh"
#include "replica/database.hh"

View File

@@ -16,7 +16,7 @@
#include <seastar/core/sleep.hh>
#include <seastar/core/seastar.hh>
#include "utils/div_ceil.hh"
#include "lister.hh"
#include "utils/lister.hh"
namespace db {
namespace hints {

View File

@@ -7,7 +7,7 @@
*/
#include "log.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "replica/database.hh"
#include <seastar/core/future-util.hh>
#include "db/system_keyspace.hh"

View File

@@ -13,7 +13,7 @@
#include "db/system_keyspace.hh"
#include "db/system_distributed_keyspace.hh"
#include "db/schema_tables.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "compaction/compaction.hh"
#include "compaction/compaction_manager.hh"
#include "sstables/sstables.hh"

View File

@@ -38,7 +38,7 @@
#include "gms/gossiper.hh"
#include "db/config.hh"
#include "db/commitlog/commitlog.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include <boost/range/algorithm/remove_if.hpp>
#include <boost/range/algorithm.hpp>

View File

@@ -13,7 +13,7 @@
#include "compaction/compaction_manager.hh"
#include "log.hh"
#include "sstable_directory.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "replica/database.hh"
static logging::logger dirlog("sstable_directory");

View File

@@ -20,7 +20,7 @@
#include "test/lib/random_utils.hh"
#include "replica/database.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "partition_slice_builder.hh"
#include "frozen_mutation.hh"
#include "test/lib/mutation_source_test.hh"

View File

@@ -20,7 +20,7 @@
#include "test/lib/random_utils.hh"
#include "test/lib/make_random_string.hh"
#include "lister.hh"
#include "utils/lister.hh"
class expected_exception : public std::exception {
public:

View File

@@ -17,7 +17,7 @@
#include "test/lib/cql_test_env.hh"
#include "test/lib/tmpdir.hh"
#include "db/config.hh"
#include "lister.hh"
#include "utils/lister.hh"
#include "fmt/format.h"

View File

@@ -10,7 +10,7 @@
#include <seastar/testing/test_case.hh>
#include <seastar/testing/thread_test_case.hh>
#include "lister.hh"
#include "utils/lister.hh"
#include "test/lib/tmpdir.hh"
#include "test/lib/sstable_test_env.hh"
#include "sstable_test.hh"

View File

@@ -13,7 +13,7 @@
#include "utils/disk-error-handler.hh"
#include "utils/fmt-compat.hh"
#include "db/config.hh"
#include "lister.hh"
#include "utils/lister.hh"
namespace utils {

View File

@@ -2,7 +2,7 @@
#include <seastar/core/print.hh>
#include <seastar/core/seastar.hh>
#include <seastar/util/log.hh>
#include "lister.hh"
#include "utils/lister.hh"
#include "checked-file-impl.hh"
static seastar::logger llogger("lister");