-
Nick Draper authored
Update copyright headers in all files Squashed commit of the following: * First version of a script to manage copyright statements re #23468 * Neatened up script, added comments re #23488 * move script to tools directory re #23488 * small script changes and a couple of manual file changes re #23488 * Minor chnage to whitespace detection in regex re #23488 * Add an excluded directory re #23488 * remove a repeasted copyright statement in a file re #23488 * Don't comsume the comment end if it is on the same line re #23488 * fix error in new copright parsing re #23488 * remove double copyrifght entry re #23488 * Improve handling of old copyrights at the start of comments re #23488 * remove empty comments re #23488 * exclude gsoapgenerated directories re #23488 * Sort out greedy line matching re #23488 * improve empty comment removal re #23488 * improve false positives re #23488 * impressive speedup by limiting regex matching length re #23488 * remove evil invisible non ascii character Also upadte the copyright at the same time re #23488 * resolve multiple copyrights in a single file re #23488 * resolve an issue with new statement detection re #23488 * another unprintable unicode character re #23488 * pep updates and cmake the new copyright fit clang format re #23488 * update already done new format headers re #23488 * wrong type of bracket re #23488 * Update class_maker and friends re #23488 * Update all copyright statements re #23488 * clang format re #23488 * flake8 warnings re #23488 * Flake8 warnings re #23488 * Exclude .cmake.in and rb.in files re #23488 * replace missing line re #23488 * exclude .py.in files as they are flasely recognized as C++ re #23488 * another setp.py.in re #23488 * another .py.in correction re #23488 * Hopefully the last of the .py.in files re #23488 * resolve utf-8 encoding of python files and changed ABINS checksum re #23488 * updates to unit tests that reference line numbers re #23488 * remaining unit test files and other fixes re #23488
Nick Draper authoredUpdate copyright headers in all files Squashed commit of the following: * First version of a script to manage copyright statements re #23468 * Neatened up script, added comments re #23488 * move script to tools directory re #23488 * small script changes and a couple of manual file changes re #23488 * Minor chnage to whitespace detection in regex re #23488 * Add an excluded directory re #23488 * remove a repeasted copyright statement in a file re #23488 * Don't comsume the comment end if it is on the same line re #23488 * fix error in new copright parsing re #23488 * remove double copyrifght entry re #23488 * Improve handling of old copyrights at the start of comments re #23488 * remove empty comments re #23488 * exclude gsoapgenerated directories re #23488 * Sort out greedy line matching re #23488 * improve empty comment removal re #23488 * improve false positives re #23488 * impressive speedup by limiting regex matching length re #23488 * remove evil invisible non ascii character Also upadte the copyright at the same time re #23488 * resolve multiple copyrights in a single file re #23488 * resolve an issue with new statement detection re #23488 * another unprintable unicode character re #23488 * pep updates and cmake the new copyright fit clang format re #23488 * update already done new format headers re #23488 * wrong type of bracket re #23488 * Update class_maker and friends re #23488 * Update all copyright statements re #23488 * clang format re #23488 * flake8 warnings re #23488 * Flake8 warnings re #23488 * Exclude .cmake.in and rb.in files re #23488 * replace missing line re #23488 * exclude .py.in files as they are flasely recognized as C++ re #23488 * another setp.py.in re #23488 * another .py.in correction re #23488 * Hopefully the last of the .py.in files re #23488 * resolve utf-8 encoding of python files and changed ABINS checksum re #23488 * updates to unit tests that reference line numbers re #23488 * remaining unit test files and other fixes re #23488
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
FrameworkManager.h 4.33 KiB
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2007 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_API_FRAMEWORKMANAGER_H_
#define MANTID_API_FRAMEWORKMANAGER_H_
#include <string>
#ifdef MPI_BUILD
#include <boost/mpi/environment.hpp>
#endif
#include "MantidAPI/DllConfig.h"
#include "MantidAPI/FileLoaderRegistry.h"
#include "MantidKernel/SingletonHolder.h"
#include <boost/shared_ptr.hpp>
namespace Mantid {
namespace API {
class IAlgorithm;
class Workspace;
/** The main public API via which users interact with the Mantid framework.
@author Russell Taylor, Tessella Support Services plc
@date 05/10/2007
*/
class MANTID_API_DLL FrameworkManagerImpl {
public:
FrameworkManagerImpl(const FrameworkManagerImpl &) = delete;
FrameworkManagerImpl &operator=(const FrameworkManagerImpl &) = delete;
/// Load framework plugins
void loadPlugins();
/// Set the number of OpenMP threads to use based on the config value
void setNumOMPThreadsToConfigValue();
/// Set the number of OpenMP threads to the given value
void setNumOMPThreads(const int nthreads);
/// Returns the number of OpenMP threads that will be used
int getNumOMPThreads() const;
/// Clears all memory associated with the AlgorithmManager, ADS & IDS
void clear();
/// shuts down and performs clean up tasks
void shutdown();
/// Clear memory associated with the AlgorithmManager
void clearAlgorithms();
/// Clear memory associated with the ADS
void clearData();
/// Clear memory associated with the IDS
void clearInstruments();
/// Clear memory associated with the PropertyManagers
void clearPropertyManagers();
/// Creates and instance of an algorithm
IAlgorithm *createAlgorithm(const std::string &algName,
const int &version = -1);
/// Creates an instance of an algorithm and sets the properties provided
IAlgorithm *createAlgorithm(const std::string &algName,
const std::string &propertiesArray,
const int &version = -1);
/// Creates an instance of an algorithm, sets the properties provided & then
/// executes it.
IAlgorithm *exec(const std::string &algName,
const std::string &propertiesArray, const int &version = -1);
/// Creates an algorithm and runs it, with variadic arguments
boost::shared_ptr<IAlgorithm> exec(const std::string &algorithmName,
int count, ...);
/// Returns a shared pointer to the workspace requested
Workspace *getWorkspace(const std::string &wsName);
/// Deletes a workspace from the framework
bool deleteWorkspace(const std::string &wsName);
private:
friend struct Mantid::Kernel::CreateUsingNew<FrameworkManagerImpl>;
/// Private Constructor
FrameworkManagerImpl();
/// Private Destructor
~FrameworkManagerImpl() = default;
/// Load a set of plugins using a key from the ConfigService
void loadPluginsUsingKey(const std::string &locationKey,
const std::string &excludeKey);
/// Set up the global locale
void setGlobalNumericLocaleToC();
/// Silence NeXus output
void disableNexusOutput();
/// Starts asynchronous tasks that are done as part of Start-up
void asynchronousStartupTasks();
/// Setup Usage Reporting if enabled
void setupUsageReporting();
/// Update instrument definitions from github
void updateInstrumentDefinitions();
/// check if a newer version of Mantid is available
void checkIfNewerVersionIsAvailable();
#ifdef MPI_BUILD
/** Member variable that initialises the MPI environment on construction (in
* the
* FrameworkManager constructor) and finalises it on destruction.
* The class has no non-static member functions, so is not exposed in the
* class interface.
*/
boost::mpi::environment m_mpi_environment;
int argc = 0;
char **argv;
#endif
};
using FrameworkManager = Mantid::Kernel::SingletonHolder<FrameworkManagerImpl>;
} // namespace API
} // namespace Mantid
namespace Mantid {
namespace Kernel {
EXTERN_MANTID_API template class MANTID_API_DLL
Mantid::Kernel::SingletonHolder<Mantid::API::FrameworkManagerImpl>;
}
} // namespace Mantid
#endif /*MANTID_API_FRAMEWORKMANAGER_H_*/