source: src/Actions/FragmentationAction/FragmentationAutomationAction.cpp@ 35e83a

Last change on this file since 35e83a was 4a33f6, checked in by Frederik Heber <heber@…>, 10 years ago

FragmentationResultContainer when written and inside QtGui is used in locked mode.

  • Property mode set to 100644
File size: 14.5 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
5 * Copyright (C) 2013 Frederik Heber. All rights reserved.
6 *
7 *
8 * This file is part of MoleCuilder.
9 *
10 * MoleCuilder is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * MoleCuilder is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24/*
25 * FragmentationAutomationAction.cpp
26 *
27 * Created on: May 18, 2012
28 * Author: heber
29 */
30
31// include config.h
32#ifdef HAVE_CONFIG_H
33#include <config.h>
34#endif
35
36#include <boost/archive/text_iarchive.hpp>
37// boost asio needs specific operator new
38#include <boost/asio.hpp>
39
40#include "CodePatterns/MemDebug.hpp"
41
42//// include headers that implement a archive in simple text format
43#include <boost/archive/text_oarchive.hpp>
44#include <boost/archive/text_iarchive.hpp>
45
46//
47//#include <boost/mpl/remove.hpp>
48//#include <boost/lambda/lambda.hpp>
49
50//#include <iostream>
51
52#include "CodePatterns/Assert.hpp"
53#include "CodePatterns/Info.hpp"
54#include "CodePatterns/Log.hpp"
55
56#ifdef HAVE_JOBMARKET
57#include "JobMarket/Jobs/FragmentJob.hpp"
58#else
59#include "Jobs/JobMarket/FragmentJob.hpp"
60#endif
61
62#include "Fragmentation/Automation/FragmentJobQueue.hpp"
63#ifdef HAVE_JOBMARKET
64#include "Fragmentation/Automation/MPQCFragmentController.hpp"
65#else
66#include "Fragmentation/Automation/MPQCCommandFragmentController.hpp"
67#endif
68#include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp"
69#include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp"
70#include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp"
71#include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp"
72#include "Fragmentation/Summation/Containers/MPQCData.hpp"
73#include "Fragmentation/KeySetsContainer.hpp"
74#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
75#include "Fragmentation/Automation/VMGDebugGridFragmentController.hpp"
76#include "Fragmentation/Automation/VMGFragmentController.hpp"
77#include "Fragmentation/Summation/Containers/VMGData.hpp"
78#include "Fragmentation/Summation/Containers/VMGDataFused.hpp"
79#include "Fragmentation/Summation/Containers/VMGDataMap.hpp"
80#include "Fragmentation/Summation/Containers/VMGData_printKeyNames.hpp"
81#endif
82#include "World.hpp"
83
84#include <boost/bind.hpp>
85#include <boost/thread.hpp>
86#include <fstream>
87#include <iostream>
88#include <string>
89#include <vector>
90
91#include <boost/mpl/for_each.hpp>
92
93#include "Actions/FragmentationAction/FragmentationAutomationAction.hpp"
94
95using namespace MoleCuilder;
96
97// and construct the stuff
98#include "FragmentationAutomationAction.def"
99#include "Action_impl_pre.hpp"
100/** =========== define the function ====================== */
101
102class controller_AddOn;
103
104// needs to be defined for using the FragmentController
105controller_AddOn *getAddOn()
106{
107 return NULL;
108}
109
110static void updateSteps(Process &p, const size_t step, const size_t total)
111{
112 LOG(1, "There are " << step << " steps out of " << total << " done.");
113 p.setCurrStep(step);
114}
115
116ActionState::ptr FragmentationFragmentationAutomationAction::performCall() {
117 boost::asio::io_service io_service;
118
119 // TODO: Have io_service run in second thread and merge with current again eventually
120
121 const KeySetsContainer& keysets = FragmentJobQueue::getInstance().getKeySets();
122 const KeySetsContainer& forcekeysets = FragmentJobQueue::getInstance().getFullKeySets();
123
124 size_t Exitflag = 0;
125 std::map<JobId_t, MPQCData> shortrangedata;
126#ifdef HAVE_JOBMARKET
127 {
128 const size_t NumberJobs = FragmentJobQueue::getInstance().size();
129 MPQCFragmentController mpqccontroller(io_service);
130 mpqccontroller.setHost(params.host.get());
131 mpqccontroller.setPort(params.port.get());
132 // Phase One: obtain ids
133 mpqccontroller.requestIds(NumberJobs);
134 if (mpqccontroller.getExitflag() != 0)
135 return Action::failure;
136
137 // Phase Two: add MPQCJobs and send
138 const bool AddJobsStatus = mpqccontroller.addJobsFromQueue(
139 params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity,
140 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly
141 );
142 if (AddJobsStatus)
143 LOG(1, "INFO: Added jobs from FragmentJobsQueue.");
144 else {
145 ELOG(1, "Adding jobs failed.");
146 return Action::failure;
147 }
148 mpqccontroller.run();
149
150 // Phase Three: calculate result
151 setMaxSteps(NumberJobs);
152 mpqccontroller.setUpdateHandler(
153 boost::bind(&updateSteps, boost::ref(*this), _1, _2)
154 );
155 start();
156 boost::thread wait_thread(
157 boost::bind(&MPQCFragmentController::waitforResults, boost::ref(mpqccontroller), boost::cref(NumberJobs))
158 );
159 wait_thread.join();
160 stop();
161 if (mpqccontroller.getExitflag() != 0)
162 return Action::failure;
163
164 mpqccontroller.getResults(shortrangedata);
165 if (mpqccontroller.getExitflag() != 0)
166 return Action::failure;
167
168 Exitflag += mpqccontroller.getExitflag();
169 }
170#else
171 {
172 const size_t NumberJobs = FragmentJobQueue::getInstance().size();
173 MPQCCommandFragmentController mpqccontroller;
174 // Phase One: obtain ids: not needed, we have infinite pool
175
176 // Phase Two: add MPQCJobs and send
177 const size_t NoJobs = mpqccontroller.addJobsFromQueue(
178 params.DoLongrange.get() ? MPQCData::DoSampleDensity : MPQCData::DontSampleDensity,
179 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
180 params.executable.get().string()
181 );
182 if (NoJobs != NumberJobs) {
183 ELOG(1, "Not all jobs were added succesfully.");
184 return Action::failure;
185 }
186 LOG(1, "INFO: Added " << NoJobs << " from FragmentJobsQueue.");
187
188 // prepare process
189 setMaxSteps(NumberJobs);
190 mpqccontroller.setUpdateHandler(
191 boost::bind(&updateSteps, boost::ref(*this), _1, _2)
192 );
193 start();
194 mpqccontroller.run();
195 stop();
196 if (mpqccontroller.getExitflag() != 0)
197 return Action::failure;
198
199 // get back the results and place them in shortrangedata
200 mpqccontroller.getResults(shortrangedata);
201 ASSERT( shortrangedata.size() == NumberJobs,
202 "FragmentationFragmentationAutomationAction::performCall() - number of converted results "
203 +toString(shortrangedata.size())+" and number of jobs "+toString(NumberJobs)+ " differ.");
204 if (mpqccontroller.getExitflag() != 0)
205 return Action::failure;
206
207 Exitflag += mpqccontroller.getExitflag();
208 }
209#endif
210
211#if defined(HAVE_JOBMARKET) && defined(HAVE_VMG)
212 if (params.DoLongrange.get()) {
213 if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() == 0) {
214 STATUS("Please load the full molecule into the world before starting this action.");
215 return Action::failure;
216 }
217
218 // obtain combined charge density
219 FragmentationChargeDensity summedChargeDensity(
220 shortrangedata,
221 FragmentJobQueue::getInstance().getKeySets());
222 const std::vector<SamplingGrid> full_sample = summedChargeDensity.getFullSampledGrid();
223 LOG(1, "INFO: There are " << shortrangedata.size() << " short-range and "
224 << full_sample.size() << " level-wise long-range jobs.");
225
226 // check boundary conditions
227 const BoundaryConditions::Conditions_t &conditions =
228 World::getInstance().getDomain().getConditions();
229 const bool OpenBoundaryConditions =
230 !((conditions[0] == BoundaryConditions::Wrap) &&
231 (conditions[1] == BoundaryConditions::Wrap) &&
232 (conditions[2] == BoundaryConditions::Wrap));
233 LOG(1, std::string("INFO: Using ")
234 << (OpenBoundaryConditions ? "open" : "periodic")
235 << " boundary conditions.");
236
237 // Phase Four: obtain more ids
238 std::map<JobId_t, VMGData> longrangedata;
239 {
240 VMGFragmentController vmgcontroller(io_service);
241 vmgcontroller.setHost(params.host.get());
242 vmgcontroller.setPort(params.port.get());
243 const size_t NoJobs = shortrangedata.size()+full_sample.size();
244 vmgcontroller.requestIds(2*NoJobs);
245 if (vmgcontroller.getExitflag() != 0)
246 return Action::failure;
247
248 // Phase Five a: create VMGJobs for electronic charge distribution
249 const size_t near_field_cells = params.near_field_cells.get();
250 const size_t interpolation_degree = params.interpolation_degree.get();
251 if (!vmgcontroller.createLongRangeJobs(
252 shortrangedata,
253 full_sample,
254 near_field_cells,
255 interpolation_degree,
256 VMGFragmentController::DontSampleParticles,
257 VMGFragmentController::DoTreatGrid,
258 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
259 params.DoPrintDebug.get(),
260 OpenBoundaryConditions,
261 params.DoSmearCharges.get())) {
262 STATUS("Could not create long-range jobs for electronic charge distribution.");
263 return Action::failure;
264 }
265
266 // Phase Six a: calculate result
267 vmgcontroller.waitforResults(NoJobs);
268 if (vmgcontroller.getExitflag() != 0)
269 return Action::failure;
270 vmgcontroller.getResults(longrangedata);
271 ASSERT( NoJobs == longrangedata.size(),
272 "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+"
273 +toString(full_sample.size())+"="+toString(NoJobs)
274 +" and first VMGresults "+toString(longrangedata.size())+" don't match.");
275 Exitflag += vmgcontroller.getExitflag();
276
277 {
278 std::map<JobId_t, VMGData> longrangedata_both;
279 // Phase Five b: create VMGJobs for nuclei charge distributions
280 const size_t near_field_cells = params.near_field_cells.get();
281 const size_t interpolation_degree = params.interpolation_degree.get();
282 if (!vmgcontroller.createLongRangeJobs(
283 shortrangedata,
284 full_sample,
285 near_field_cells,
286 interpolation_degree,
287 VMGFragmentController::DoSampleParticles,
288 VMGFragmentController::DoTreatGrid,
289 params.DoValenceOnly.get() ? MPQCData::DoSampleValenceOnly : MPQCData::DontSampleValenceOnly,
290 params.DoPrintDebug.get(),
291 OpenBoundaryConditions,
292 params.DoSmearCharges.get())) {
293 STATUS("Could not create long-range jobs for nuclei charge distribution.");
294 return Action::failure;
295 }
296
297 // Phase Six b: calculate result
298 vmgcontroller.waitforResults(NoJobs);
299 if (vmgcontroller.getExitflag() != 0)
300 return Action::failure;
301 vmgcontroller.getResults(longrangedata_both);
302 ASSERT( NoJobs == longrangedata_both.size(),
303 "FragmentationFragmentationAutomationAction::performCall() - number of MPQCresults+"
304 +toString(full_sample.size())+"="+toString(NoJobs)
305 +" and second VMGresults "+toString(longrangedata_both.size())+" don't match.");
306 if (vmgcontroller.getExitflag() != 0)
307 return Action::failure;
308 Exitflag += vmgcontroller.getExitflag();
309
310 // go through either data and replace nuclei_long with contribution from both
311 ASSERT( longrangedata.size() == longrangedata_both.size(),
312 "FragmentationFragmentationAutomationAction::performCall() - longrange results have different sizes.");
313 std::map<JobId_t, VMGData>::iterator destiter = longrangedata.begin();
314 std::map<JobId_t, VMGData>::const_iterator srciter = longrangedata_both.begin();
315 for (;destiter != longrangedata.end(); ++srciter, ++destiter) {
316 destiter->second.both_sampled_potential = srciter->second.sampled_potential;
317 destiter->second.nuclei_long = srciter->second.nuclei_long;
318 destiter->second.forces = srciter->second.forces;
319 destiter->second.hasForces = srciter->second.hasForces;
320 }
321 }
322 }
323
324 if (params.DoPrintDebug.get()) {
325 std::map<JobId_t, std::string> debugData;
326 {
327 if (!full_sample.empty()) {
328 // create debug jobs for each level to print the summed-up potential to vtk files
329 VMGDebugGridFragmentController debugcontroller(io_service);
330 debugcontroller.setHost(params.host.get());
331 debugcontroller.setPort(params.port.get());
332 debugcontroller.requestIds(full_sample.size());
333 if (!debugcontroller.createDebugJobs(full_sample, OpenBoundaryConditions)) {
334 STATUS("Could not create debug jobs.");
335 return Action::failure;
336 }
337 debugcontroller.waitforResults(full_sample.size());
338 debugcontroller.getResults(debugData);
339 Exitflag += debugcontroller.getExitflag();
340 }
341 }
342 }
343 {
344 AtomicInstance<FragmentationResultContainer> container =
345 FragmentationResultContainer::getLockedInstance();
346 (*container).addFullResults(keysets, forcekeysets, shortrangedata, longrangedata);
347 }
348 } else {
349 AtomicInstance<FragmentationResultContainer> container =
350 FragmentationResultContainer::getLockedInstance();
351 (*container).addShortRangeResults(keysets, forcekeysets, shortrangedata);
352 }
353#else
354 {
355 AtomicInstance<FragmentationResultContainer> container =
356 FragmentationResultContainer::getLockedInstance();
357 (*container).addShortRangeResults(keysets, forcekeysets, shortrangedata);
358 }
359#endif
360
361 // now clear all present jobs as we are done
362 FragmentJobQueue::getInstance().clear();
363
364 // if file is given, advise results container to store to file
365 if (!params.resultsfile.get().empty()) {
366 boost::filesystem::path resultsfile = params.resultsfile.get();
367 std::ofstream returnstream(resultsfile.string().c_str());
368 if (returnstream.good()) {
369 const FragmentationResultContainer& container =
370 FragmentationResultContainer::getConstInstance();
371 boost::archive::text_oarchive oa(returnstream);
372 oa << container;
373 }
374 Exitflag += (int)(!returnstream.good());
375 returnstream.close();
376 }
377
378 if (Exitflag != 0)
379 STATUS("Controller has returned failure.");
380 return (Exitflag == 0) ? Action::success : Action::failure;
381}
382
383ActionState::ptr FragmentationFragmentationAutomationAction::performUndo(ActionState::ptr _state) {
384 return Action::success;
385}
386
387ActionState::ptr FragmentationFragmentationAutomationAction::performRedo(ActionState::ptr _state){
388 return Action::success;
389}
390
391bool FragmentationFragmentationAutomationAction::canUndo() {
392 return false;
393}
394
395bool FragmentationFragmentationAutomationAction::shouldUndo() {
396 return false;
397}
398/** =========== end of function ====================== */
Note: See TracBrowser for help on using the repository browser.