aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/feedstate.cpp
blob: 9a4890b5dd73ad22d03f45da02b3edfc582eba07 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "feedstate.h"
#include <vespa/searchcore/proton/feedoperation/feedoperation.h>
#include <vespa/vespalib/util/exceptions.h>

using vespalib::IllegalStateException;
using vespalib::make_string;

namespace proton {

void FeedState::throwExceptionInReceive(const vespalib::string &docType,
                                        uint64_t serialRangeFrom,
                                        uint64_t serialRangeTo,
                                        size_t packetSize) {
    throw IllegalStateException
        (make_string("We should not receive any packets from"
                     " the transaction log when in '%s' feed state:"
                     " doctype(%s),"
                     " packetSerialRange(%" PRIu64 ",%" PRIu64 "),"
                     " packetSize(%zu)",
                     getName().c_str(),
                     docType.c_str(),
                     serialRangeFrom, serialRangeTo,
                     packetSize));
}

void
FeedState::throwExceptionInHandleOperation(const vespalib::string &docType, const FeedOperation &op)
{
    throw IllegalStateException
        (make_string("We should not receive any feed operations"
                     " when in '%s' feed state:"
                     " doctype(%s),"
                     " serial(%" PRIu64 ")",
                     getName().c_str(),
                     docType.c_str(),
                     op.getSerialNum()));
}

vespalib::string FeedState::getName() const {
    switch(_type) {
    case NORMAL:
        return "NORMAL";
    case REPLAY_TRANSACTION_LOG:
        return "REPLAY_TRANSACTION_LOG";
    case INIT:
        return "INIT";
    }
    return "Unknown";
}

}  // namespace proton