aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/CommandLineProcessor.hpp
diff options
context:
space:
mode:
authorColm Donelan <Colm.Donelan@arm.com>2019-09-09 11:59:08 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-09-09 16:24:39 +0000
commita85e215dd1b027c5ef88621d1b4d5f6e078605da (patch)
tree2c5b1046788ad231daaecdedad08519ee8ae1a39 /tests/profiling/CommandLineProcessor.hpp
parent8fccd86b95be418d1b0397bfd5f48a319f210180 (diff)
downloadarmnn-a85e215dd1b027c5ef88621d1b4d5f6e078605da.tar.gz
IVGCVSW-3720 Start a UDS server that accepts connections.
* Add a CLI paramter to the Gatord mock client to specify a namespace. * Open a listening socket on that namespace. * Wait for one connection on the socket. Signed-off-by: Colm Donelan <Colm.Donelan@arm.com> Change-Id: Ic85b4defd5ad2010bb255472c030a91a23cec1d9
Diffstat (limited to 'tests/profiling/CommandLineProcessor.hpp')
-rw-r--r--tests/profiling/CommandLineProcessor.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/profiling/CommandLineProcessor.hpp b/tests/profiling/CommandLineProcessor.hpp
index 441d7cddd9..a7e43ada12 100644
--- a/tests/profiling/CommandLineProcessor.hpp
+++ b/tests/profiling/CommandLineProcessor.hpp
@@ -4,6 +4,8 @@
//
#pragma once
+#include <string>
+
namespace armnn
{
@@ -12,12 +14,22 @@ namespace gatordmock
// Parses the command line to extract:
//
+//
+/**
+ * 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.
+ */
class CommandLineProcessor
{
public:
bool ProcessCommandLine(int argc, char *argv[]);
+ std::string GetUdsNamespace() { return m_UdsNamespace; }
+
+private:
+ std::string m_UdsNamespace;
};
} // namespace gatordmock