[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 |
|
---|
[ff60cfa] | 29 | #include <fstream>
|
---|
[7ca772] | 30 | #include <iostream>
|
---|
| 31 | #include <map>
|
---|
[ff60cfa] | 32 | #include <sstream>
|
---|
| 33 | #include <streambuf>
|
---|
| 34 | #include <vector>
|
---|
[7ca772] | 35 |
|
---|
| 36 | #include "atexit.hpp"
|
---|
| 37 | #include "CodePatterns/Info.hpp"
|
---|
| 38 | #include "CodePatterns/Log.hpp"
|
---|
| 39 | #include "Controller/FragmentController.hpp"
|
---|
| 40 | #include "Controller/Commands/CheckResultsOperation.hpp"
|
---|
| 41 | #include "Controller/Commands/ReceiveJobsOperation.hpp"
|
---|
| 42 | #include "Controller/Commands/SendResultsOperation.hpp"
|
---|
| 43 | #include "Controller/Commands/ShutdownOperation.hpp"
|
---|
[ff60cfa] | 44 | #include "GlobalJobId.hpp"
|
---|
| 45 | #include "Jobs/MPQCCommandJob.hpp"
|
---|
[d920b9] | 46 | #include "Jobs/SystemCommandJob.hpp"
|
---|
[7670865] | 47 | #include "Results/FragmentResult.hpp"
|
---|
[7ca772] | 48 |
|
---|
| 49 | enum CommandIndices {
|
---|
| 50 | UnknownCommandIndex = 0,
|
---|
[ff60cfa] | 51 | AddJobsIndex = 1,
|
---|
| 52 | CreateJobsIndex = 2,
|
---|
| 53 | CheckResultsIndex = 3,
|
---|
| 54 | ReceiveResultsIndex = 4,
|
---|
| 55 | ShutdownIndex = 5
|
---|
[7ca772] | 56 | };
|
---|
| 57 |
|
---|
[ff60cfa] | 58 | // TODO: replace this instance by a IdPool owned by controller.
|
---|
| 59 | GlobalJobId globalId;
|
---|
| 60 |
|
---|
[78ad7d] | 61 | void createjobs(std::vector<FragmentJob::ptr> &jobs)
|
---|
[7ca772] | 62 | {
|
---|
[ff60cfa] | 63 | FragmentJob::ptr testJob( new SystemCommandJob( std::string("cat"), std::string("Nothing"), globalId.getNextId()) );
|
---|
| 64 | FragmentJob::ptr othertestJob( new SystemCommandJob( std::string("cat"), std::string("Nothing"), globalId.getNextId()) );
|
---|
[7ca772] | 65 | jobs.push_back(testJob);
|
---|
| 66 | jobs.push_back(othertestJob);
|
---|
| 67 | }
|
---|
| 68 |
|
---|
[ff60cfa] | 69 | void parsejob(std::vector<FragmentJob::ptr> &jobs, const std::string &filename)
|
---|
| 70 | {
|
---|
| 71 | std::ifstream file;
|
---|
| 72 | file.open(filename.c_str());
|
---|
| 73 | ASSERT( file.good(), "parsejob() - file "+filename+" does not exist.");
|
---|
| 74 | std::string output((std::istreambuf_iterator<char>(file)),
|
---|
| 75 | std::istreambuf_iterator<char>());
|
---|
| 76 | FragmentJob::ptr testJob( new MPQCCommandJob(output, globalId.getNextId()) );
|
---|
| 77 | jobs.push_back(testJob);
|
---|
| 78 | file.close();
|
---|
| 79 | LOG(1, "INFO: Added MPQCCommandJob from file "+filename+".");
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[78ad7d] | 82 | void addjobs(FragmentController &controller, std::vector<FragmentJob::ptr> &jobs)
|
---|
[7ca772] | 83 | {
|
---|
| 84 | ReceiveJobsOperation *recjobs = static_cast<ReceiveJobsOperation *>(
|
---|
| 85 | controller.Commands.getByName("receivejobs"));
|
---|
| 86 | recjobs->addJobs(jobs);
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | void sendjobs(FragmentController &controller, const std::string &host, const std::string &service)
|
---|
| 90 | {
|
---|
| 91 | ReceiveJobsOperation *recjobs = static_cast<ReceiveJobsOperation *>(
|
---|
| 92 | controller.Commands.getByName("receivejobs"));
|
---|
| 93 | (*recjobs)(host, service);
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | void checkresults(FragmentController &controller, const std::string &host, const std::string &service)
|
---|
| 97 | {
|
---|
| 98 | CheckResultsOperation *checkres = static_cast<CheckResultsOperation *>(
|
---|
| 99 | controller.Commands.getByName("checkresults"));
|
---|
| 100 | (*checkres)(host, service);
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | void printdonejobs(FragmentController &controller)
|
---|
| 104 | {
|
---|
| 105 | CheckResultsOperation *checkres = static_cast<CheckResultsOperation *>(
|
---|
| 106 | controller.Commands.getByName("checkresults"));
|
---|
| 107 | const size_t doneJobs = checkres->getDoneJobs();
|
---|
| 108 | LOG(1, "INFO: " << doneJobs << " jobs are calculated so far.");
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | void receiveresults(FragmentController &controller, const std::string &host, const std::string &service)
|
---|
| 112 | {
|
---|
| 113 | SendResultsOperation *sendres = static_cast<SendResultsOperation *>(
|
---|
| 114 | controller.Commands.getByName("sendresults"));
|
---|
| 115 | (*sendres)(host, service);
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | void printreceivedresults(FragmentController &controller)
|
---|
| 119 | {
|
---|
| 120 | SendResultsOperation *sendres = static_cast<SendResultsOperation *>(
|
---|
| 121 | controller.Commands.getByName("sendresults"));
|
---|
[35f587] | 122 | std::vector<FragmentResult::ptr> results = sendres->getResults();
|
---|
| 123 | for (std::vector<FragmentResult::ptr>::const_iterator iter = results.begin();
|
---|
[7ca772] | 124 | iter != results.end(); ++iter)
|
---|
[35f587] | 125 | LOG(1, "RESULT: job #"+toString((*iter)->getId())+": "+toString((*iter)->result));
|
---|
[7ca772] | 126 | }
|
---|
| 127 |
|
---|
| 128 | void shutdown(FragmentController &controller, const std::string &host, const std::string &service)
|
---|
| 129 | {
|
---|
| 130 | ShutdownOperation *shutdown = static_cast<ShutdownOperation *>(
|
---|
| 131 | controller.Commands.getByName("shutdown"));
|
---|
| 132 | (*shutdown)(host, service);
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | /** Returns a unique index for every command to allow switching over it.
|
---|
| 136 | *
|
---|
| 137 | * \param &commandmap map with command strings
|
---|
| 138 | * \param &cmd command string
|
---|
| 139 | * \return index from CommandIndices: UnkownCommandIndex - unknown command, else - command index
|
---|
| 140 | */
|
---|
| 141 | CommandIndices getCommandIndex(std::map<std::string, CommandIndices> &commandmap, const std::string &cmd)
|
---|
| 142 | {
|
---|
| 143 | std::map<std::string, CommandIndices>::const_iterator iter = commandmap.find(cmd);
|
---|
| 144 | if (iter != commandmap.end())
|
---|
| 145 | return iter->second;
|
---|
| 146 | else
|
---|
| 147 | return UnknownCommandIndex;
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 |
|
---|
| 151 | int main(int argc, char* argv[])
|
---|
| 152 | {
|
---|
| 153 | // from this moment on, we need to be sure to deeinitialize in the correct order
|
---|
| 154 | // this is handled by the cleanup function
|
---|
| 155 | atexit(cleanUp);
|
---|
| 156 |
|
---|
| 157 | setVerbosity(3);
|
---|
| 158 |
|
---|
| 159 | size_t Exitflag = 0;
|
---|
[ff60cfa] | 160 | typedef std::map<std::string, CommandIndices> CommandsMap_t;
|
---|
| 161 | CommandsMap_t CommandsMap;
|
---|
| 162 | CommandsMap.insert( std::make_pair("addjobs", AddJobsIndex) );
|
---|
| 163 | CommandsMap.insert( std::make_pair("createjobs", CreateJobsIndex) );
|
---|
[7ca772] | 164 | CommandsMap.insert( std::make_pair("checkresults", CheckResultsIndex) );
|
---|
| 165 | CommandsMap.insert( std::make_pair("receiveresults", ReceiveResultsIndex) );
|
---|
| 166 | CommandsMap.insert( std::make_pair("shutdown", ShutdownIndex) );
|
---|
| 167 | try
|
---|
| 168 | {
|
---|
| 169 | // Check command line arguments.
|
---|
[ff60cfa] | 170 | if (argc < 4)
|
---|
[7ca772] | 171 | {
|
---|
[ff60cfa] | 172 | std::cerr << "Usage: " << argv[0] << " <host> <port> <command> [options to command]" << std::endl;
|
---|
| 173 | std::cerr << "List of available commands:" << std::endl;
|
---|
| 174 | for(CommandsMap_t::const_iterator iter = CommandsMap.begin();
|
---|
| 175 | iter != CommandsMap.end(); ++iter) {
|
---|
| 176 | std::cerr << "\t" << iter->first << std::endl;
|
---|
| 177 | }
|
---|
[7ca772] | 178 | return 1;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | boost::asio::io_service io_service;
|
---|
| 182 | FragmentController controller(io_service);
|
---|
| 183 |
|
---|
| 184 | switch(getCommandIndex(CommandsMap, argv[3])) {
|
---|
[ff60cfa] | 185 | case AddJobsIndex:
|
---|
| 186 | {
|
---|
| 187 | std::vector<FragmentJob::ptr> jobs;
|
---|
| 188 | if (argc == 4) {
|
---|
| 189 | ELOG(1, "Please add a filename for the MPQCCommandJob.");
|
---|
| 190 | } else {
|
---|
| 191 | for (int argcount = 4; argcount < argc; ++argcount) {
|
---|
| 192 | LOG(1, "INFO: Parsing job for file " << argv[argcount] << ".");
|
---|
| 193 | parsejob(jobs, argv[argcount]);
|
---|
| 194 | }
|
---|
| 195 | addjobs(controller, jobs);
|
---|
| 196 | sendjobs(controller, argv[1], argv[2]);
|
---|
| 197 | }
|
---|
| 198 | break;
|
---|
| 199 | }
|
---|
| 200 | case CreateJobsIndex:
|
---|
[7ca772] | 201 | {
|
---|
[78ad7d] | 202 | std::vector<FragmentJob::ptr> jobs;
|
---|
[7ca772] | 203 | createjobs(jobs);
|
---|
| 204 | addjobs(controller, jobs);
|
---|
| 205 | sendjobs(controller, argv[1], argv[2]);
|
---|
| 206 | break;
|
---|
| 207 | }
|
---|
| 208 | case CheckResultsIndex:
|
---|
| 209 | {
|
---|
| 210 | checkresults(controller, argv[1], argv[2]);
|
---|
| 211 | break;
|
---|
| 212 | }
|
---|
| 213 | case ReceiveResultsIndex:
|
---|
| 214 | {
|
---|
| 215 | receiveresults(controller, argv[1], argv[2]);
|
---|
| 216 | break;
|
---|
| 217 | }
|
---|
| 218 | case ShutdownIndex:
|
---|
| 219 | {
|
---|
| 220 | shutdown(controller, argv[1], argv[2]);
|
---|
| 221 | break;
|
---|
| 222 | }
|
---|
| 223 | case UnknownCommandIndex:
|
---|
| 224 | default:
|
---|
| 225 | ELOG(0, "Unrecognized command '"+toString(argv[3])+"'.");
|
---|
| 226 | break;
|
---|
| 227 | }
|
---|
| 228 |
|
---|
| 229 | {
|
---|
| 230 | Info info("io_service");
|
---|
| 231 | io_service.run();
|
---|
| 232 | }
|
---|
| 233 |
|
---|
| 234 | switch(getCommandIndex(CommandsMap, argv[3])) {
|
---|
[ff60cfa] | 235 | case AddJobsIndex:
|
---|
| 236 | case CreateJobsIndex:
|
---|
[7ca772] | 237 | break;
|
---|
| 238 | case CheckResultsIndex:
|
---|
| 239 | {
|
---|
| 240 | printdonejobs(controller);
|
---|
| 241 | break;
|
---|
| 242 | }
|
---|
| 243 | case ReceiveResultsIndex:
|
---|
| 244 | {
|
---|
| 245 | printreceivedresults(controller);
|
---|
| 246 | break;
|
---|
| 247 | }
|
---|
| 248 | case ShutdownIndex:
|
---|
| 249 | break;
|
---|
| 250 | case UnknownCommandIndex:
|
---|
| 251 | default:
|
---|
| 252 | ELOG(0, "Unrecognized command '"+toString(argv[3])+"'.");
|
---|
| 253 | break;
|
---|
| 254 | }
|
---|
| 255 | Exitflag = controller.getExitflag();
|
---|
| 256 | }
|
---|
| 257 | catch (std::exception& e)
|
---|
| 258 | {
|
---|
| 259 | std::cerr << e.what() << std::endl;
|
---|
| 260 | }
|
---|
| 261 |
|
---|
| 262 | return Exitflag;
|
---|
| 263 | }
|
---|