Newer
Older
#ifndef H_IBOXCONTROLLER_IO
#define H_IBOXCONTROLLER_IO
#include "MantidKernel/System.h"
#include "MantidKernel/DiskBuffer.h"
namespace Mantid {
namespace API {
/** The header describes interface to IO Operations perfomed by the box
controller
* May be replaced by a boost filestream in a future.
* It also currently assumes disk buffer usage.
* Disk buffer also assumes that actual IO operations performed by the class,
inhereted from this one are thread-safe
*
* @date March 21, 2013
Copyright © 2007-2013 ISIS Rutherford Appleton Laboratory, NScD Oak
Ridge National Laboratory & European Spallation Source
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>.
Code Documentation is available at: <http://doxygen.mantidproject.org>
class DLLExport IBoxControllerIO : public Kernel::DiskBuffer {
public:
/** open file for i/o operations
* @param fileName -- the name of the file to open
* @param mode -- the string describing file access mode. if w or W is
present in the string file is opened in read/write mode.
it is opened in read mode otherwise
* @return false if the file had been already opened. Throws if problems with
openeing */
virtual bool openFile(const std::string &fileName,
const std::string &mode) = 0;
/**@return true if file is already opened */
virtual bool isOpened() const = 0;
/**@return the full name of the used data file*/
virtual const std::string &getFileName() const = 0;
/**Save a float data block in the specified file position */
virtual void saveBlock(const std::vector<float> & /* DataBlock */,
const uint64_t /*blockPosition*/) const = 0;
/**Save a double data block in the specified file position */
virtual void saveBlock(const std::vector<double> & /* DataBlock */,
const uint64_t /*blockPosition*/) const = 0;
/** load known size float data block from spefied file position */
virtual void loadBlock(std::vector<float> & /* Block */,
const uint64_t /*blockPosition*/,
const size_t /*BlockSize*/) const = 0;
virtual void loadBlock(std::vector<double> & /* Block */,
const uint64_t /*blockPosition*/,
const size_t /*BlockSize*/) const = 0;
/** flush the IO buffers */
virtual void flushData() const = 0;
/** Close the file */
virtual void closeFile() = 0;
/// the method which returns the size of data block used in IO operations
virtual size_t getDataChunk() const = 0;
/** As save/load operations use void data type, these function allow set
* up/get the type name provided for the IO operations
* and the size of the data type in bytes (e.g. the class dependant physical
* meaning of the blockSize and blockPosition used
* by save/load operations */
virtual void setDataType(const size_t blockSize,
const std::string &typeName) = 0;
virtual void getDataType(size_t &blockSize, std::string &typeName) const = 0;
};