aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/gatordmock/CommandLineProcessor.hpp
blob: 1724470dbb366d1a134f9222043567ed5060b701 (plain)
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
//
// Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include <string>

namespace armnn
{

namespace gatordmock
{

/// Use Boost program options to process the command line.
/// -h or --help to print the options.
/// -n or --namespace to specify the UDS namespace that the server will be listening on.
/// -e or --echo print all sent and received packets to stdout.
/// -f or --file The path to the file that contains instructions for the mock gatord.
class CommandLineProcessor
{
public:
    bool ProcessCommandLine(int argc, char* argv[]);
    bool IsEchoEnabled()
    {
        return m_Echo;
    }

    std::string GetUdsNamespace()
    {
        return m_UdsNamespace;
    }
    std::string GetCommandFile()
    {
        return m_File;
    }

private:
    std::string m_UdsNamespace;
    std::string m_File;

    bool m_Echo;
};

}    // namespace gatordmock

}    // namespace armnn