source: src/JobMarket/ServerOptions.cpp@ 404d2b

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_JobMarket Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 404d2b was 404d2b, checked in by Frederik Heber <heber@…>, 8 years ago

Squashed 'ThirdParty/JobMarket/' content from commit e194722

git-subtree-dir: ThirdParty/JobMarket
git-subtree-split: e19472277e62c493f6c10f1483fe21e64c1039e9

  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 * Project: JobMarket
3 * Description: asynchronous Server/Controller/Client-approach to parallel computing, based on boost::asio
4 * Copyright (C) 2012 Frederik Heber. All rights reserved.
5 *
6 */
7
8/*
9 * ServerOptions.cpp
10 *
11 * Created on: 01.06.2012
12 * Author: heber
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 "JobMarket/ServerOptions.hpp"
23
24#include "CodePatterns/Log.hpp"
25
26int ServerOptions::parseWorkerPort(boost::program_options::variables_map &vm)
27{
28 if (vm.count("workerport")) {
29 try {
30 workerport = vm["workerport"].as< unsigned short >();
31 } catch (boost::bad_lexical_cast) {
32 ELOG(1, "Could not read " << workerport << " as digits.");
33 return 255;
34 }
35 LOG(1, "INFO: Using " << workerport << " as listen port for worker.");
36 } else {
37 ELOG(1, "Requiring listen port for worker.");
38 return 255;
39 }
40 return 0;
41}
42
43int ServerOptions::parseControllerPort(boost::program_options::variables_map &vm)
44{
45 if (vm.count("controllerport")) {
46 try {
47 controllerport = vm["controllerport"].as< unsigned short >();
48 } catch (boost::bad_lexical_cast) {
49 ELOG(1, "Could not read " << controllerport << " as digits.");
50 return 255;
51 }
52 LOG(1, "INFO: Using " << controllerport << " as listen port for controller.");
53 } else {
54 ELOG(1, "Requiring listen port for controller.");
55 return 255;
56 }
57 return 0;
58}
59
60int ServerOptions::parseTimeout(boost::program_options::variables_map &vm)
61{
62 if (vm.count("timeout")) {
63 try {
64 timeout = vm["timeout"].as< size_t >();
65 } catch (boost::bad_lexical_cast) {
66 ELOG(1, "Could not read " << timeout << " as digits.");
67 return 255;
68 }
69 } else {
70 timeout = 30;
71 }
72 LOG(1, "INFO: Using " << timeout << " as timeout.");
73 return 0;
74}
Note: See TracBrowser for help on using the repository browser.