Skip to content
Snippets Groups Projects
Commit c71a66dd authored by Hahn, Steven's avatar Hahn, Steven
Browse files

Merge pull request #16523 from mantidproject/MultipleFileProperty_in_python

Expose MultipleFileProperty constructor to python
parents 30d8b4e8 3395b939
No related branches found
No related tags found
No related merge requests found
#include "MantidAPI/MultipleFileProperty.h" #include "MantidAPI/MultipleFileProperty.h"
#include "MantidPythonInterface/kernel/Converters/PySequenceToVector.h"
#include "MantidPythonInterface/kernel/IsNone.h"
#include "MantidPythonInterface/kernel/PropertyWithValueExporter.h" #include "MantidPythonInterface/kernel/PropertyWithValueExporter.h"
#include <boost/python/class.hpp> #include <boost/python/class.hpp>
#include <boost/python/list.hpp> #include <boost/python/list.hpp>
#include <boost/python/make_constructor.hpp>
#include <boost/python/str.hpp> #include <boost/python/str.hpp>
using Mantid::API::MultipleFileProperty; using Mantid::API::MultipleFileProperty;
using Mantid::Kernel::PropertyWithValue; using Mantid::Kernel::PropertyWithValue;
using Mantid::PythonInterface::Converters::PySequenceToVector;
using Mantid::PythonInterface::PropertyWithValueExporter; using Mantid::PythonInterface::PropertyWithValueExporter;
using namespace boost::python; using namespace boost::python;
...@@ -22,29 +26,37 @@ typedef std::vector<std::vector<std::string>> HeldType; ...@@ -22,29 +26,37 @@ typedef std::vector<std::vector<std::string>> HeldType;
*/ */
boost::python::object valueAsPyObject(MultipleFileProperty &self) { boost::python::object valueAsPyObject(MultipleFileProperty &self) {
const HeldType &propValue = self(); const HeldType &propValue = self();
boost::python::object result;
if (propValue.size() == 1 && // Build a list of lists to mimic the behaviour of MultipleFileProperty
propValue[0].size() == 1) // Special case, unwrap the vector boost::python::list fileList;
{ for (const auto &filenames : propValue) {
result = boost::python::str(propValue[0][0]); if (filenames.size() == 1) {
} else { fileList.append(filenames.front());
// Build a list of lists to mimic the behaviour of MultipleFileProperty } else {
boost::python::list fileList; boost::python::list groupList;
for (const auto &filenames : propValue) { for (const auto &filename : filenames) {
if (filenames.size() == 1) { groupList.append(filename);
fileList.append(filenames.front());
} else {
boost::python::list groupList;
for (const auto &filename : filenames) {
groupList.append(filename);
}
fileList.append(groupList);
} }
fileList.append(groupList);
} }
result = fileList;
} }
return result; return fileList;
}
MultipleFileProperty *
createMultipleFileProperty(const std::string &name,
const object &extensions = object()) {
std::vector<std::string> extsAsVector;
if (!Mantid::PythonInterface::isNone(extensions)) {
extract<std::string> extractor(extensions);
if (extractor.check()) {
extsAsVector = std::vector<std::string>(1, extractor());
} else {
extsAsVector = PySequenceToVector<std::string>(extensions)();
}
}
return new MultipleFileProperty(name, extsAsVector);
} }
} }
...@@ -55,6 +67,9 @@ void export_MultipleFileProperty() { ...@@ -55,6 +67,9 @@ void export_MultipleFileProperty() {
class_<MultipleFileProperty, bases<BaseClass>, boost::noncopyable>( class_<MultipleFileProperty, bases<BaseClass>, boost::noncopyable>(
"MultipleFileProperty", no_init) "MultipleFileProperty", no_init)
.def("__init__", make_constructor(
&createMultipleFileProperty, default_call_policies(),
(arg("name"), arg("extensions") = object())))
// Override the base class one to do something more appropriate // Override the base class one to do something more appropriate
.add_property("value", &valueAsPyObject); .add_property("value", &valueAsPyObject);
} }
...@@ -12,7 +12,10 @@ class MultipleFilePropertyTest(unittest.TestCase): ...@@ -12,7 +12,10 @@ class MultipleFilePropertyTest(unittest.TestCase):
algorithm = create_algorithm('Load', Filename='LOQ48127.raw',OutputWorkspace='w', algorithm = create_algorithm('Load', Filename='LOQ48127.raw',OutputWorkspace='w',
SpectrumMin=1,SpectrumMax=1,child=True) SpectrumMin=1,SpectrumMax=1,child=True)
prop = algorithm.getProperty("Filename") prop = algorithm.getProperty("Filename")
self.assertTrue(isinstance(prop.value, str)) filenames = prop.value
self.assertTrue(isinstance(filenames, list))
self.assertTrue(isinstance(filenames[0], str))
self.assertEquals(len(filenames), 1)
def test_value_member_returns_python_list_for_multiple_files(self): def test_value_member_returns_python_list_for_multiple_files(self):
algorithm = create_algorithm('Load', Filename='MUSR15189,15190,15191.nxs',OutputWorkspace='w', algorithm = create_algorithm('Load', Filename='MUSR15189,15190,15191.nxs',OutputWorkspace='w',
......
...@@ -180,9 +180,4 @@ class DgsReductionScripter(BaseReductionScripter): ...@@ -180,9 +180,4 @@ class DgsReductionScripter(BaseReductionScripter):
alg = mantid.api.AlgorithmManager.createUnmanaged("Load") alg = mantid.api.AlgorithmManager.createUnmanaged("Load")
alg.initialize() alg.initialize()
alg.setPropertyValue('Filename',str(filename)) alg.setPropertyValue('Filename',str(filename))
fnames=alg.getProperty('Filename').value return alg.getProperty('Filename').value
if not isinstance(fnames,list):
fnames=[fnames] #make a list with one element
return fnames
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment