Fix copyright notices for new C++ code.
[alexxy/gromacs.git] / src / testutils / cmdlinetest.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012, 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/programinfo.h"
51
52 namespace gmx
53 {
54 namespace test
55 {
56
57 /********************************************************************
58  * CommandLine::Impl
59  */
60
61 class CommandLine::Impl
62 {
63     public:
64         Impl(const char *const cmdline[], size_t count);
65         ~Impl();
66
67         std::vector<char *>     args_;
68         std::vector<char *>     argv_;
69         int                     argc_;
70 };
71
72 CommandLine::Impl::Impl(const char *const cmdline[], size_t count)
73 {
74     args_.reserve(count);
75     argv_.reserve(count);
76     argc_ = static_cast<int>(count);
77     for (size_t i = 0; i < count; ++i)
78     {
79         char *arg = strdup(cmdline[i]);
80         if (arg == NULL)
81         {
82             throw std::bad_alloc();
83         }
84         args_.push_back(arg);
85         argv_.push_back(arg);
86     }
87 }
88
89 CommandLine::Impl::~Impl()
90 {
91     for (size_t i = 0; i < args_.size(); ++i)
92     {
93         std::free(args_[i]);
94     }
95 }
96
97 /********************************************************************
98  * CommandLine
99  */
100
101 CommandLine::CommandLine()
102     : impl_(new Impl(NULL, 0))
103 {
104 }
105
106 CommandLine::CommandLine(const char *const cmdline[], size_t count)
107     : impl_(new Impl(cmdline, count))
108 {
109 }
110
111 CommandLine::CommandLine(const CommandLine &other)
112     : impl_(new Impl(other.argv(), other.argc()))
113 {
114 }
115
116 CommandLine::~CommandLine()
117 {
118 }
119
120 void CommandLine::append(const char *arg)
121 {
122     size_t newSize = impl_->args_.size() + 1;
123     impl_->args_.reserve(newSize);
124     impl_->argv_.reserve(newSize);
125     char *newArg = strdup(arg);
126     if (newArg == NULL)
127     {
128         throw std::bad_alloc();
129     }
130     impl_->args_.push_back(newArg);
131     impl_->argv_.push_back(newArg);
132     impl_->argc_ = static_cast<int>(newSize);
133 }
134
135 int &CommandLine::argc()
136 {
137     return impl_->argc_;
138 }
139 char **CommandLine::argv()
140 {
141     return &impl_->argv_[0];
142 }
143 int CommandLine::argc() const
144 {
145     return impl_->argc_;
146 }
147 const char *const *CommandLine::argv() const
148 {
149     return &impl_->argv_[0];
150 }
151 const char *CommandLine::arg(int i) const
152 {
153     return impl_->argv_[i];
154 }
155
156 std::string CommandLine::toString() const
157 {
158     return ProgramInfo(argc(), argv()).commandLine();
159 }
160
161 } // namespace test
162 } // namespace gmx