9f81e8b55f677082064e99b580989fb3a309c3a9
[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 + 1);
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     argv_.push_back(NULL);
89 }
90
91 CommandLine::Impl::~Impl()
92 {
93     for (size_t i = 0; i < args_.size(); ++i)
94     {
95         std::free(args_[i]);
96     }
97 }
98
99 /********************************************************************
100  * CommandLine
101  */
102
103 CommandLine::CommandLine()
104     : impl_(new Impl(NULL, 0))
105 {
106 }
107
108 CommandLine::CommandLine(const char *const cmdline[], size_t count)
109     : impl_(new Impl(cmdline, count))
110 {
111 }
112
113 CommandLine::CommandLine(const CommandLine &other)
114     : impl_(new Impl(other.argv(), other.argc()))
115 {
116 }
117
118 CommandLine::~CommandLine()
119 {
120 }
121
122 void CommandLine::append(const char *arg)
123 {
124     GMX_RELEASE_ASSERT(impl_->argc_ == static_cast<int>(impl_->args_.size()),
125                        "Command-line has been modified externally");
126     size_t newSize = impl_->args_.size() + 1;
127     impl_->args_.reserve(newSize);
128     impl_->argv_.reserve(newSize + 1);
129     char *newArg = strdup(arg);
130     if (newArg == NULL)
131     {
132         throw std::bad_alloc();
133     }
134     impl_->args_.push_back(newArg);
135     impl_->argv_.pop_back(); // Remove the trailing NULL.
136     impl_->argv_.push_back(newArg);
137     impl_->argv_.push_back(NULL);
138     impl_->argc_ = static_cast<int>(newSize);
139 }
140
141 int &CommandLine::argc()
142 {
143     return impl_->argc_;
144 }
145 char **CommandLine::argv()
146 {
147     return &impl_->argv_[0];
148 }
149 int CommandLine::argc() const
150 {
151     return impl_->argc_;
152 }
153 const char *const *CommandLine::argv() const
154 {
155     return &impl_->argv_[0];
156 }
157 const char *CommandLine::arg(int i) const
158 {
159     return impl_->argv_[i];
160 }
161
162 std::string CommandLine::toString() const
163 {
164     return ProgramInfo(argc(), argv()).commandLine();
165 }
166
167 } // namespace test
168 } // namespace gmx