Newer
Older
* \file
* \author Lars Bilke
* \date Apr. 2010
* \brief Filename manipulation routines.
*
* \copyright
* Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
#include <fstream>
{
/**
* \brief Returns true if given file exists. From http://www.techbytes.ca/techbyte103.html
*
* \param strFilename the file name
bool IsFileExisting(const std::string &strFilename);
/**
* \brief write value as binary into the given output stream
*
* \param out output stream, have to be opened in binary mode
template <typename T> void writeValueBinary(std::ostream &out, T const& val)
out.write(reinterpret_cast<const char*>(&val), sizeof(T));
template <typename T>
T swapEndianness(T const& v)
{
union
{
T v;
char c[sizeof(T)];
} a, b;
a.v = v;
for (unsigned short i = 0; i < sizeof(T); i++)
}
double swapEndianness(double const& v);
template <typename T>
T readBinaryValue(std::istream& in)
{
T v;
in.read(reinterpret_cast<char*>(&v), sizeof(T));
return v;
template <typename T>
std::vector<T> readBinaryArray(std::string const& filename, std::size_t const n)
{
std::ifstream in(filename.c_str());
if (!in) {
ERR("readBinaryArray(): Error while reading from file '{:s}'.",
ERR("Could not open file '{:s}' for input.", filename.c_str());
for (std::size_t p = 0; in && !in.eof() && p < n; ++p)
result.push_back(BaseLib::readBinaryValue<T>(in));
ERR("readBinaryArray(): Error while reading from file '{:s}'.",
ERR("Read different number of values. Expected {:d}, got {:d}.",
n,
result.size());
/**
* Extracts basename from given pathname with extension.
*
* Returns a string containing everything after the last path separator.
* If the the pathname does not contain a path separator original pathname is
* returned.
*/
std::string extractBaseName(std::string const& pathname);
/**
* Extracts basename from given pathname without its extension.
*
* Same as extractBaseName(), but drops the file extension too.
*/
std::string extractBaseNameWithoutExtension(std::string const& pathname);
* Extract extension from filename
std::string getFileExtension(std::string const& path);
/**
* Compares filename's extension with query extension. The comparison is case
bool hasFileExtension(std::string const& extension,
std::string const& filename);
/** Returns a string with file extension as found by getFileExtension()
* dropped.
*/
std::string dropFileExtension(std::string const& filename);
* Checks if file_name already contains a qualified path and if not copies the
* path from source.
std::string copyPathToFileName(const std::string &file_name,
const std::string &source);
*
* Returns a string up to the last path separator not including it.
std::string extractPath(std::string const& pathname);
/**
* Appends a platform-dependent path separator (/ or \) if missing
*/
std::string appendPathSeparator(std::string const& path);
/**
* Concat two paths. Does not check for validity.
*/
std::string joinPaths(std::string const& pathA, std::string const& pathB);
/// Returns the directory where the prj file resides.
std::string const& getProjectDirectory();
/// Sets the project directory.
void setProjectDirectory(std::string const& dir);
/// Remove files. If a file does not exist nothing will happen, other errors
/// lead to OGS_FATAL call.
void removeFiles(std::vector<std::string> const& files);
} // end namespace BaseLib