aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcorespi/index/indexdisklayout.h
blob: a577f6daf01bebce140dd5dcf263e104af1757d6 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/string.h>

namespace searchcorespi {
namespace index {

class IndexDiskDir;

/**
 * Utility class used to get static aspects of the disk layout (i.e directory and file names)
 * needed by the index maintainer.
 */
class IndexDiskLayout {
public:
    static const vespalib::string FlushDirPrefix;
    static const vespalib::string FusionDirPrefix;
    static const vespalib::string SerialNumTag;

private:
    vespalib::string _baseDir;

public:
    IndexDiskLayout(const vespalib::string &baseDir);
    vespalib::string getFlushDir(uint32_t sourceId) const;
    vespalib::string getFusionDir(uint32_t sourceId) const;
    static IndexDiskDir get_index_disk_dir(const vespalib::string& dir);

    static vespalib::string getSerialNumFileName(const vespalib::string &dir);
    static vespalib::string getSchemaFileName(const vespalib::string &dir);
    static vespalib::string getSelectorFileName(const vespalib::string &dir);
};

} // namespace index
} // namespace searchcorespi