Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
94439b1b
Commit
94439b1b
authored
14 years ago
by
Gigg, Martyn Anthony
Browse files
Options
Downloads
Patches
Plain Diff
Exposed the FileFinder to Python. Re #1395
parent
8abc5bbc
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/PythonAPI/inc/MantidPythonAPI/api_exports.h
+31
-0
31 additions, 0 deletions
Code/Mantid/PythonAPI/inc/MantidPythonAPI/api_exports.h
Code/Mantid/PythonAPI/src/api_exports.cpp
+13
-0
13 additions, 0 deletions
Code/Mantid/PythonAPI/src/api_exports.cpp
with
44 additions
and
0 deletions
Code/Mantid/PythonAPI/inc/MantidPythonAPI/api_exports.h
+
31
−
0
View file @
94439b1b
...
...
@@ -10,6 +10,7 @@
#include
<MantidAPI/MatrixWorkspace.h>
#include
<MantidAPI/AnalysisDataService.h>
#include
<MantidAPI/IAlgorithm.h>
#include
<MantidAPI/FileFinder.h>
#include
<boost/python.hpp>
#include
<iostream>
...
...
@@ -102,6 +103,36 @@ namespace PythonAPI
typedef
Mantid
::
API
::
IAlgorithm
*
(
FrameworkManagerProxy
::*
createAlg_overload3
)(
const
std
::
string
&
,
const
std
::
string
&
);
typedef
Mantid
::
API
::
IAlgorithm
*
(
FrameworkManagerProxy
::*
createAlg_overload4
)(
const
std
::
string
&
,
const
std
::
string
&
,
const
int
&
);
/**
* FileFinder singleton wrapper
*
* This class is the type that is actually instantiated within Python.
*/
struct
FileFinderWrapper
{
public:
/**
* Call the corresponding FileFinder method
* @param input The input for the function
* @returns A string containing either the full path or nothing if the file could not be found
*/
static
std
::
string
getFullPath
(
const
std
::
string
&
input
)
{
return
API
::
FileFinder
::
Instance
().
getFullPath
(
input
);
}
/**
* Call the corresponding FileFinder method
* @param input The input for the function
* @returns A list of runs that have been found
*/
static
std
::
vector
<
std
::
string
>
findRuns
(
const
std
::
string
&
input
)
{
return
API
::
FileFinder
::
Instance
().
findRuns
(
input
);
}
};
//@endcond
}
}
...
...
This diff is collapsed.
Click to expand it.
Code/Mantid/PythonAPI/src/api_exports.cpp
+
13
−
0
View file @
94439b1b
...
...
@@ -16,6 +16,8 @@
#include
<MantidAPI/WorkspaceProperty.h>
#include
<MantidAPI/FileProperty.h>
#include
<MantidAPI/WorkspaceValidators.h>
#include
<MantidAPI/FileFinder.h>
#include
<MantidPythonAPI/PyAlgorithmWrapper.h>
namespace
Mantid
...
...
@@ -372,6 +374,16 @@ namespace PythonAPI
}
void
export_file_finder
()
{
class_
<
PythonAPI
::
FileFinderWrapper
,
boost
::
noncopyable
>
(
"FileFinder"
,
no_init
)
.
def
(
"getFullPath"
,
&
PythonAPI
::
FileFinderWrapper
::
getFullPath
)
.
staticmethod
(
"getFullPath"
)
.
def
(
"findRuns"
,
&
PythonAPI
::
FileFinderWrapper
::
findRuns
)
.
staticmethod
(
"findRuns"
)
;
}
void
export_api_namespace
()
{
export_frameworkmanager
();
...
...
@@ -387,6 +399,7 @@ namespace PythonAPI
export_fileproperty
();
export_workspacefactory
();
export_apivalidators
();
export_file_finder
();
}
//@endcond
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment