1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include "cmdline.hxx"
23 /** Simple command line abstraction
28 CommandLine::CommandLine(size_t argc
, char* argv
[])
36 /** Returns an argument by name. If there are
37 duplicate argument names in the command line,
39 Argument name and the argument value must be separated
40 by spaces. If the argument value starts with an
41 argument prefix use quotes else the return value is
42 an empty string because the value will be interpreted
43 as the next argument name.
44 If an argument value contains spaces use quotes.
46 @precond GetArgumentNames() -> has element ArgumentName
48 @throws std::invalid_argument exception
49 if the specified argument could not be
52 std::string
CommandLine::get_arg(const std::string
& ArgumentName
) const
54 std::string arg_value
;
56 for (i
= 0; i
< m_argc
; i
++)
58 std::string arg
= m_argv
[i
];
60 if (ArgumentName
== arg
&& ((i
+ 1) < m_argc
) && !is_arg_name(m_argv
[i
+ 1]))
62 arg_value
= m_argv
[i
+ 1];
68 throw std::invalid_argument("Invalid argument name");
75 /** Returns whether a given argument is an argument name
77 bool CommandLine::is_arg_name(const std::string
& Argument
)
79 return (Argument
.length() > 0 && Argument
[0] == '-');
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */