[7ca772] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2011 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * \file controller.cpp
|
---|
| 10 | *
|
---|
| 11 | * This file strongly follows the Serialization example from the boost::asio
|
---|
| 12 | * library (see client.cpp)
|
---|
| 13 | *
|
---|
| 14 | * Created on: Nov 27, 2011
|
---|
| 15 | * Author: heber
|
---|
| 16 | */
|
---|
| 17 |
|
---|
| 18 |
|
---|
| 19 | // include config.h
|
---|
| 20 | #ifdef HAVE_CONFIG_H
|
---|
| 21 | #include <config.h>
|
---|
| 22 | #endif
|
---|
| 23 |
|
---|
| 24 | // boost asio needs specific operator new
|
---|
| 25 | #include <boost/asio.hpp>
|
---|
| 26 |
|
---|
| 27 | #include "CodePatterns/MemDebug.hpp"
|
---|
| 28 |
|
---|
[986885] | 29 | #include <boost/archive/text_oarchive.hpp>
|
---|
| 30 | #include <boost/archive/text_iarchive.hpp>
|
---|
[af9b9ff] | 31 | #include <boost/program_options.hpp>
|
---|
[ff60cfa] | 32 | #include <fstream>
|
---|
[7ca772] | 33 | #include <iostream>
|
---|
| 34 | #include <map>
|
---|
[ff60cfa] | 35 | #include <sstream>
|
---|
| 36 | #include <streambuf>
|
---|
| 37 | #include <vector>
|
---|
[7ca772] | 38 |
|
---|
| 39 | #include "atexit.hpp"
|
---|
| 40 | #include "CodePatterns/Info.hpp"
|
---|
| 41 | #include "CodePatterns/Log.hpp"
|
---|
[d7bb9b1] | 42 | #include "Fragmentation/EnergyMatrix.hpp"
|
---|
| 43 | #include "Fragmentation/ForceMatrix.hpp"
|
---|
| 44 | #include "Fragmentation/KeySetsContainer.hpp"
|
---|
[d4885d] | 45 | #include "FragmentController.hpp"
|
---|
[5a8512] | 46 | #include "Helpers/defs.hpp"
|
---|
[ff60cfa] | 47 | #include "Jobs/MPQCCommandJob.hpp"
|
---|
[d7bb9b1] | 48 | #include "Jobs/MPQCCommandJob_MPQCData.hpp"
|
---|
[d920b9] | 49 | #include "Jobs/SystemCommandJob.hpp"
|
---|
[7670865] | 50 | #include "Results/FragmentResult.hpp"
|
---|
[7ca772] | 51 |
|
---|
| 52 | enum CommandIndices {
|
---|
| 53 | UnknownCommandIndex = 0,
|
---|
[ff60cfa] | 54 | AddJobsIndex = 1,
|
---|
| 55 | CreateJobsIndex = 2,
|
---|
| 56 | CheckResultsIndex = 3,
|
---|
| 57 | ReceiveResultsIndex = 4,
|
---|
[986885] | 58 | ReceiveMPQCIndex = 5,
|
---|
[b15c4f] | 59 | RemoveAllIndex = 6,
|
---|
| 60 | ShutdownIndex = 7,
|
---|
[7ca772] | 61 | };
|
---|
| 62 |
|
---|
[ff60cfa] | 63 |
|
---|
[4dd16e] | 64 | /** Creates a SystemCommandJob out of give \a command with \a argument.
|
---|
[d1dbfc] | 65 | *
|
---|
[4dd16e] | 66 | * @param jobs created job is added to this vector
|
---|
| 67 | * @param command command to execute for SystemCommandJob
|
---|
| 68 | * @param argument argument for command to execute
|
---|
| 69 | * @param nextid id for this job
|
---|
[d1dbfc] | 70 | */
|
---|
[554809] | 71 | void createjobs(
|
---|
| 72 | std::vector<FragmentJob::ptr> &jobs,
|
---|
| 73 | const std::string &command,
|
---|
| 74 | const std::string &argument,
|
---|
| 75 | const JobId_t nextid)
|
---|
[d1dbfc] | 76 | {
|
---|
[4dd16e] | 77 |
|
---|
[554809] | 78 | FragmentJob::ptr testJob( new SystemCommandJob(command, argument, nextid) );
|
---|
[7ca772] | 79 | jobs.push_back(testJob);
|
---|
[554809] | 80 | LOG(1, "INFO: Added one SystemCommandJob.");
|
---|
[7ca772] | 81 | }
|
---|
| 82 |
|
---|
[d1dbfc] | 83 | /** Creates a MPQCCommandJob with argument \a filename.
|
---|
| 84 | *
|
---|
| 85 | * @param jobs created job is added to this vector
|
---|
[917be8] | 86 | * @param command mpqc command to execute
|
---|
[d1dbfc] | 87 | * @param filename filename being argument to job
|
---|
| 88 | * @param nextid id for this job
|
---|
| 89 | */
|
---|
| 90 | void parsejob(
|
---|
| 91 | std::vector<FragmentJob::ptr> &jobs,
|
---|
[917be8] | 92 | const std::string &command,
|
---|
[d1dbfc] | 93 | const std::string &filename,
|
---|
| 94 | const JobId_t nextid)
|
---|
[ff60cfa] | 95 | {
|
---|
| 96 | std::ifstream file;
|
---|
| 97 | file.open(filename.c_str());
|
---|
| 98 | ASSERT( file.good(), "parsejob() - file "+filename+" does not exist.");
|
---|
| 99 | std::string output((std::istreambuf_iterator<char>(file)),
|
---|
| 100 | std::istreambuf_iterator<char>());
|
---|
[917be8] | 101 | FragmentJob::ptr testJob( new MPQCCommandJob(output, nextid, command) );
|
---|
[ff60cfa] | 102 | jobs.push_back(testJob);
|
---|
| 103 | file.close();
|
---|
| 104 | LOG(1, "INFO: Added MPQCCommandJob from file "+filename+".");
|
---|
| 105 | }
|
---|
| 106 |
|
---|
[d1dbfc] | 107 | /** Print received results.
|
---|
| 108 | *
|
---|
[4dd16e] | 109 | * @param results received results to print
|
---|
[d1dbfc] | 110 | */
|
---|
[4dd16e] | 111 | void printReceivedResults(std::vector<FragmentResult::ptr> &results)
|
---|
[7ca772] | 112 | {
|
---|
[35f587] | 113 | for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
|
---|
[7ca772] | 114 | iter != results.end(); ++iter)
|
---|
[35f587] | 115 | LOG(1, "RESULT: job #"+toString((*iter)->getId())+": "+toString((*iter)->result));
|
---|
[7ca772] | 116 | }
|
---|
| 117 |
|
---|
[d7bb9b1] | 118 | /** Print MPQCData from received results.
|
---|
[986885] | 119 | *
|
---|
[5a8512] | 120 | * @param results received results to extract MPQCData from
|
---|
| 121 | * @param KeySetFilename filename with keysets to associate forces correctly
|
---|
| 122 | * @param NoAtoms total number of atoms
|
---|
[986885] | 123 | */
|
---|
[d7bb9b1] | 124 | bool printReceivedMPQCResults(
|
---|
[5a8512] | 125 | const std::vector<FragmentResult::ptr> &results,
|
---|
| 126 | const std::string &KeySetFilename,
|
---|
| 127 | size_t NoAtoms)
|
---|
[986885] | 128 | {
|
---|
[d7bb9b1] | 129 | EnergyMatrix Energy;
|
---|
| 130 | EnergyMatrix EnergyFragments;
|
---|
| 131 | ForceMatrix Force;
|
---|
| 132 | ForceMatrix ForceFragments;
|
---|
| 133 | KeySetsContainer KeySet;
|
---|
| 134 |
|
---|
[5a8512] | 135 | // align fragments
|
---|
| 136 | std::map< JobId_t, size_t > MatrixNrLookup;
|
---|
| 137 | size_t FragmentCounter = 0;
|
---|
| 138 | {
|
---|
| 139 | // bring ids in order ...
|
---|
| 140 | typedef std::map< JobId_t, FragmentResult::ptr> IdResultMap_t;
|
---|
| 141 | IdResultMap_t IdResultMap;
|
---|
| 142 | for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
|
---|
| 143 | iter != results.end(); ++iter) {
|
---|
| 144 | #ifndef NDEBUG
|
---|
| 145 | std::pair< IdResultMap_t::iterator, bool> inserter =
|
---|
| 146 | #endif
|
---|
| 147 | IdResultMap.insert( make_pair((*iter)->getId(), *iter) );
|
---|
| 148 | ASSERT( inserter.second,
|
---|
| 149 | "printReceivedMPQCResults() - two results have same id "
|
---|
| 150 | +toString((*iter)->getId())+".");
|
---|
| 151 | }
|
---|
| 152 | // ... and fill lookup
|
---|
| 153 | for(IdResultMap_t::const_iterator iter = IdResultMap.begin();
|
---|
| 154 | iter != IdResultMap.end(); ++iter)
|
---|
| 155 | MatrixNrLookup.insert( make_pair(iter->first, FragmentCounter++) );
|
---|
| 156 | }
|
---|
| 157 | LOG(1, "INFO: There are " << FragmentCounter << " fragments.");
|
---|
| 158 |
|
---|
| 159 | // extract results
|
---|
[986885] | 160 | std::vector<MPQCData> fragmentData(results.size());
|
---|
| 161 | MPQCData combinedData;
|
---|
| 162 |
|
---|
| 163 | LOG(2, "DEBUG: Parsing now through " << results.size() << " results.");
|
---|
| 164 | for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
|
---|
| 165 | iter != results.end(); ++iter) {
|
---|
| 166 | LOG(1, "RESULT: job #"+toString((*iter)->getId())+": "+toString((*iter)->result));
|
---|
| 167 | MPQCData extractedData;
|
---|
| 168 | std::stringstream inputstream((*iter)->result);
|
---|
[5a8512] | 169 | LOG(2, "DEBUG: First 50 characters FragmentResult's string: "+(*iter)->result.substr(0, 50));
|
---|
[986885] | 170 | boost::archive::text_iarchive ia(inputstream);
|
---|
| 171 | ia >> extractedData;
|
---|
| 172 | LOG(1, "INFO: extracted data is " << extractedData << ".");
|
---|
[5a8512] | 173 |
|
---|
| 174 | // place results into EnergyMatrix ...
|
---|
| 175 | {
|
---|
| 176 | MatrixContainer::MatrixArray matrix;
|
---|
| 177 | matrix.resize(1);
|
---|
| 178 | matrix[0].resize(1, extractedData.energy);
|
---|
| 179 | if (!Energy.AddMatrix(
|
---|
| 180 | std::string("MPQCJob ")+toString((*iter)->getId()),
|
---|
| 181 | matrix,
|
---|
| 182 | MatrixNrLookup[(*iter)->getId()])) {
|
---|
| 183 | ELOG(1, "Adding energy matrix failed.");
|
---|
| 184 | return false;
|
---|
| 185 | }
|
---|
| 186 | }
|
---|
| 187 | // ... and ForceMatrix (with two empty columns in front)
|
---|
| 188 | {
|
---|
| 189 | MatrixContainer::MatrixArray matrix;
|
---|
| 190 | const size_t rows = extractedData.forces.size();
|
---|
| 191 | matrix.resize(rows);
|
---|
| 192 | for (size_t i=0;i<rows;++i) {
|
---|
| 193 | const size_t columns = 2+extractedData.forces[i].size();
|
---|
| 194 | matrix[i].resize(columns, 0.);
|
---|
| 195 | // for (size_t j=0;j<2;++j)
|
---|
| 196 | // matrix[i][j] = 0.;
|
---|
| 197 | for (size_t j=2;j<columns;++j)
|
---|
| 198 | matrix[i][j] = extractedData.forces[i][j-2];
|
---|
| 199 | }
|
---|
| 200 | if (!Force.AddMatrix(
|
---|
| 201 | std::string("MPQCJob ")+toString((*iter)->getId()),
|
---|
| 202 | matrix,
|
---|
| 203 | MatrixNrLookup[(*iter)->getId()])) {
|
---|
| 204 | ELOG(1, "Adding force matrix failed.");
|
---|
| 205 | return false;
|
---|
| 206 | }
|
---|
| 207 | }
|
---|
[986885] | 208 | }
|
---|
[5a8512] | 209 | // add one more matrix (not required for energy)
|
---|
| 210 | MatrixContainer::MatrixArray matrix;
|
---|
| 211 | matrix.resize(1);
|
---|
| 212 | matrix[0].resize(1, 0.);
|
---|
| 213 | if (!Energy.AddMatrix(std::string("MPQCJob total"), matrix, FragmentCounter))
|
---|
| 214 | return false;
|
---|
| 215 | // but for energy because we need to know total number of atoms
|
---|
| 216 | matrix.resize(NoAtoms);
|
---|
| 217 | for (size_t i = 0; i< NoAtoms; ++i)
|
---|
| 218 | matrix[i].resize(2+NDIM, 0.);
|
---|
| 219 | if (!Force.AddMatrix(std::string("MPQCJob total"), matrix, FragmentCounter))
|
---|
| 220 | return false;
|
---|
[d7bb9b1] | 221 |
|
---|
[5a8512] | 222 |
|
---|
| 223 | // combine all found data
|
---|
[d7bb9b1] | 224 | if (!Energy.InitialiseIndices()) return false;
|
---|
| 225 |
|
---|
| 226 | if (!Force.ParseIndices(KeySetFilename.c_str())) return false;
|
---|
| 227 |
|
---|
| 228 | if (!KeySet.ParseKeySets(KeySetFilename.c_str(), Force.RowCounter, Force.MatrixCounter)) return false;
|
---|
| 229 |
|
---|
| 230 | if (!KeySet.ParseManyBodyTerms()) return false;
|
---|
| 231 |
|
---|
| 232 | if (!EnergyFragments.AllocateMatrix(Energy.Header, Energy.MatrixCounter, Energy.RowCounter, Energy.ColumnCounter)) return false;
|
---|
| 233 | if (!ForceFragments.AllocateMatrix(Force.Header, Force.MatrixCounter, Force.RowCounter, Force.ColumnCounter)) return false;
|
---|
| 234 |
|
---|
| 235 | if(!Energy.SetLastMatrix(0., 0)) return false;
|
---|
| 236 | if(!Force.SetLastMatrix(0., 2)) return false;
|
---|
| 237 |
|
---|
| 238 | for (int BondOrder=0;BondOrder<KeySet.Order;BondOrder++) {
|
---|
| 239 | // --------- sum up energy --------------------
|
---|
| 240 | LOG(1, "INFO: Summing energy of order " << BondOrder+1 << " ...");
|
---|
| 241 | if (!EnergyFragments.SumSubManyBodyTerms(Energy, KeySet, BondOrder)) return false;
|
---|
| 242 | if (!Energy.SumSubEnergy(EnergyFragments, NULL, KeySet, BondOrder, 1.)) return false;
|
---|
| 243 |
|
---|
| 244 | // --------- sum up Forces --------------------
|
---|
| 245 | LOG(1, "INFO: Summing forces of order " << BondOrder+1 << " ...");
|
---|
| 246 | if (!ForceFragments.SumSubManyBodyTerms(Force, KeySet, BondOrder)) return false;
|
---|
| 247 | if (!Force.SumSubForces(ForceFragments, KeySet, BondOrder, 1.)) return false;
|
---|
| 248 | }
|
---|
| 249 |
|
---|
[5a8512] | 250 | // for debugging print resulting energy and forces
|
---|
| 251 | LOG(1, "INFO: Resulting energy is " << Energy.Matrix[ FragmentCounter ][0][0]);
|
---|
| 252 | std::stringstream output;
|
---|
| 253 | for (int i=0; i< Force.RowCounter[FragmentCounter]; ++i) {
|
---|
| 254 | for (int j=0; j< Force.ColumnCounter[FragmentCounter]; ++j)
|
---|
| 255 | output << Force.Matrix[ FragmentCounter ][i][j] << " ";
|
---|
| 256 | output << "\n";
|
---|
| 257 | }
|
---|
| 258 | LOG(1, "INFO: Resulting forces are " << std::endl << output.str());
|
---|
| 259 |
|
---|
[d7bb9b1] | 260 | return true;
|
---|
[986885] | 261 | }
|
---|
| 262 |
|
---|
[5a8512] | 263 | /** Helper function to get number of atoms somehow.
|
---|
| 264 | *
|
---|
| 265 | * Here, we just parse the number of lines in the adjacency file as
|
---|
| 266 | * it should correspond to the number of atoms, except when some atoms
|
---|
| 267 | * are not bonded, but then fragmentation makes no sense.
|
---|
| 268 | *
|
---|
| 269 | * @param path path to the adjacency file
|
---|
| 270 | */
|
---|
| 271 | size_t getNoAtomsFromAdjacencyFile(const std::string &path)
|
---|
| 272 | {
|
---|
| 273 | size_t NoAtoms = 0;
|
---|
| 274 |
|
---|
| 275 | // parse in special file to get atom count (from line count)
|
---|
| 276 | std::string filename(path);
|
---|
| 277 | filename += FRAGMENTPREFIX;
|
---|
| 278 | filename += ADJACENCYFILE;
|
---|
| 279 | std::ifstream adjacency(filename.c_str());
|
---|
| 280 | if (adjacency.fail()) {
|
---|
| 281 | LOG(0, endl << "getNoAtomsFromAdjacencyFile() - Unable to open " << filename << ", is the directory correct?");
|
---|
| 282 | return false;
|
---|
| 283 | }
|
---|
| 284 | std::string buffer;
|
---|
| 285 | while (getline(adjacency, buffer))
|
---|
| 286 | NoAtoms++;
|
---|
| 287 | LOG(1, "INFO: There are " << NoAtoms << " atoms.");
|
---|
| 288 |
|
---|
| 289 | return NoAtoms;
|
---|
| 290 | }
|
---|
| 291 |
|
---|
[d7bb9b1] | 292 |
|
---|
[7ca772] | 293 | /** Returns a unique index for every command to allow switching over it.
|
---|
| 294 | *
|
---|
| 295 | * \param &commandmap map with command strings
|
---|
| 296 | * \param &cmd command string
|
---|
| 297 | * \return index from CommandIndices: UnkownCommandIndex - unknown command, else - command index
|
---|
| 298 | */
|
---|
| 299 | CommandIndices getCommandIndex(std::map<std::string, CommandIndices> &commandmap, const std::string &cmd)
|
---|
| 300 | {
|
---|
| 301 | std::map<std::string, CommandIndices>::const_iterator iter = commandmap.find(cmd);
|
---|
| 302 | if (iter != commandmap.end())
|
---|
| 303 | return iter->second;
|
---|
| 304 | else
|
---|
| 305 | return UnknownCommandIndex;
|
---|
| 306 | }
|
---|
| 307 |
|
---|
| 308 |
|
---|
| 309 | int main(int argc, char* argv[])
|
---|
| 310 | {
|
---|
| 311 | // from this moment on, we need to be sure to deeinitialize in the correct order
|
---|
| 312 | // this is handled by the cleanup function
|
---|
| 313 | atexit(cleanUp);
|
---|
| 314 |
|
---|
| 315 | setVerbosity(3);
|
---|
| 316 |
|
---|
| 317 | size_t Exitflag = 0;
|
---|
[ff60cfa] | 318 | typedef std::map<std::string, CommandIndices> CommandsMap_t;
|
---|
| 319 | CommandsMap_t CommandsMap;
|
---|
| 320 | CommandsMap.insert( std::make_pair("addjobs", AddJobsIndex) );
|
---|
| 321 | CommandsMap.insert( std::make_pair("createjobs", CreateJobsIndex) );
|
---|
[7ca772] | 322 | CommandsMap.insert( std::make_pair("checkresults", CheckResultsIndex) );
|
---|
| 323 | CommandsMap.insert( std::make_pair("receiveresults", ReceiveResultsIndex) );
|
---|
[986885] | 324 | CommandsMap.insert( std::make_pair("receivempqc", ReceiveMPQCIndex) );
|
---|
[b15c4f] | 325 | CommandsMap.insert( std::make_pair("removeall", RemoveAllIndex) );
|
---|
[7ca772] | 326 | CommandsMap.insert( std::make_pair("shutdown", ShutdownIndex) );
|
---|
[af9b9ff] | 327 | std::vector<std::string> Commands;
|
---|
| 328 | for (CommandsMap_t::const_iterator iter = CommandsMap.begin(); iter != CommandsMap.end(); ++iter)
|
---|
| 329 | Commands.push_back(iter->first);
|
---|
| 330 |
|
---|
| 331 | // Declare the supported options.
|
---|
| 332 | boost::program_options::options_description desc("Allowed options");
|
---|
| 333 | desc.add_options()
|
---|
| 334 | ("help,h", "produce help message")
|
---|
| 335 | ("verbosity,v", boost::program_options::value<size_t>(), "set verbosity level")
|
---|
| 336 | ("server", boost::program_options::value< std::string >(), "connect to server at this address (host:port)")
|
---|
| 337 | ("command", boost::program_options::value< std::string >(), (std::string("command to send to server: ")+toString(Commands)).c_str())
|
---|
| 338 | ("executable", boost::program_options::value< std::string >(), "executable for commands 'addjobs' and 'createjobs'")
|
---|
| 339 | ("fragment-path", boost::program_options::value< std::string >(), "path to fragment files for 'receivempqcresults'")
|
---|
| 340 | ("jobcommand", boost::program_options::value< std::string >(), "command argument for executable for 'createjobs'")
|
---|
| 341 | ("jobfiles", boost::program_options::value< std::vector< std::string > >()->multitoken(), "list of files as single argument to executable for 'addjobs'")
|
---|
| 342 | ;
|
---|
| 343 |
|
---|
| 344 | boost::program_options::variables_map vm;
|
---|
| 345 | boost::program_options::store(boost::program_options::parse_command_line(argc, argv, desc), vm);
|
---|
| 346 | boost::program_options::notify(vm);
|
---|
| 347 |
|
---|
| 348 | if (vm.count("help")) {
|
---|
| 349 | std::cout << desc << "\n";
|
---|
| 350 | return 1;
|
---|
| 351 | }
|
---|
| 352 |
|
---|
| 353 | if (vm.count("verbosity")) {
|
---|
| 354 | LOG(0, "STATUS: Verbosity level was set to " << vm["verbosity"].as<size_t>() << ".");
|
---|
| 355 | setVerbosity(vm["verbosity"].as<size_t>());
|
---|
| 356 | } else {
|
---|
| 357 | LOG(0, "STATUS: Verbosity level was not set, defaulting to 5.");
|
---|
| 358 | setVerbosity(5);
|
---|
| 359 | }
|
---|
| 360 |
|
---|
| 361 | std::string server;
|
---|
| 362 | std::string serverport;
|
---|
| 363 | if (vm.count("server")) {
|
---|
| 364 | server = vm["server"].as< std::string >();
|
---|
| 365 | serverport = server.substr(server.find_last_of(':')+1, std::string::npos);
|
---|
| 366 | server = server.substr(0, server.find_last_of(':'));
|
---|
| 367 | try {
|
---|
| 368 | boost::lexical_cast<size_t>(serverport);
|
---|
| 369 | } catch (boost::bad_lexical_cast) {
|
---|
| 370 | ELOG(1, "Could not interpret " << serverport << " as server:port.");
|
---|
| 371 | return 255;
|
---|
| 372 | }
|
---|
| 373 | LOG(1, "INFO: Using " << server << ":" << serverport << " as server's address.");
|
---|
| 374 | } else {
|
---|
| 375 | ELOG(1, "Requiring server's address (host:port) to connect to.");
|
---|
| 376 | return 255;
|
---|
| 377 | }
|
---|
| 378 |
|
---|
| 379 | if (!vm.count("command")) {
|
---|
| 380 | ELOG(1, "Controller requires one of the following commands: "+toString(Commands));
|
---|
| 381 | return 255;
|
---|
| 382 | }
|
---|
| 383 | const std::string command = vm["command"].as< std::string >();
|
---|
| 384 | const CommandIndices commandIndex = getCommandIndex(CommandsMap, command);
|
---|
| 385 |
|
---|
| 386 | // check arguments
|
---|
| 387 | switch(commandIndex) {
|
---|
| 388 | case AddJobsIndex:
|
---|
| 389 | if (!vm.count("executable") && !vm.count("jobfiles")) {
|
---|
| 390 | ELOG(1, "'"+command+"' requires at least two options: [executable] [list of input files ...].");
|
---|
| 391 | return 255;
|
---|
| 392 | }
|
---|
| 393 | break;
|
---|
| 394 | case CreateJobsIndex:
|
---|
| 395 | if (!vm.count("executable") && !vm.count("jobcommand")) {
|
---|
| 396 | ELOG(1, "'"+command+"' requires two options: [executable] [jobcommand].");
|
---|
| 397 | return 255;
|
---|
| 398 | }
|
---|
| 399 | break;
|
---|
| 400 | case CheckResultsIndex:
|
---|
| 401 | break;
|
---|
| 402 | case ReceiveResultsIndex:
|
---|
| 403 | break;
|
---|
| 404 | case ReceiveMPQCIndex:
|
---|
| 405 | if (!vm.count("fragment-path")) {
|
---|
| 406 | ELOG(1, "'"+command+"' require one option: [path to fragment files].");
|
---|
| 407 | return 255;
|
---|
| 408 | }
|
---|
| 409 | break;
|
---|
| 410 | case RemoveAllIndex:
|
---|
| 411 | break;
|
---|
| 412 | case ShutdownIndex:
|
---|
| 413 | break;
|
---|
| 414 | case UnknownCommandIndex:
|
---|
| 415 | default:
|
---|
| 416 | ELOG(1, "Unrecognized command '"+toString(command)+"'.");
|
---|
| 417 | return 255;
|
---|
| 418 | break;
|
---|
| 419 | }
|
---|
| 420 |
|
---|
[7ca772] | 421 | try
|
---|
| 422 | {
|
---|
| 423 |
|
---|
| 424 | boost::asio::io_service io_service;
|
---|
| 425 | FragmentController controller(io_service);
|
---|
| 426 |
|
---|
[d1dbfc] | 427 | // Initial phase: information gathering from server
|
---|
| 428 |
|
---|
[af9b9ff] | 429 | switch(commandIndex) {
|
---|
[d1dbfc] | 430 | case AddJobsIndex:
|
---|
[af9b9ff] | 431 | controller.requestIds(server, serverport, vm["jobfiles"].as< std::vector<std::string> >().size());
|
---|
[d1dbfc] | 432 | break;
|
---|
| 433 | case CreateJobsIndex:
|
---|
[af9b9ff] | 434 | controller.requestIds(server, serverport, 1);
|
---|
[d1dbfc] | 435 | break;
|
---|
| 436 | case CheckResultsIndex:
|
---|
| 437 | break;
|
---|
| 438 | case ReceiveResultsIndex:
|
---|
| 439 | break;
|
---|
[986885] | 440 | case ReceiveMPQCIndex:
|
---|
| 441 | break;
|
---|
[b15c4f] | 442 | case RemoveAllIndex:
|
---|
| 443 | break;
|
---|
[d1dbfc] | 444 | case ShutdownIndex:
|
---|
| 445 | break;
|
---|
| 446 | case UnknownCommandIndex:
|
---|
| 447 | default:
|
---|
[af9b9ff] | 448 | ELOG(0, "Unrecognized command '"+toString(command)+"'.");
|
---|
[dc759c] | 449 | return 255;
|
---|
[d1dbfc] | 450 | break;
|
---|
| 451 | }
|
---|
| 452 |
|
---|
| 453 | {
|
---|
| 454 | io_service.reset();
|
---|
| 455 | Info info("io_service: Phase One");
|
---|
| 456 | io_service.run();
|
---|
| 457 | }
|
---|
| 458 |
|
---|
| 459 | // Second phase: Building jobs and sending information to server
|
---|
| 460 |
|
---|
[af9b9ff] | 461 | switch(commandIndex) {
|
---|
[ff60cfa] | 462 | case AddJobsIndex:
|
---|
| 463 | {
|
---|
| 464 | std::vector<FragmentJob::ptr> jobs;
|
---|
[af9b9ff] | 465 | const std::string executable(vm["executable"].as< std::string >());
|
---|
| 466 | const std::vector< std::string > jobfiles = vm["jobfiles"].as< std::vector< std::string > >();
|
---|
| 467 | for (std::vector< std::string >::const_iterator iter = jobfiles.begin();
|
---|
| 468 | iter != jobfiles.end(); ++iter) {
|
---|
[dc759c] | 469 | const JobId_t next_id = controller.getAvailableId();
|
---|
[af9b9ff] | 470 | const std::string &filename = *iter;
|
---|
[dc759c] | 471 | LOG(1, "INFO: Creating MPQCCommandJob with filename'"
|
---|
| 472 | +filename+"', and id "+toString(next_id)+".");
|
---|
[af9b9ff] | 473 | parsejob(jobs, executable, filename, next_id);
|
---|
[ff60cfa] | 474 | }
|
---|
[dc759c] | 475 | controller.addJobs(jobs);
|
---|
[af9b9ff] | 476 | controller.sendJobs(server, serverport);
|
---|
[ff60cfa] | 477 | break;
|
---|
| 478 | }
|
---|
| 479 | case CreateJobsIndex:
|
---|
[7ca772] | 480 | {
|
---|
[dc759c] | 481 | const JobId_t next_id = controller.getAvailableId();
|
---|
[78ad7d] | 482 | std::vector<FragmentJob::ptr> jobs;
|
---|
[af9b9ff] | 483 | const std::string executable = vm["executable"].as< std::string >();
|
---|
| 484 | const std::string jobcommand = vm["jobcommand"].as< std::string >();
|
---|
| 485 | createjobs(jobs, executable, jobcommand, next_id);
|
---|
[dc759c] | 486 | controller.addJobs(jobs);
|
---|
[af9b9ff] | 487 | controller.sendJobs(server, serverport);
|
---|
[7ca772] | 488 | break;
|
---|
| 489 | }
|
---|
| 490 | case CheckResultsIndex:
|
---|
[af9b9ff] | 491 | controller.checkResults(server, serverport);
|
---|
[7ca772] | 492 | break;
|
---|
| 493 | case ReceiveResultsIndex:
|
---|
[986885] | 494 | case ReceiveMPQCIndex:
|
---|
[af9b9ff] | 495 | controller.receiveResults(server, serverport);
|
---|
[986885] | 496 | break;
|
---|
[b15c4f] | 497 | case RemoveAllIndex:
|
---|
[af9b9ff] | 498 | controller.removeall(server, serverport);
|
---|
[b15c4f] | 499 | break;
|
---|
[7ca772] | 500 | case ShutdownIndex:
|
---|
[af9b9ff] | 501 | controller.shutdown(server, serverport);
|
---|
[7ca772] | 502 | break;
|
---|
| 503 | case UnknownCommandIndex:
|
---|
| 504 | default:
|
---|
[af9b9ff] | 505 | ELOG(0, "Unrecognized command '"+toString(command)+"'.");
|
---|
[dc759c] | 506 | return 255;
|
---|
[7ca772] | 507 | break;
|
---|
| 508 | }
|
---|
| 509 |
|
---|
| 510 | {
|
---|
[d1dbfc] | 511 | io_service.reset();
|
---|
| 512 | Info info("io_service: Phase Two");
|
---|
[7ca772] | 513 | io_service.run();
|
---|
| 514 | }
|
---|
| 515 |
|
---|
[d1dbfc] | 516 | // Final phase: Print result of command
|
---|
| 517 |
|
---|
[af9b9ff] | 518 | switch(commandIndex) {
|
---|
[ff60cfa] | 519 | case AddJobsIndex:
|
---|
| 520 | case CreateJobsIndex:
|
---|
[7ca772] | 521 | break;
|
---|
| 522 | case CheckResultsIndex:
|
---|
[4dd16e] | 523 | controller.printDoneJobs();
|
---|
[7ca772] | 524 | break;
|
---|
| 525 | case ReceiveResultsIndex:
|
---|
| 526 | {
|
---|
[4dd16e] | 527 | std::vector<FragmentResult::ptr> results = controller.getReceivedResults();
|
---|
| 528 | printReceivedResults(results);
|
---|
[7ca772] | 529 | break;
|
---|
| 530 | }
|
---|
[986885] | 531 | case ReceiveMPQCIndex:
|
---|
| 532 | {
|
---|
[af9b9ff] | 533 | const std::string path = vm["fragment-path"].as< std::string >();
|
---|
[dc759c] | 534 | LOG(1, "INFO: Parsing fragment files from " << path << ".");
|
---|
| 535 | std::vector<FragmentResult::ptr> results = controller.getReceivedResults();
|
---|
| 536 | printReceivedMPQCResults(
|
---|
| 537 | results,
|
---|
| 538 | path,
|
---|
| 539 | getNoAtomsFromAdjacencyFile(path));
|
---|
[986885] | 540 | break;
|
---|
| 541 | }
|
---|
[b15c4f] | 542 | case RemoveAllIndex:
|
---|
| 543 | break;
|
---|
[7ca772] | 544 | case ShutdownIndex:
|
---|
| 545 | break;
|
---|
| 546 | case UnknownCommandIndex:
|
---|
| 547 | default:
|
---|
[af9b9ff] | 548 | ELOG(0, "Unrecognized command '"+toString(command)+"'.");
|
---|
[dc759c] | 549 | return 255;
|
---|
[7ca772] | 550 | break;
|
---|
| 551 | }
|
---|
| 552 | Exitflag = controller.getExitflag();
|
---|
| 553 | }
|
---|
| 554 | catch (std::exception& e)
|
---|
| 555 | {
|
---|
| 556 | std::cerr << e.what() << std::endl;
|
---|
| 557 | }
|
---|
| 558 |
|
---|
| 559 | return Exitflag;
|
---|
| 560 | }
|
---|
[4dd16e] | 561 |
|
---|