Changeset 87ec81 for src


Ignore:
Timestamp:
Sep 19, 2013, 8:24:28 PM (11 years ago)
Author:
Frederik Heber <heber@…>
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, 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:
192397
Parents:
d5521e
git-author:
Frederik Heber <heber@…> (09/17/13 23:16:06)
git-committer:
Frederik Heber <heber@…> (09/19/13 20:24:28)
Message:

ShapeFactory removed from libMolecuilderShapes.

  • Factory is right now required only in CombineShapesAction and CreateShapeAction. Hence, it is moved over to libMolecuilder to keep ..Shapes a low-dependency lib.
  • ShapeRegistry::getDefaultNameForShape() now gets just string, ShapeFactory is queried in Actions for getShapeName() as baseName.
  • added stubs for World and molecule to ShapeFactoryUnitTest deps.
Location:
src
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ShapeAction/CombineShapesAction.cpp

    rd5521e r87ec81  
    3636
    3737#include "Shapes/BaseShapes.hpp"
     38#include "Shapes/ShapeFactory.hpp"
    3839#include "Shapes/ShapeRegistry.hpp"
    3940#include "CodePatterns/Log.hpp"
     
    8283  if (params.shape_name.get() != "")
    8384    s.setName(params.shape_name.get());
    84   else
    85     s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s));
     85  else {
     86    const std::string baseName =
     87        ShapeFactory::getInstance().getShapeName(s.getType());
     88    s.setName(
     89        ShapeRegistry::getInstance().getDefaultNameForShape(baseName)
     90    );
     91  }
    8692  std::string old_name = s.getName();
    8793  std::cout << s.getName() << "\n";
  • src/Actions/ShapeAction/CreateShapeAction.cpp

    rd5521e r87ec81  
    5959  if (params.shape_name.get() != "")
    6060    s.setName(params.shape_name.get());
    61   else
    62     s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s));
     61  else {
     62    const std::string baseName =
     63        ShapeFactory::getInstance().getShapeName(s.getType());
     64    s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(baseName));
     65  }
    6366  std::string old_name = s.getName();
    6467  std::cout << s.getName() << "\n";
     
    8790  if (state->params.shape_name.get() != "")
    8891    s.setName(state->params.shape_name.get());
    89   else
    90     s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(s));
     92  else {
     93    const std::string baseName =
     94        ShapeFactory::getInstance().getShapeName(s.getType());
     95    s.setName(ShapeRegistry::getInstance().getDefaultNameForShape(baseName));
     96  }
    9197  std::string old_name = s.getName();
    9298  std::cout << s.getName() << "\n";
  • src/Makefile.am

    rd5521e r87ec81  
    184184  ${THERMOSTATSOURCE} \
    185185  ${TESSELATIONSOURCE} \
     186  Shapes/ShapeFactory.cpp \
    186187  AtomIdSet.cpp \
    187188  Box.cpp \
     
    206207  ${THERMOSTATHEADER} \
    207208  ${TESSELATIONHEADER} \
     209  Shapes/ShapeFactory.hpp \
    208210  AtomIdSet.hpp \
    209211  Box.hpp \
  • src/Shapes/Makefile.am

    rd5521e r87ec81  
    55  Shapes/BaseShapes.cpp \
    66  Shapes/Shape.cpp \
    7   Shapes/ShapeFactory.cpp \
    87  Shapes/ShapeOps.cpp \
    98  Shapes/ShapeRegistry.cpp
     
    1413  Shapes/Shape_impl.hpp \
    1514  Shapes/ShapeExceptions.hpp \
    16   Shapes/ShapeFactory.hpp \
    1715  Shapes/ShapeOps.hpp \
    1816  Shapes/ShapeOps_impl.hpp \
  • src/Shapes/ShapeRegistry.cpp

    rd5521e r87ec81  
    147147}
    148148
    149 std::string ShapeRegistry::getDefaultNameForShape(Shape s) const
     149std::string ShapeRegistry::getDefaultNameForShape(const std::string &baseName) const
    150150{
    151   std::string baseName = ShapeFactory::getInstance().getShapeName(s.getType());
    152151  int n = 1;
    153152  while(true){
  • src/Shapes/ShapeRegistry.hpp

    rd5521e r87ec81  
    3030  void addShape(Shape s);
    3131  void removeShape(const std::string &name);
    32   //Shape* getShapeByName(const std::string name);
    33   //bool isShapePresentByName(const std::string name) const;
    34   std::string getDefaultNameForShape(Shape s) const;
     32  std::string getDefaultNameForShape(const std::string &baseName) const;
    3533
    3634  enum NotificationType {
  • src/Shapes/unittests/Makefile.am

    rd5521e r87ec81  
    4848        ../Shapes/unittests/ShapeFactoryUnitTest.hpp \
    4949        ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
    50         ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
     50        ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp \
     51        ../Shapes/unittests/stubs/moleculeStub.cpp \
     52        ../Shapes/unittests/stubs/WorldSelectedMoleculesStub.cpp
    5153nodist_ShapeFactoryUnitTest_SOURCES = \
    5254        ../Helpers/defs.hpp \
    53         ../Helpers/defs.cpp
    54 ShapeFactoryUnitTest_LDADD = $(SHAPELIBS)
     55        ../Helpers/defs.cpp \
     56        ../Shapes/ShapeFactory.cpp \
     57        ../Shapes/ShapeFactory.hpp
     58ShapeFactoryUnitTest_LDADD = \
     59        ../libMolecuilderElement.la \
     60        $(SHAPELIBS)
    5561
    5662ShapeOpsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
Note: See TracChangeset for help on using the changeset viewer.