Merge remote-tracking branch 'gerrit/release-4-6'
[alexxy/gromacs.git] / src / gromacs / trajectoryanalysis / modules.cpp
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11  * Copyright (c) 2001-2009, The GROMACS development team,
12  * check out http://www.gromacs.org for more information.
13
14  * This program is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU General Public License
16  * as published by the Free Software Foundation; either version 2
17  * of the License, or (at your option) any later version.
18  *
19  * If you want to redistribute modifications, please consider that
20  * scientific software is very special. Version control is crucial -
21  * bugs must be traceable. We will be happy to consider code for
22  * inclusion in the official distribution, but derived work must not
23  * be called official GROMACS. Details are found in the README & COPYING
24  * files - if they are missing, get the official version at www.gromacs.org.
25  *
26  * To help us fund GROMACS development, we humbly ask that you cite
27  * the papers on the package - you can find them in the top README file.
28  *
29  * For more info, check our website at http://www.gromacs.org
30  */
31 /*! \internal \file
32  * \brief
33  * Implements createTrajectoryAnalysisModule().
34  *
35  * \author Teemu Murtola <teemu.murtola@cbr.su.se>
36  * \ingroup module_trajectoryanalysis
37  */
38 #include "gromacs/trajectoryanalysis/modules.h"
39
40 #include <string2.h>
41
42 #include "gromacs/fatalerror/exceptions.h"
43 #include "gromacs/utility/format.h"
44
45 #include "modules/angle.h"
46 #include "modules/distance.h"
47 #include "modules/select.h"
48
49 namespace
50 {
51
52 using namespace gmx::analysismodules;
53
54 struct module_map_t
55 {
56     const char                            *name;
57     gmx::TrajectoryAnalysisModulePointer (*creator)(void);
58 };
59
60 const module_map_t modules[] =
61 {
62     {gmx::analysismodules::angle,    Angle::create},
63     {gmx::analysismodules::distance, Distance::create},
64     {gmx::analysismodules::select,   Select::create},
65     {NULL,                           NULL},
66 };
67
68 } // namespace
69
70 namespace gmx
71 {
72
73 TrajectoryAnalysisModulePointer
74 createTrajectoryAnalysisModule(const char *name)
75 {
76     size_t len = strlen(name);
77     int match_i = -1;
78
79     for (int i = 0; modules[i].name != NULL; ++i)
80     {
81         if (gmx_strncasecmp(name, modules[i].name, len) == 0)
82         {
83             if (strlen(modules[i].name) == len)
84             {
85                 match_i = i;
86                 break;
87             }
88             else if (match_i == -1)
89             {
90                 match_i = i;
91             }
92             else
93             {
94                 GMX_THROW(InvalidInputError(
95                             gmx::formatString("Requested analysis module '%s' is ambiguous", name)));
96             }
97         }
98     }
99     if (match_i != -1)
100     {
101         return modules[match_i].creator();
102     }
103     GMX_THROW(InvalidInputError(
104                 gmx::formatString("Unknown analysis module: %s", name)));
105 }
106
107 } // namespace gmx