Merge branch release-4-6 into master
[alexxy/gromacs.git] / src / testutils / cmdlinetest.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  * \brief
37  * Implements gmx::test::CommandLine.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_testutils
41  */
42 #include "cmdlinetest.h"
43
44 #include <cstdlib>
45 #include <cstring>
46
47 #include <new>
48 #include <vector>
49
50 #include "gromacs/utility/gmxassert.h"
51 #include "gromacs/utility/programinfo.h"
52
53 namespace gmx
54 {
55 namespace test
56 {
57
58 /********************************************************************
59  * CommandLine::Impl
60  */
61
62 class CommandLine::Impl
63 {
64     public:
65         Impl(const char *const cmdline[], size_t count);
66         ~Impl();
67
68         std::vector<char *>     args_;
69         std::vector<char *>     argv_;
70         int                     argc_;
71 };
72
73 CommandLine::Impl::Impl(const char *const cmdline[], size_t count)
74 {
75     args_.reserve(count);
76     argv_.reserve(count);
77     argc_ = static_cast<int>(count);
78     for (size_t i = 0; i < count; ++i)
79     {
80         char *arg = strdup(cmdline[i]);
81         if (arg == NULL)
82         {
83             throw std::bad_alloc();
84         }
85         args_.push_back(arg);
86         argv_.push_back(arg);
87     }
88 }
89
90 CommandLine::Impl::~Impl()
91 {
92     for (size_t i = 0; i < args_.size(); ++i)
93     {
94         std::free(args_[i]);
95     }
96 }
97
98 /********************************************************************
99  * CommandLine
100  */
101
102 CommandLine::CommandLine()
103     : impl_(new Impl(NULL, 0))
104 {
105 }
106
107 CommandLine::CommandLine(const char *const cmdline[], size_t count)
108     : impl_(new Impl(cmdline, count))
109 {
110 }
111
112 CommandLine::CommandLine(const CommandLine &other)
113     : impl_(new Impl(other.argv(), other.argc()))
114 {
115 }
116
117 CommandLine::~CommandLine()
118 {
119 }
120
121 void CommandLine::append(const char *arg)
122 {
123     GMX_RELEASE_ASSERT(impl_->argc_ == static_cast<int>(impl_->args_.size()),
124                        "Command-line has been modified externally");
125     size_t newSize = impl_->args_.size() + 1;
126     impl_->args_.reserve(newSize);
127     impl_->argv_.reserve(newSize);
128     char *newArg = strdup(arg);
129     if (newArg == NULL)
130     {
131         throw std::bad_alloc();
132     }
133     impl_->args_.push_back(newArg);
134     impl_->argv_.push_back(newArg);
135     impl_->argc_ = static_cast<int>(newSize);
136 }
137
138 int &CommandLine::argc()
139 {
140     return impl_->argc_;
141 }
142 char **CommandLine::argv()
143 {
144     return &impl_->argv_[0];
145 }
146 int CommandLine::argc() const
147 {
148     return impl_->argc_;
149 }
150 const char *const *CommandLine::argv() const
151 {
152     return &impl_->argv_[0];
153 }
154 const char *CommandLine::arg(int i) const
155 {
156     return impl_->argv_[i];
157 }
158
159 std::string CommandLine::toString() const
160 {
161     return ProgramInfo(argc(), argv()).commandLine();
162 }
163
164 } // namespace test
165 } // namespace gmx