1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * ControllerOptions_MPQCCommandJob.cpp
|
---|
10 | *
|
---|
11 | * Created on: Jun 6, 2012
|
---|
12 | * Author: heber
|
---|
13 | */
|
---|
14 |
|
---|
15 |
|
---|
16 | // include config.h
|
---|
17 | #ifdef HAVE_CONFIG_H
|
---|
18 | #include <config.h>
|
---|
19 | #endif
|
---|
20 |
|
---|
21 | #include "CodePatterns/MemDebug.hpp"
|
---|
22 |
|
---|
23 | #include "CodePatterns/Log.hpp"
|
---|
24 |
|
---|
25 | #include "ControllerOptions_MPQCCommandJob.hpp"
|
---|
26 |
|
---|
27 | int ControllerOptions_MPQCCommandJob::parseExecutable(boost::program_options::variables_map &vm) {
|
---|
28 | if ((command == "createjobs") || (command == "addjobs")) {
|
---|
29 | if (!vm.count("executable")) {
|
---|
30 | ELOG(1, "'"+command+"' requires two options: [executable] [jobcommand].");
|
---|
31 | return 255;
|
---|
32 | }
|
---|
33 | executable = vm["executable"].as< std::string >();
|
---|
34 | }
|
---|
35 | return 0;
|
---|
36 | }
|
---|
37 |
|
---|
38 | int ControllerOptions_MPQCCommandJob::parseJobCommand(boost::program_options::variables_map &vm) {
|
---|
39 | if (command == "createjobs") {
|
---|
40 | if (!vm.count("jobcommand")) {
|
---|
41 | ELOG(1, "'"+command+"' requires two options: [executable] [jobcommand].");
|
---|
42 | return 255;
|
---|
43 | }
|
---|
44 | jobcommand = vm["jobcommand"].as< std::string >();
|
---|
45 | }
|
---|
46 | return 0;
|
---|
47 | }
|
---|
48 |
|
---|
49 | int ControllerOptions_MPQCCommandJob::parseFragmentpath(boost::program_options::variables_map &vm) {
|
---|
50 | if (command == "receivempqc") {
|
---|
51 | if (!vm.count("fragment-path")) {
|
---|
52 | ELOG(1, "'"+command+"' requires two options: [fragment-path].");
|
---|
53 | return 255;
|
---|
54 | }
|
---|
55 | fragmentpath = vm["fragment-path"].as< std::string >();
|
---|
56 | }
|
---|
57 | return 0;
|
---|
58 | }
|
---|
59 |
|
---|
60 | int ControllerOptions_MPQCCommandJob::parseJobfiles(boost::program_options::variables_map &vm) {
|
---|
61 | if (command == "addjobs") {
|
---|
62 | if (!vm.count("jobfiles")) {
|
---|
63 | ELOG(1, "'"+command+"' requires two options: [executable] [jobfiles].");
|
---|
64 | return 255;
|
---|
65 | }
|
---|
66 | jobfiles = vm["jobfiles"].as< std::vector<std::string> >();
|
---|
67 | }
|
---|
68 | return 0;
|
---|
69 | }
|
---|
70 |
|
---|