aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storageapi/messageapi/storagecommand.cpp
blob: 318bcd49ebe2ac78fa7172e1106241adc2e15c21 (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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "storagecommand.h"
#include <vespa/vespalib/util/exceptions.h>
#include <ostream>

namespace storage::api {

namespace {
    constexpr vespalib::duration MAX_TIMEOUT = 3600s;
}

StorageCommand::StorageCommand(const StorageCommand& other)
    : StorageMessage(other, generateMsgId(), 0),
      _timeout(other._timeout),
      _sourceIndex(other._sourceIndex)
{
}

StorageCommand::StorageCommand(const MessageType& type, Priority p) noexcept
    : StorageMessage(type, generateMsgId(), 0),
      _timeout(MAX_TIMEOUT),
      _sourceIndex(0xFFFF)
{
    setPriority(p);
}

StorageCommand::~StorageCommand() = default;

void
StorageCommand::print(std::ostream& out, bool, const std::string&) const
{
    out << "StorageCommand(" << getType().getName();
    if (getPriority() != NORMAL) out << ", priority = " << static_cast<int>(getPriority());
    if (_sourceIndex != 0xFFFF) out << ", source = " << _sourceIndex;
    out << ", timeout = " << vespalib::count_ms(_timeout) << " ms";
    out << ")";
}

}