| [14de8e1] | 1 | /* | 
|---|
|  | 2 | * PythonScripting.hpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: Apr 13, 2012 | 
|---|
|  | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
| [06993e] | 8 | #ifndef PYTHONSCRIPTING_IMPL_HPP_ | 
|---|
|  | 9 | #define PYTHONSCRIPTING_IMPL_HPP_ | 
|---|
| [14de8e1] | 10 |  | 
|---|
|  | 11 |  | 
|---|
|  | 12 | // include config.h | 
|---|
|  | 13 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 14 | #include <config.h> | 
|---|
|  | 15 | #endif | 
|---|
|  | 16 |  | 
|---|
|  | 17 |  | 
|---|
|  | 18 | #include <boost/python.hpp> | 
|---|
|  | 19 | #include <boost/python/module.hpp> | 
|---|
|  | 20 | #include <boost/python/args.hpp> | 
|---|
|  | 21 |  | 
|---|
| [628577] | 22 | #include "CodePatterns/toString.hpp" | 
|---|
|  | 23 |  | 
|---|
| [cc6e5c] | 24 | // all "getter" functions | 
|---|
|  | 25 | #include "modules.hpp" | 
|---|
|  | 26 |  | 
|---|
| [14de8e1] | 27 | //!> define all present actions | 
|---|
|  | 28 | #include "GlobalListOfActions.hpp" | 
|---|
|  | 29 |  | 
|---|
|  | 30 | //!> python wrapping for all of these actions | 
|---|
|  | 31 | #include "AllActionPython.hpp" | 
|---|
|  | 32 |  | 
|---|
|  | 33 | namespace MoleCuilder { | 
|---|
|  | 34 |  | 
|---|
|  | 35 | namespace PythonTypes { | 
|---|
|  | 36 |  | 
|---|
|  | 37 | inline void IndexError(){ | 
|---|
|  | 38 | PyErr_SetString(PyExc_IndexError, "Index out of range"); | 
|---|
|  | 39 | boost::python::throw_error_already_set(); | 
|---|
|  | 40 | } | 
|---|
|  | 41 |  | 
|---|
|  | 42 | template<class T> | 
|---|
|  | 43 | struct vec_item{ | 
|---|
|  | 44 | typedef typename T::value_type V; | 
|---|
|  | 45 | static V& get(T& x, int i){ | 
|---|
|  | 46 | static V nothing; | 
|---|
|  | 47 | if(i < 0) i += x.size(); | 
|---|
|  | 48 | if(i >= 0 && i < int(x.size())) return x[i]; | 
|---|
|  | 49 | IndexError(); | 
|---|
|  | 50 | return nothing; | 
|---|
|  | 51 | } | 
|---|
|  | 52 | static void set(T& x, int i, V const& v){ | 
|---|
|  | 53 | if(i < 0) i += x.size(); | 
|---|
|  | 54 | if(i >= 0 && i < int(x.size())) x[i] = v; | 
|---|
|  | 55 | else IndexError(); | 
|---|
|  | 56 | } | 
|---|
|  | 57 | static void del(T& x, int i){ | 
|---|
|  | 58 | if(i < 0) i += x.size(); | 
|---|
|  | 59 | if(i >= 0 && i < int(x.size())) x.erase(x.begin() + i); | 
|---|
|  | 60 | else IndexError(); | 
|---|
|  | 61 | } | 
|---|
|  | 62 | static void add(T& x, V const& v){ | 
|---|
|  | 63 | x.push_back(v); | 
|---|
|  | 64 | } | 
|---|
| [7df863] | 65 | static std::string toStringRepr(T& x){ | 
|---|
|  | 66 | return toString(x); | 
|---|
|  | 67 | } | 
|---|
| [14de8e1] | 68 | }; | 
|---|
|  | 69 |  | 
|---|
|  | 70 |  | 
|---|
|  | 71 | } /* namespace PythonTypes */ | 
|---|
| [cc6e5c] | 72 |  | 
|---|
| [14de8e1] | 73 | } /* namespace MoleCuilder */ | 
|---|
|  | 74 |  | 
|---|
| [cc6e5c] | 75 |  | 
|---|
| [14de8e1] | 76 | BOOST_PYTHON_MODULE(pyMoleCuilder) | 
|---|
|  | 77 | { | 
|---|
| [cc6e5c] | 78 | // from this moment on, we need to be sure to deeinitialize in the correct or | 
|---|
|  | 79 | // this is handled by the cleanup function | 
|---|
|  | 80 | atexit(MoleCuilder::detail::module_exit); | 
|---|
|  | 81 |  | 
|---|
| [14de8e1] | 82 | // set the docstring of the current module scope | 
|---|
|  | 83 | boost::python::scope().attr("__doc__") = "pyMolecuilder are the python bindings to all Actions of the program suite MoleCuilder.\n\nMoleCuilder is a program to build molecular (dynamics) worlds, allowing you indefinite manipulation, control and analysis over the atoms and molecules within a simulation domain."; | 
|---|
|  | 84 |  | 
|---|
| [cc6e5c] | 85 | boost::python::def( | 
|---|
|  | 86 | "reinit", | 
|---|
|  | 87 | MoleCuilder::detail::module_reinit, | 
|---|
|  | 88 | "Reinitializes the internal state of the python module as if it had been freshly imported,saves all input files beforehand." | 
|---|
|  | 89 | ); | 
|---|
| [415ddd] | 90 | boost::python::def( | 
|---|
|  | 91 | "wait", | 
|---|
|  | 92 | MoleCuilder::detail::module_wait, | 
|---|
|  | 93 | "Waits until all currently queued actions have been processed." | 
|---|
|  | 94 | ); | 
|---|
| [5061d9] | 95 | boost::python::def< std::string() >( | 
|---|
|  | 96 | "getGraph6String", | 
|---|
|  | 97 | MoleCuilder::detail::module_getGraph6String, | 
|---|
|  | 98 | "returns chemical graph of the current selected set of atoms as graph6 representation." | 
|---|
|  | 99 | ); | 
|---|
|  | 100 | boost::python::def< std::string() >( | 
|---|
|  | 101 | "getElementListAsString", | 
|---|
|  | 102 | MoleCuilder::detail::module_getElementListAsString, | 
|---|
|  | 103 | "returns list of elements over the nodes of the graph of the current selected set of atoms." | 
|---|
|  | 104 | ); | 
|---|
| [cc6e5c] | 105 | boost::python::def< MoleCuilder::detail::doubleVec() >( | 
|---|
|  | 106 | "getBoundingBox", | 
|---|
|  | 107 | MoleCuilder::detail::module_getBoundingBox, | 
|---|
|  | 108 | "returns the cuboid bounding box of the current domain." | 
|---|
|  | 109 | ); | 
|---|
|  | 110 | boost::python::def< double() >( | 
|---|
|  | 111 | "getDomainVolume", | 
|---|
|  | 112 | MoleCuilder::detail::module_getDomainVolume, | 
|---|
|  | 113 | "returns the volume of the simulation domain." | 
|---|
|  | 114 | ); | 
|---|
| [ea30e6] | 115 | boost::python::def< MoleCuilder::detail::elementVec() >( | 
|---|
|  | 116 | "getSelectedAtomElements", | 
|---|
|  | 117 | MoleCuilder::detail::module_getSelectedAtomElements, | 
|---|
|  | 118 | "returns the element numbers of all currently selected atoms." | 
|---|
|  | 119 | ); | 
|---|
| [e70818] | 120 | boost::python::def< MoleCuilder::detail::atomPositionsVec() >( | 
|---|
|  | 121 | "getSelectedAtomPositions", | 
|---|
|  | 122 | MoleCuilder::detail::module_getSelectedAtomPositions, | 
|---|
|  | 123 | "returns the positions of all currently selected atoms." | 
|---|
|  | 124 | ); | 
|---|
| [ea30e6] | 125 | boost::python::def< MoleCuilder::detail::atomIdVec() >( | 
|---|
|  | 126 | "getSelectedAtomIds", | 
|---|
|  | 127 | MoleCuilder::detail::module_getSelectedAtomIds, | 
|---|
|  | 128 | "returns the ids of all currently selected atoms." | 
|---|
|  | 129 | ); | 
|---|
| [cc6e5c] | 130 | boost::python::def< double() >( | 
|---|
|  | 131 | "getSelectedMolarMass", | 
|---|
|  | 132 | MoleCuilder::detail::module_getSelectedMolarMass, | 
|---|
|  | 133 | "returns the molar mass of all selected atoms." | 
|---|
|  | 134 | ); | 
|---|
|  | 135 |  | 
|---|
| [14de8e1] | 136 | // STL Vectors: | 
|---|
| [ea30e6] | 137 | // unsignedIntVec | 
|---|
|  | 138 | boost::python::class_< std::vector< atomId_t > >("PythonType_unsignedIntVec") | 
|---|
|  | 139 | .def("__len__", &std::vector< unsigned int >::size) | 
|---|
|  | 140 | .def("clear", &std::vector< unsigned int >::clear) | 
|---|
|  | 141 | .def("append", &MoleCuilder::PythonTypes::vec_item< std::vector< unsigned int > >::add, | 
|---|
|  | 142 | boost::python::with_custodian_and_ward<1, 2>()) // let container keep value | 
|---|
|  | 143 | .def("__getitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< unsigned int > >::get, | 
|---|
|  | 144 | boost::python::return_value_policy<boost::python::copy_non_const_reference>()) | 
|---|
|  | 145 | .def("__setitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< unsigned int > >::set, | 
|---|
|  | 146 | boost::python::with_custodian_and_ward<1,2>()) // to let container keep value | 
|---|
|  | 147 | .def("__delitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< unsigned int > >::del) | 
|---|
|  | 148 | .def("__iter__", boost::python::iterator< std::vector< unsigned int > >()) | 
|---|
| [7df863] | 149 | .def("__repr__", &MoleCuilder::PythonTypes::vec_item< std::vector< unsigned int > >::toStringRepr) | 
|---|
| [ea30e6] | 150 | ; | 
|---|
| [14de8e1] | 151 | // doubleVec | 
|---|
|  | 152 | boost::python::class_< std::vector< double > >("PythonType_doubleVec") | 
|---|
|  | 153 | .def("__len__", &std::vector< double >::size) | 
|---|
|  | 154 | .def("clear", &std::vector< double >::clear) | 
|---|
|  | 155 | .def("append", &MoleCuilder::PythonTypes::vec_item< std::vector< double > >::add, | 
|---|
|  | 156 | boost::python::with_custodian_and_ward<1, 2>()) // let container keep value | 
|---|
|  | 157 | .def("__getitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< double > >::get, | 
|---|
|  | 158 | boost::python::return_value_policy<boost::python::copy_non_const_reference>()) | 
|---|
|  | 159 | .def("__setitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< double > >::set, | 
|---|
|  | 160 | boost::python::with_custodian_and_ward<1,2>()) // to let container keep value | 
|---|
|  | 161 | .def("__delitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< double > >::del) | 
|---|
|  | 162 | .def("__iter__", boost::python::iterator< std::vector< double > >()) | 
|---|
| [7df863] | 163 | .def("__repr__", &MoleCuilder::PythonTypes::vec_item< std::vector< double > >::toStringRepr) | 
|---|
| [14de8e1] | 164 | ; | 
|---|
| [e70818] | 165 | // positions | 
|---|
|  | 166 | boost::python::class_< std::vector< std::vector< double > > >("PythonType_positions") | 
|---|
|  | 167 | .def("__len__", &std::vector< std::vector< double > >::size) | 
|---|
|  | 168 | .def("clear", &std::vector< std::vector< double > >::clear) | 
|---|
|  | 169 | .def("append", &MoleCuilder::PythonTypes::vec_item< std::vector< std::vector< double > > >::add, | 
|---|
|  | 170 | boost::python::with_custodian_and_ward<1, 2>()) // let container keep value | 
|---|
|  | 171 | .def("__getitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< std::vector< double > > >::get, | 
|---|
|  | 172 | boost::python::return_value_policy<boost::python::copy_non_const_reference>()) | 
|---|
|  | 173 | .def("__setitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< std::vector< double > > >::set, | 
|---|
|  | 174 | boost::python::with_custodian_and_ward<1,2>()) // to let container keep value | 
|---|
|  | 175 | .def("__delitem__", &MoleCuilder::PythonTypes::vec_item< std::vector< std::vector< double > > >::del) | 
|---|
|  | 176 | .def("__iter__", boost::python::iterator< std::vector< std::vector< double > > >()) | 
|---|
| [7df863] | 177 | .def("__repr__", &MoleCuilder::PythonTypes::vec_item< std::vector< std::vector< double > > >::toStringRepr) | 
|---|
| [e70818] | 178 | ; | 
|---|
| [14de8e1] | 179 |  | 
|---|
| [cc6e5c] | 180 | // access to all Actions | 
|---|
| [14de8e1] | 181 | #define export_print(z,n,list) \ | 
|---|
|  | 182 | BOOST_PP_CAT(export_, BOOST_PP_SEQ_ELEM(n, list))(); | 
|---|
| [975b83] | 183 | #define BOOST_PP_LOCAL_MACRO(n) export_print(~, n, GLOBALLISTOFPYTHONACTIONS) | 
|---|
|  | 184 | #define BOOST_PP_LOCAL_LIMITS  (0, BOOST_PP_DEC(BOOST_PP_SEQ_SIZE(GLOBALLISTOFPYTHONACTIONS))) | 
|---|
| [14de8e1] | 185 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
|  | 186 | #undef instance_print | 
|---|
|  | 187 | } | 
|---|
|  | 188 |  | 
|---|
|  | 189 |  | 
|---|
| [06993e] | 190 | #endif /* PYTHONSCRIPTING_IMPL_HPP_ */ | 
|---|