summaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/request_dumper.h
blob: 980f8b798b3167d7c32cfef6fc176d4ce58dc55b (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "analyzer.h"

namespace vbench {

/**
 * Dumps the textual representation of a request to standard
 * output. Intended for debugging purposes.
 **/
class RequestDumper : public Analyzer
{
private:
    Handler<Request> &_next;

public:
    RequestDumper(Handler<Request> &_next);
    void handle(Request::UP request) override;
    void report() override;
};

} // namespace vbench