aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/index/postinglistfile.cpp
blob: 7bb724f0fe6912cfac0f7ae8b8c6391a2385b2b3 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "postinglistfile.h"
#include "postinglistparams.h"
#include <vespa/fastos/file.h>
#include <vespa/searchlib/queryeval/searchiterator.h>

namespace search::index {

PostingListFileSeqRead::PostingListFileSeqRead() = default;
PostingListFileSeqRead::~PostingListFileSeqRead() = default;

void
PostingListFileSeqRead::
getParams(PostingListParams &params)
{
    params.clear();
}

void
PostingListFileSeqRead::
setFeatureParams(const PostingListParams &params)
{
    (void) params;
}

void
PostingListFileSeqRead::
getFeatureParams(PostingListParams &params)
{
    params.clear();
}

PostingListFileSeqWrite::PostingListFileSeqWrite()
    : _counts()
{
}

PostingListFileSeqWrite::~PostingListFileSeqWrite() = default;

void
PostingListFileSeqWrite::
setParams(const PostingListParams &params)
{
    (void) params;
}

void
PostingListFileSeqWrite::
getParams(PostingListParams &params)
{
    params.clear();
}

void
PostingListFileSeqWrite::
setFeatureParams(const PostingListParams &params)
{
    (void) params;
}

void
PostingListFileSeqWrite::
getFeatureParams(PostingListParams &params)
{
    params.clear();
}

PostingListFileRandRead::
PostingListFileRandRead()
    : _memoryMapped(false)
{
}

PostingListFileRandRead::~PostingListFileRandRead() = default;

void
PostingListFileRandRead::afterOpen(FastOS_FileInterface &file)
{
    _memoryMapped = (file.MemoryMapPtr(0) != nullptr);
}

PostingListFileRandReadPassThrough::
PostingListFileRandReadPassThrough(PostingListFileRandRead *lower,
                                   bool ownLower)
    : _lower(lower),
      _ownLower(ownLower)
{
}

PostingListFileRandReadPassThrough::~PostingListFileRandReadPassThrough()
{
    if (_ownLower) {
        delete _lower;
    }
}

std::unique_ptr<search::queryeval::SearchIterator>
PostingListFileRandReadPassThrough::
createIterator(const PostingListCounts &counts,
               const PostingListHandle &handle,
               const search::fef::TermFieldMatchDataArray &matchData,
               bool usebitVector) const
{
    return _lower->createIterator(counts, handle, matchData, usebitVector);
}

void
PostingListFileRandReadPassThrough::
readPostingList(const PostingListCounts &counts,
                uint32_t firstSegment,
                uint32_t numSegments,
                PostingListHandle &handle)
{
    _lower->readPostingList(counts, firstSegment, numSegments,handle);
}

bool
PostingListFileRandReadPassThrough::open(const vespalib::string &name,
        const TuneFileRandRead &tuneFileRead)
{
    bool ret = _lower->open(name, tuneFileRead);
    _memoryMapped = _lower->getMemoryMapped();
    return ret;
}

bool
PostingListFileRandReadPassThrough::close()
{
    return _lower->close();
}

}