Changeset 1fd675 for src/Actions/CommandAction/VerboseAction.cpp
- Timestamp:
- Aug 28, 2010, 12:57:56 AM (15 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, Candidate_v1.7.0, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 966e12
- Parents:
- 53d01c
- git-author:
- Frederik Heber <heber@…> (08/26/10 21:05:34)
- git-committer:
- Frederik Heber <heber@…> (08/28/10 00:57:56)
- File:
-
- 1 edited
-
src/Actions/CommandAction/VerboseAction.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/CommandAction/VerboseAction.cpp
r53d01c r1fd675 20 20 #include "Helpers/MemDebug.hpp" 21 21 22 #include "Actions/CommandAction/VerboseAction.hpp"23 #include "Actions/ActionRegistry.hpp"24 22 #include "Helpers/Log.hpp" 25 23 #include "Helpers/Verbose.hpp" … … 30 28 using namespace std; 31 29 32 #include "UIElements/UIFactory.hpp" 33 #include "UIElements/Dialog.hpp" 34 #include "Actions/ValueStorage.hpp" 30 #include "Actions/CommandAction/VerboseAction.hpp" 35 31 36 // memento to remember the state when undoing 37 38 class CommandVerboseState : public ActionState { 39 public: 40 CommandVerboseState(const int _oldverbosity, const int _newverbosity) : 41 oldverbosity(_oldverbosity), 42 newverbosity(_newverbosity) 43 {} 44 int oldverbosity; 45 int newverbosity; 46 }; 47 48 49 const char CommandVerboseAction::NAME[] = "verbose"; 50 51 CommandVerboseAction::CommandVerboseAction() : 52 Action(NAME) 53 {} 54 55 CommandVerboseAction::~CommandVerboseAction() 56 {} 57 58 void CommandVerbose(int verbosity) { 59 ValueStorage::getInstance().setCurrentValue(CommandVerboseAction::NAME, verbosity); 60 ActionRegistry::getInstance().getActionByName(CommandVerboseAction::NAME)->call(Action::NonInteractive); 61 }; 62 63 void CommandVerboseAction::getParametersfromValueStorage() 64 {}; 65 66 Dialog* CommandVerboseAction::fillDialog(Dialog *dialog) { 67 ASSERT(dialog,"No Dialog given when filling action dialog"); 68 69 dialog->queryInt(NAME, ValueStorage::getInstance().getDescription(NAME)); 70 71 return dialog; 72 } 73 32 // and construct the stuff 33 #include "VerboseAction.def" 34 #include "Action_impl_pre.hpp" 35 /** =========== define the function ====================== */ 74 36 Action::state_ptr CommandVerboseAction::performCall() { 75 37 int oldverbosity = getVerbosity(); 76 int newverbosity = 2;77 38 78 ValueStorage::getInstance().queryCurrentValue(NAME, newverbosity); 39 // obtain information 40 getParametersfromValueStorage(); 79 41 80 if (oldverbosity != newverbosity) {81 CommandVerboseState *UndoState = new CommandVerboseState(oldverbosity, newverbosity);82 setVerbosity( newverbosity);83 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << oldverbosity << " to " << newverbosity << "." << endl);42 if (oldverbosity != params.verbosity) { 43 CommandVerboseState *UndoState = new CommandVerboseState(oldverbosity, params); 44 setVerbosity(params.verbosity); 45 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << oldverbosity << " to " << params.verbosity << "." << endl); 84 46 return Action::state_ptr(UndoState); 85 47 } else { … … 92 54 CommandVerboseState *state = assert_cast<CommandVerboseState*>(_state.get()); 93 55 94 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << state-> newverbosity << " to " << state->oldverbosity << "." << endl);56 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << state->params.verbosity << " to " << state->oldverbosity << "." << endl); 95 57 setVerbosity(state->oldverbosity); 96 58 … … 101 63 CommandVerboseState *state = assert_cast<CommandVerboseState*>(_state.get()); 102 64 103 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << state->oldverbosity << " to " << state-> newverbosity << "." << endl);104 setVerbosity(state-> newverbosity);65 DoLog(0) && (Log() << Verbose(0) << "Setting verbosity from " << state->oldverbosity << " to " << state->params.verbosity << "." << endl); 66 setVerbosity(state->params.verbosity); 105 67 106 68 return Action::state_ptr(_state); … … 118 80 return NAME; 119 81 } 82 /** =========== end of function ====================== */
Note:
See TracChangeset
for help on using the changeset viewer.
