source: src/Parser/FormatParserStorage.cpp@ f94953

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since f94953 was 1bef07, checked in by Frederik Heber <heber@…>, 13 years ago

Added first working version of a Psi3Parser.

  • is so far mostly copy&paste from MpqcParser.
  • important parameters all are in (including valid ranges).
  • also added unit tests.
  • Property mode set to 100644
File size: 8.7 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/** \file FormatParserStorage.cpp
9 *
10 * date: Jun, 22 2010
11 * author: heber
12 *
13 */
14
15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
20#include "CodePatterns/MemDebug.hpp"
21
22#include <iostream>
23#include <fstream>
24
25#include <boost/preprocessor/iteration/local.hpp>
26
27#include "CodePatterns/Assert.hpp"
28#include "CodePatterns/Log.hpp"
29
30#include "molecule.hpp"
31#include "FormatParserStorage.hpp"
32#include "ParserTypes.hpp"
33
34#include "MpqcParser.hpp"
35#include "PcpParser.hpp"
36#include "PdbParser.hpp"
37#include "Psi3Parser.hpp"
38#include "TremoloParser.hpp"
39#include "XyzParser.hpp"
40
41#include "CodePatterns/Singleton_impl.hpp"
42
43
44/** Constructor of class FormatParserStorage.
45 */
46FormatParserStorage::FormatParserStorage()
47{
48 ParserList.resize(ParserTypes_end, NULL);
49 ParserStream.resize(ParserTypes_end, NULL);
50 ParserPresent.resize(ParserTypes_end, false);
51
52#include "ParserTypes.def"
53
54#define insert_print(z,n,seq,map, before, after) \
55 map .insert( std::make_pair( \
56 BOOST_PP_SEQ_ELEM(n, seq) \
57 , before < \
58 BOOST_PP_SEQ_ELEM(n, seq) \
59 > after \
60 ) );
61
62#define insert_invert_print(z,n,seq,map, before, after) \
63 map .insert( std::make_pair( before < \
64 BOOST_PP_SEQ_ELEM(n, seq) \
65 > after, \
66 BOOST_PP_SEQ_ELEM(n, seq) \
67 ) );
68
69 // fill ParserNames
70#if defined ParserTypes_END // do we have parameters at all?
71#define BOOST_PP_LOCAL_MACRO(n) insert_print(~, n, PARSERSEQUENCE, ParserNames, FormatParserTrait, ::name)
72#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
73#include BOOST_PP_LOCAL_ITERATE()
74#endif
75
76 // fill ParserLookupNames
77#if defined ParserTypes_END // do we have parameters at all?
78#define BOOST_PP_LOCAL_MACRO(n) insert_invert_print(~, n, PARSERSEQUENCE, ParserLookupNames, FormatParserTrait, ::name)
79#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
80#include BOOST_PP_LOCAL_ITERATE()
81#endif
82
83 // fill ParserSuffixes
84#if defined ParserTypes_END // do we have parameters at all?
85#define BOOST_PP_LOCAL_MACRO(n) insert_print(~, n, PARSERSEQUENCE, ParserSuffixes, FormatParserTrait, ::suffix)
86#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
87#include BOOST_PP_LOCAL_ITERATE()
88#endif
89
90 // fill ParserLookupSuffixes
91#if defined ParserTypes_END // do we have parameters at all?
92#define BOOST_PP_LOCAL_MACRO(n) insert_invert_print(~, n, PARSERSEQUENCE, ParserLookupSuffixes, FormatParserTrait, ::suffix)
93#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
94#include BOOST_PP_LOCAL_ITERATE()
95#endif
96
97 // fill ParserAddFunction
98#if defined ParserTypes_END // do we have parameters at all?
99#define BOOST_PP_LOCAL_MACRO(n) insert_print(~, n, PARSERSEQUENCE, ParserAddFunction, &FormatParserStorage::addParser, )
100#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
101#include BOOST_PP_LOCAL_ITERATE()
102#endif
103
104#undef insert_print
105#undef insert_invert_print
106#include "ParserTypes.undef"
107
108 //std::cout << "ParserNames:" << std::endl << ParserNames << std::endl;
109 //std::cout << "ParserSuffixes:" << std::endl << ParserSuffixes << std::endl;
110 //std::cout << "ParserLookupNames:" << std::endl << ParserLookupNames << std::endl;
111 //std::cout << "ParserLookupSuffixes:" << std::endl << ParserLookupSuffixes << std::endl;
112 //std::cout << "ParserAddFunction:" << std::endl << ParserAddFunction << std::endl;
113
114}
115
116/** Destructor of class FormatParserStorage.
117 * Free all stored FormatParsers.
118 * Save on Exit.
119 */
120FormatParserStorage::~FormatParserStorage()
121{
122 for (ParserTypes iter = ParserTypes_begin; iter < ParserTypes_end; ++iter)
123 if (ParserPresent[iter]) {
124 if (ParserStream[iter]->is_open())
125 ParserStream[iter]->close();
126 delete ParserStream[iter];
127 delete ParserList[iter];
128 }
129}
130
131/** Sets the filename of all current parsers in storage to prefix.suffix.
132 * \param &prefix prefix to use.
133 */
134void FormatParserStorage::SetOutputPrefixForAll(std::string &_prefix)
135{
136 prefix=_prefix;
137};
138
139
140void FormatParserStorage::SaveAll()
141{
142 std::string filename;
143 for (ParserTypes iter = ParserTypes_begin; iter < ParserTypes_end; ++iter)
144 if (ParserPresent[iter]) {
145 filename = prefix;
146 filename += ".";
147 filename += ParserSuffixes[iter];
148 ParserStream[iter] = new std::ofstream(filename.c_str());
149 ParserList[iter]->setOstream((std::ostream *)ParserStream[iter]);
150 }
151}
152
153
154ParserTypes FormatParserStorage::getTypeFromName(std::string type)
155{
156 if (ParserLookupNames.find(type) == ParserLookupNames.end()) {
157 DoeLog(1) && (eLog() << Verbose(1) << "Unknown type " << type << "." << endl);
158 return ParserTypes_end;
159 } else
160 return ParserLookupNames[type];
161}
162
163ParserTypes FormatParserStorage::getTypeFromSuffix(std::string type)
164{
165 if (ParserLookupSuffixes.find(type) == ParserLookupSuffixes.end()) {
166 DoeLog(1) && (eLog() << Verbose(1) << "Unknown type " << type << "." << endl);
167 return ParserTypes_end;
168 } else
169 return ParserLookupSuffixes[type];
170}
171
172bool FormatParserStorage::add(ParserTypes ptype)
173{
174 if (ptype != ParserTypes_end) {
175 if (ParserAddFunction.find(ptype) != ParserAddFunction.end()) {
176 LOG(0, "STATUS: Adding " << ParserNames[ptype] << " type to output.");
177 (getInstance().*(ParserAddFunction[ptype]))(); // we still need an object to work on ...
178 return true;
179 } else {
180 ELOG(1, "No parser to add for this known type " << ParserNames[ptype] << ", not implemented?");
181 return false;
182 }
183 } else {
184 return false;
185 }
186}
187
188bool FormatParserStorage::add(std::string type)
189{
190 enum ParserTypes Ptype = getTypeFromName(type);
191 return add(Ptype);
192}
193
194
195/** Parses an istream depending on its suffix
196 * \param &input input stream
197 * \param suffix
198 * \return true - parsing ok, false - suffix unknown
199 */
200bool FormatParserStorage::load(std::istream &input, std::string suffix)
201{
202 enum ParserTypes type = getTypeFromSuffix(suffix);
203 if (type != ParserTypes_end)
204 get(type).load(&input);
205 else
206 return false;
207 return true;
208}
209
210/** Stores all selected atoms in an ostream depending on its suffix
211 * \param &output output stream
212 * \param suffix
213 * \return true - storing ok, false - suffix unknown
214 */
215bool FormatParserStorage::saveSelectedAtoms(std::ostream &output, std::string suffix)
216{
217 std::vector<atom *> atoms = World::getInstance().getSelectedAtoms();
218 return save(output, suffix, atoms);
219}
220
221/** Stores all selected atoms in an ostream depending on its suffix
222 * We store in the order of the atomic ids, not in the order they appear in the molecules.
223 * Hence, we first create a vector from all selected molecules' atoms.
224 * \param &output output stream
225 * \param suffix
226 * \return true - storing ok, false - suffix unknown
227 */
228bool FormatParserStorage::saveSelectedMolecules(std::ostream &output, std::string suffix)
229{
230 std::vector<molecule *> molecules = World::getInstance().getSelectedMolecules();
231 std::map<size_t, atom *> IdAtoms;
232 for (std::vector<molecule *>::const_iterator MolIter = molecules.begin();
233 MolIter != molecules.end();
234 ++MolIter) {
235 for(molecule::atomSet::const_iterator AtomIter = (*MolIter)->begin();
236 AtomIter != (*MolIter)->end();
237 ++AtomIter) {
238 IdAtoms.insert( make_pair((*AtomIter)->getId(), (*AtomIter)) );
239 }
240 }
241 std::vector<atom *> atoms;
242 atoms.reserve(IdAtoms.size());
243 for (std::map<size_t, atom *>::const_iterator iter = IdAtoms.begin();
244 iter != IdAtoms.end();
245 ++iter) {
246 atoms.push_back(iter->second);
247 }
248 return save(output, suffix, atoms);
249}
250
251/** Stores world in an ostream depending on its suffix
252 * \param &output output stream
253 * \param suffix
254 * \return true - storing ok, false - suffix unknown
255 */
256bool FormatParserStorage::saveWorld(std::ostream &output, std::string suffix)
257{
258 std::vector<atom *> atoms = World::getInstance().getAllAtoms();
259 return save(output, suffix, atoms);
260}
261
262/** Stores a given vector of \a atoms in an ostream depending on its suffix
263 * \param &output output stream
264 * \param suffix
265 * \return true - storing ok, false - suffix unknown
266 */
267bool FormatParserStorage::save(std::ostream &output, std::string suffix, const std::vector<atom *> &atoms)
268{
269 enum ParserTypes type = getTypeFromSuffix(suffix);
270 if (type != ParserTypes_end)
271 get(type).save(&output, atoms);
272 else
273 return false;
274 return true;
275}
276
277/** Returns reference to the desired output parser as FormatParser, adds if not present.
278 * \param _type type of desired parser
279 * \return reference to the output FormatParser with desired type
280 */
281FormatParserInterface &FormatParserStorage::get(ParserTypes _type)
282{
283 if (!ParserPresent[_type]) {
284 add(_type);
285 }
286 return *ParserList[_type];
287}
288
289CONSTRUCT_SINGLETON(FormatParserStorage)
Note: See TracBrowser for help on using the repository browser.