You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.1 KiB
109 lines
2.1 KiB
/*
|
|
* parser.h
|
|
*
|
|
* Created on: 21.11.2012
|
|
* Author: Gereon Kremer
|
|
*/
|
|
|
|
#ifndef PARSER_H_
|
|
#define PARSER_H_
|
|
|
|
#include "src/utility/osDetection.h"
|
|
|
|
#if defined LINUX || defined MACOSX
|
|
#include <sys/mman.h>
|
|
#elif defined WINDOWS
|
|
#endif
|
|
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <iostream>
|
|
|
|
#include "src/exceptions/file_IO_exception.h"
|
|
#include "src/exceptions/wrong_file_format.h"
|
|
|
|
namespace mrmc {
|
|
namespace parser {
|
|
|
|
/*!
|
|
* @brief Parses integer and checks, if something has been parsed.
|
|
*/
|
|
uint_fast64_t checked_strtol(const char* str, char** end);
|
|
|
|
/*!
|
|
* @brief Skips common whitespaces in a string.
|
|
*/
|
|
char* skipWS(char* buf);
|
|
|
|
/*!
|
|
* @brief Opens a file and maps it to memory providing a char*
|
|
* containing the file content.
|
|
*
|
|
* This class is a very simple interface to read files efficiently.
|
|
* The given file is opened and mapped to memory using mmap().
|
|
* The public member data is a pointer to the actual file content.
|
|
* Using this method, the kernel will take care of all buffering. This is
|
|
* most probably much more efficient than doing this manually.
|
|
*/
|
|
|
|
#if !defined LINUX && !defined MACOSX && !defined WINDOWS
|
|
#error Platform not supported
|
|
#endif
|
|
|
|
class MappedFile
|
|
{
|
|
private:
|
|
#if defined LINUX || defined MACOSX
|
|
/*!
|
|
* @brief file descriptor obtained by open().
|
|
*/
|
|
int file;
|
|
#elif defined WINDOWS
|
|
HANDLE file;
|
|
HANDLE mapping;
|
|
#endif
|
|
|
|
#if defined LINUX
|
|
/*!
|
|
* @brief stat information about the file.
|
|
*/
|
|
struct stat64 st;
|
|
#elif defined MACOSX
|
|
/*!
|
|
* @brief stat information about the file.
|
|
*/
|
|
struct stat st;
|
|
#elif defined WINDOWS
|
|
/*!
|
|
* @brief stat information about the file.
|
|
*/
|
|
struct __stat64 st;
|
|
#endif
|
|
|
|
public:
|
|
/*!
|
|
* @brief pointer to actual file content.
|
|
*/
|
|
char* data;
|
|
|
|
/*!
|
|
* @brief pointer to end of file content.
|
|
*/
|
|
char* dataend;
|
|
|
|
/*!
|
|
* @brief Constructor of MappedFile.
|
|
*/
|
|
MappedFile(const char* filename);
|
|
|
|
/*!
|
|
* @brief Destructor of MappedFile.
|
|
*/
|
|
~MappedFile();
|
|
};
|
|
|
|
} // namespace parser
|
|
} // namespace mrmc
|
|
|
|
#endif /* PARSER_H_ */
|